changes for jerryr template
396
phpgwapi/templates/jerryr/css/jerryr.css
Normal file
@ -0,0 +1,396 @@
|
|||||||
|
/*
|
||||||
|
StyleSheet coding standards:
|
||||||
|
|
||||||
|
1. use lowercase if possible
|
||||||
|
|
||||||
|
2. format styles like this:
|
||||||
|
|
||||||
|
body
|
||||||
|
{
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: Verdana, Arial, Helvetica, sans-serif
|
||||||
|
}
|
||||||
|
|
||||||
|
3. existing html elements on top of the document, then all self defined .classes and at last all self defined #id's.
|
||||||
|
|
||||||
|
4. close every property with ; also the last one.
|
||||||
|
*/
|
||||||
|
|
||||||
|
body
|
||||||
|
{
|
||||||
|
background-image:url(../images/body-background.png);
|
||||||
|
font-size: 11px;
|
||||||
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
|
padding:0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img
|
||||||
|
{
|
||||||
|
border-width:0px;
|
||||||
|
border-style:none;
|
||||||
|
/*filter:progid:DXImageTransform.Microsoft.AlphaImageLoader;
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link,a:visited
|
||||||
|
{
|
||||||
|
cursor:pointer;
|
||||||
|
color: #006699;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
a:visited
|
||||||
|
{
|
||||||
|
color: #006699;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
a:hover,a:active
|
||||||
|
{
|
||||||
|
cursor:pointer;
|
||||||
|
color: #ff9933;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
a:active
|
||||||
|
{
|
||||||
|
color: #006699;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
input,button
|
||||||
|
{
|
||||||
|
font-size: 11px;
|
||||||
|
color: #006699;
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
border: 1px #bbbbbb solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit],input[type=button],button
|
||||||
|
{
|
||||||
|
margin:1px;
|
||||||
|
padding:1px;
|
||||||
|
cursor: pointer;
|
||||||
|
cursor: hand;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=image]
|
||||||
|
{
|
||||||
|
cursor: pointer;
|
||||||
|
cursor: hand;
|
||||||
|
border: 0px #bbbbbb none;
|
||||||
|
}
|
||||||
|
select
|
||||||
|
{
|
||||||
|
font-size: 11px;
|
||||||
|
color: #006699;
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
border: 1px #bbbbbb solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
td
|
||||||
|
{
|
||||||
|
font-size: 11px;
|
||||||
|
/* padding-top:1px;
|
||||||
|
padding-bottom:1px;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.divLoginbox
|
||||||
|
{
|
||||||
|
position:relative;
|
||||||
|
width: 300px;
|
||||||
|
border-right: #9c9c9c 1px solid;
|
||||||
|
border-top: #9c9c9c 1px solid;
|
||||||
|
border-left: #9c9c9c 1px solid;
|
||||||
|
border-bottom: #9c9c9c 1px solid
|
||||||
|
}
|
||||||
|
|
||||||
|
.divLoginboxHeader
|
||||||
|
{
|
||||||
|
text-align:center;
|
||||||
|
background-color:#dddddd;
|
||||||
|
padding-top:2px;
|
||||||
|
font-size:10px;
|
||||||
|
color:#666666;
|
||||||
|
}
|
||||||
|
.divSidebox
|
||||||
|
{
|
||||||
|
position:relative;
|
||||||
|
width: 147px;
|
||||||
|
border-right: #9c9c9c 1px solid;
|
||||||
|
border-top: #9c9c9c 1px solid;
|
||||||
|
border-left: #9c9c9c 1px solid;
|
||||||
|
border-bottom: #9c9c9c 1px solid
|
||||||
|
}
|
||||||
|
|
||||||
|
.divSideboxHeader
|
||||||
|
{
|
||||||
|
text-align:center;
|
||||||
|
background-image:url(../images/divSideboxHeader-background.png);
|
||||||
|
height:18px;
|
||||||
|
background-color:#ffffff;
|
||||||
|
padding-top:2px;
|
||||||
|
font-size:10px;
|
||||||
|
font-weight:bold;
|
||||||
|
color:#ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.divSideboxEntry, .divSideboxEntry
|
||||||
|
{
|
||||||
|
text-align:left;
|
||||||
|
height:16px;
|
||||||
|
background-color:#f4f2ed;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.appTitles,.appTitles
|
||||||
|
{
|
||||||
|
font-size: 10px;
|
||||||
|
height:16px;
|
||||||
|
padding-top:2px;
|
||||||
|
padding-bottom:2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.textSidebox
|
||||||
|
{
|
||||||
|
|
||||||
|
font-size: 10px;
|
||||||
|
border-top: #aaaaaa 1px none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textSidebox
|
||||||
|
{
|
||||||
|
|
||||||
|
font-size: 10px;
|
||||||
|
height:16px;
|
||||||
|
padding-top:2px;
|
||||||
|
padding-bottom:1px;
|
||||||
|
border-top: #aaaaaa 1px solid;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.sideboxSpace
|
||||||
|
{
|
||||||
|
height:9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.greyLine
|
||||||
|
{
|
||||||
|
margin:1px;
|
||||||
|
border-top-color:#7e7e7e;
|
||||||
|
border-top-width:1px;
|
||||||
|
border-top-style:solid;
|
||||||
|
height:1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prefSection
|
||||||
|
{
|
||||||
|
font-weight:bold;
|
||||||
|
font-size:16px;
|
||||||
|
line-height:40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#extraIcons
|
||||||
|
{
|
||||||
|
/* position:absolute;
|
||||||
|
z-index:13;
|
||||||
|
right:10px;
|
||||||
|
top:113px;
|
||||||
|
visibility:hidden;*/
|
||||||
|
background-image:url(../images/alpha-white.png);
|
||||||
|
border-width:1px;
|
||||||
|
border-color:#7e7e7e;
|
||||||
|
border-style:solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#divMain
|
||||||
|
{
|
||||||
|
background-color:white;
|
||||||
|
margin-top: 5px;
|
||||||
|
padding:5px;
|
||||||
|
border-color:#7e7e7e;
|
||||||
|
border-width:1px;
|
||||||
|
border-style:solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
#divLogo
|
||||||
|
{
|
||||||
|
position:absolute;
|
||||||
|
left:2px;
|
||||||
|
top:5px;
|
||||||
|
z-index:51;
|
||||||
|
}
|
||||||
|
|
||||||
|
#divAppIconBar
|
||||||
|
{
|
||||||
|
background-color:white;
|
||||||
|
border-top-color:#9c9c9c;
|
||||||
|
border-top-width:1px;
|
||||||
|
border-top-style:solid;
|
||||||
|
|
||||||
|
background-image: url(../images/background-icon-bar.png);
|
||||||
|
background-repeat: repeat-x
|
||||||
|
}
|
||||||
|
|
||||||
|
#divAppTextBar
|
||||||
|
{
|
||||||
|
background-color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#divStatusBar
|
||||||
|
{
|
||||||
|
background-color:white;
|
||||||
|
height:15px;
|
||||||
|
padding-left:175px;
|
||||||
|
margin-top: 5px;
|
||||||
|
/* margin-bottom: 2px;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
/*#divSubContainer
|
||||||
|
{
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
#tdSidebox
|
||||||
|
{
|
||||||
|
width:170px;
|
||||||
|
background-color:white;
|
||||||
|
overflow:visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#tdAppbox
|
||||||
|
{
|
||||||
|
background-color:white;
|
||||||
|
padding-left:5px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
#divSideboxContainer
|
||||||
|
{
|
||||||
|
position:relative;
|
||||||
|
width:150px;
|
||||||
|
top:0px;
|
||||||
|
left:0px;
|
||||||
|
background-color:white;
|
||||||
|
border-width:1px;
|
||||||
|
border-style:solid;
|
||||||
|
z-index:40;
|
||||||
|
}
|
||||||
|
|
||||||
|
#divAppboxHeader
|
||||||
|
{
|
||||||
|
/*width:100%;*/
|
||||||
|
background-image:url(../images/appbox-header-background.png);
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
height:20px;
|
||||||
|
line-height:22px;
|
||||||
|
text-align:center;
|
||||||
|
/* padding-top:7px;*/
|
||||||
|
padding-bottom:0px;
|
||||||
|
font-size:14px;
|
||||||
|
font-weight:bold;
|
||||||
|
color:#666666;
|
||||||
|
border-top-color:#9c9c9c;
|
||||||
|
border-top-width:1px;
|
||||||
|
border-top-style:solid;
|
||||||
|
border-left-color:#9c9c9c;
|
||||||
|
border-left-width:1px;
|
||||||
|
border-left-style:solid;
|
||||||
|
border-right-color:#9c9c9c;
|
||||||
|
border-right-width:1px;
|
||||||
|
border-right-style:solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
#divAppbox
|
||||||
|
{
|
||||||
|
/* width:100%;*/
|
||||||
|
background-color:#faf8f3;
|
||||||
|
padding:5px;
|
||||||
|
border-bottom-color:#9c9c9c;
|
||||||
|
border-bottom-width:1px;
|
||||||
|
border-bottom-style:solid;
|
||||||
|
border-left-color:#9c9c9c;
|
||||||
|
border-left-width:1px;
|
||||||
|
border-left-style:solid;
|
||||||
|
border-right-color:#9c9c9c;
|
||||||
|
border-right-width:1px;
|
||||||
|
border-right-style:solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fmStatusBar
|
||||||
|
{
|
||||||
|
margin-left:4px;
|
||||||
|
margin-bottom:3px;
|
||||||
|
font-size: 10px;
|
||||||
|
/* font-family: Verdana, Arial, Helvetica, sans-serif;*/
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.fmButton
|
||||||
|
{
|
||||||
|
background-image:url(../images/buttonbackground.png);
|
||||||
|
width:28px;
|
||||||
|
height:28px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fmLocation
|
||||||
|
{
|
||||||
|
position:relative;
|
||||||
|
/*background-image:url(../images/buttonbackgroundscaled.png);
|
||||||
|
background-repeat: repeat-x;*/
|
||||||
|
/*margin-left:4px;*/
|
||||||
|
margin-bottom:3px;
|
||||||
|
height:27px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#fmMenu
|
||||||
|
{
|
||||||
|
position:relative;
|
||||||
|
}
|
||||||
|
#fmFileWindow
|
||||||
|
{
|
||||||
|
background-color:#ffffff;
|
||||||
|
margin-left:4px;
|
||||||
|
padding:5px;
|
||||||
|
position:relative;
|
||||||
|
border-right: #cccccc 1px solid;
|
||||||
|
border-top: #9c9c9c 2px solid;
|
||||||
|
border-left: #9c9c9c 2px solid;
|
||||||
|
border-bottom: #cccccc 1px solid
|
||||||
|
}
|
||||||
|
|
||||||
|
#user_info
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#admin_info
|
||||||
|
{
|
||||||
|
position:relative;
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#divGenTime
|
||||||
|
{
|
||||||
|
bottom:14px;
|
||||||
|
font-size: 9px;
|
||||||
|
color: #ff0000;
|
||||||
|
text-align:center;
|
||||||
|
width:99%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#divPoweredBy
|
||||||
|
{
|
||||||
|
bottom:14px;
|
||||||
|
font-size: 9px;
|
||||||
|
color: #000000;
|
||||||
|
text-align:center;
|
||||||
|
width:99%;
|
||||||
|
}
|
||||||
|
|
Before Width: | Height: | Size: 238 B After Width: | Height: | Size: 194 B |
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 230 B |
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 198 B |
BIN
phpgwapi/templates/jerryr/images/divSideboxHeader-background.png
Normal file
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 739 B |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 807 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/base.gif
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
phpgwapi/templates/jerryr/images/foldertree/cd.gif
Normal file
After Width: | Height: | Size: 239 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/empty.gif
Normal file
After Width: | Height: | Size: 62 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/felamimail_sm.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpgwapi/templates/jerryr/images/foldertree/folder.gif
Normal file
After Width: | Height: | Size: 372 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/folderopen.gif
Normal file
After Width: | Height: | Size: 376 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/globe.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpgwapi/templates/jerryr/images/foldertree/imgfolder.gif
Normal file
After Width: | Height: | Size: 622 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/join.gif
Normal file
After Width: | Height: | Size: 69 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/joinbottom.gif
Normal file
After Width: | Height: | Size: 66 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/line.gif
Normal file
After Width: | Height: | Size: 66 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/minus.gif
Normal file
After Width: | Height: | Size: 86 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/minusbottom.gif
Normal file
After Width: | Height: | Size: 85 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/musicfolder.gif
Normal file
After Width: | Height: | Size: 633 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/nolines_minus.gif
Normal file
After Width: | Height: | Size: 861 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/nolines_plus.gif
Normal file
After Width: | Height: | Size: 870 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/page.gif
Normal file
After Width: | Height: | Size: 582 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/plus.gif
Normal file
After Width: | Height: | Size: 89 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/plusbottom.gif
Normal file
After Width: | Height: | Size: 88 B |
BIN
phpgwapi/templates/jerryr/images/foldertree/question.gif
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
phpgwapi/templates/jerryr/images/foldertree/trash.gif
Normal file
After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 10 KiB |
BIN
phpgwapi/templates/jerryr/images/menu_icon.png
Normal file
After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 55 B After Width: | Height: | Size: 56 B |
Before Width: | Height: | Size: 850 B After Width: | Height: | Size: 55 B |
Before Width: | Height: | Size: 71 B After Width: | Height: | Size: 55 B |
Before Width: | Height: | Size: 62 B After Width: | Height: | Size: 55 B |
Before Width: | Height: | Size: 77 B After Width: | Height: | Size: 55 B |
Before Width: | Height: | Size: 78 B After Width: | Height: | Size: 55 B |
Before Width: | Height: | Size: 77 B After Width: | Height: | Size: 55 B |
Before Width: | Height: | Size: 71 B After Width: | Height: | Size: 55 B |
Before Width: | Height: | Size: 61 B After Width: | Height: | Size: 37 B |
BIN
phpgwapi/templates/jerryr/images/textSideBox-background.png
Normal file
After Width: | Height: | Size: 500 B |
BIN
phpgwapi/templates/jerryr/images/textSideBoxIcon-background.png
Normal file
After Width: | Height: | Size: 381 B |