mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-25 12:21:26 +02:00
enabled top menu support
This commit is contained in:
parent
0e9567af69
commit
db9053d4ca
@ -196,6 +196,7 @@ input[type=image]
|
|||||||
.divLoginboxHeader,.divSideboxHeader,a.appTitles,.appTitles,a.textSidebox,.textSidebox,#fmStatusBar
|
.divLoginboxHeader,.divSideboxHeader,a.appTitles,.appTitles,a.textSidebox,.textSidebox,#fmStatusBar
|
||||||
{
|
{
|
||||||
font-size:90%;
|
font-size:90%;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.textSideboxStar
|
.textSideboxStar
|
||||||
@ -463,8 +464,33 @@ body {
|
|||||||
{
|
{
|
||||||
position:absolute;
|
position:absolute;
|
||||||
left:17px;
|
left:17px;
|
||||||
top:5px;
|
top:28px;
|
||||||
z-index:51;
|
z-index:999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topmenu
|
||||||
|
{
|
||||||
|
background-color: #0081c1;
|
||||||
|
background-image: url(../images/hilitetest-bm.png);
|
||||||
|
color:#006699;
|
||||||
|
border-top: 1px solid #9f9f9f;
|
||||||
|
border-bottom: 1px solid #9f9f9f;
|
||||||
|
height:24px;
|
||||||
|
line-height:20px;
|
||||||
|
padding-top: 4px;
|
||||||
|
}
|
||||||
|
#topmenu a
|
||||||
|
{
|
||||||
|
color:#006699;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topmenu_items
|
||||||
|
{
|
||||||
|
float:left;
|
||||||
|
}
|
||||||
|
#topmenu_info
|
||||||
|
{
|
||||||
|
float:right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#divUpperTabs
|
#divUpperTabs
|
||||||
@ -498,10 +524,9 @@ body {
|
|||||||
.divAppIconBlock /* this allows the icons and text to be positioned via absolute and requires the iconspacer div */
|
.divAppIconBlock /* this allows the icons and text to be positioned via absolute and requires the iconspacer div */
|
||||||
{
|
{
|
||||||
border-top: 0px solid #efefef;
|
border-top: 0px solid #efefef;
|
||||||
/*background-image: url(../images/hilitetest-bm.png);*/
|
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
position:absolute;
|
position:relative;
|
||||||
top:0px;
|
top:0px;
|
||||||
left:0px;
|
left:0px;
|
||||||
z-index:40;
|
z-index:40;
|
||||||
@ -509,7 +534,8 @@ body {
|
|||||||
|
|
||||||
#divAppIconBar
|
#divAppIconBar
|
||||||
{
|
{
|
||||||
height: 58px;
|
height: 60px;
|
||||||
|
background-image: url(../images/iconbar-bm.png);
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
@ -517,47 +543,45 @@ body {
|
|||||||
|
|
||||||
.iconBackFirstCell
|
.iconBackFirstCell
|
||||||
{
|
{
|
||||||
/*background-image: url(../images/firstcell-bm.png);*/
|
background-image: url(../images/firstcell-bm.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
height:58px;
|
height:60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.appIconTbl
|
.appIconTbl
|
||||||
{
|
{
|
||||||
padding:0px;
|
padding:0px;
|
||||||
background-image: url(../images/bmback2.jpg);
|
background-image: url(../images/rtbump-bm.png);
|
||||||
/*background-repeat: repeat-x;*/
|
background-repeat: no-repeat;
|
||||||
|
background-position: top right;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
border-bottom: 1px solid #9f9f9f;
|
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iconBack
|
.iconBack
|
||||||
{
|
{
|
||||||
/*background-image: url(../images/iconBack-bm.png);*/
|
/*background-image: url(../images/iconbar-bm.png);*/
|
||||||
border-right: 0px solid #bfbfbf;
|
border-right: 0px solid #bfbfbf;
|
||||||
border-left: 0px solid white;
|
border-top: 1px solid #9f9f9f;
|
||||||
height: 44px;
|
height: 38px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iconBackHover
|
.iconBackHover
|
||||||
{
|
{
|
||||||
background-image: url(../images/pointer.png);
|
border-top: 1px solid #9f9f9f;
|
||||||
background-position: center center;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
border-right: 0px solid #bfbfbf;
|
|
||||||
border-left: 0px solid white;
|
border-left: 0px solid white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.appIconSpacer
|
.appIconSpacer
|
||||||
{
|
{
|
||||||
height:44px;
|
height:0px;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#divAppTextBar
|
#divAppTextBar
|
||||||
{
|
{
|
||||||
/*background-color:white;*/
|
/*background-color:white;*/
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -569,34 +593,12 @@ body {
|
|||||||
position: relative;
|
position: relative;
|
||||||
top:0px
|
top:0px
|
||||||
left:0px;
|
left:0px;
|
||||||
height:32px;
|
height:22px;
|
||||||
vertical-align:bottom;
|
vertical-align:bottom;
|
||||||
border: 0px solid black;
|
border: 0px solid black;
|
||||||
padding-top:12px;
|
padding-top:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.userinfolt
|
|
||||||
{
|
|
||||||
background-image: url(../images/userbacklt-bm.png);
|
|
||||||
width: 22px;
|
|
||||||
height: 22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.userinfomid
|
|
||||||
{
|
|
||||||
background-image: url(../images/userback-bm.png);
|
|
||||||
background-repeat: repeat-x;
|
|
||||||
color: #666666;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.userinfort
|
|
||||||
{
|
|
||||||
background-image: url(../images/userbackrt-bm.png);
|
|
||||||
width: 22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Appbox ***BEGIN***
|
Appbox ***BEGIN***
|
||||||
*/
|
*/
|
||||||
|
@ -187,6 +187,7 @@ input[type=image]
|
|||||||
.divLoginboxHeader,.divSideboxHeader,a.appTitles,.appTitles,a.textSidebox,.textSidebox,#fmStatusBar
|
.divLoginboxHeader,.divSideboxHeader,a.appTitles,.appTitles,a.textSidebox,.textSidebox,#fmStatusBar
|
||||||
{
|
{
|
||||||
font-size:90%;
|
font-size:90%;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.textSideboxStar
|
.textSideboxStar
|
||||||
@ -397,11 +398,40 @@ body {
|
|||||||
#divLogo
|
#divLogo
|
||||||
{
|
{
|
||||||
position:absolute;
|
position:absolute;
|
||||||
left:37px;
|
left:27px;
|
||||||
top:38px;
|
top:28px;
|
||||||
z-index:51;
|
z-index:999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#topmenu
|
||||||
|
{
|
||||||
|
background-color: #0081c1;
|
||||||
|
background-image: url(../images/hilitetest.png);
|
||||||
|
color:#006699;
|
||||||
|
border-top: solid 1px #17202b;
|
||||||
|
border-right: 1px solid #17202b;
|
||||||
|
border-left: 1px solid #17202b;
|
||||||
|
border-bottom: solid #5793ff 0px;
|
||||||
|
height:24px;
|
||||||
|
padding-top:4px ;
|
||||||
|
|
||||||
|
}
|
||||||
|
#topmenu a
|
||||||
|
{
|
||||||
|
color:#006699;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topmenu_items
|
||||||
|
{
|
||||||
|
float:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topmenu_info
|
||||||
|
{
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#divUpperTabs
|
#divUpperTabs
|
||||||
{
|
{
|
||||||
text-align:right;
|
text-align:right;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user