1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
/**
* $Horde: horde/themes/mozilla/screen.css,v 1.7.6.5 2005/10/18 11:34:20 jan Exp $
*/
body {
background: #c7d0d9;
scrollbar-base-color: #94a2b5;
}
html {
scrollbar-base-color: #94a2b5;
}
a, a.fixed {
color: #339;
}
a.widget {
color: #000;
}
.header {
background: #c7d0d9 url("graphics/header.png") repeat-x;
white-space: nowrap;
}
a.header {
background-image: none;
background-color: transparent;
}
.light {
color: #4E5D72;
}
.smallheader {
color: black;
background-image: none;
background-color: transparent;
}
.smallheader a {
color: black;
}
.control {
background: #aebaca;
}
.item {
background: #eceff4;
}
.button {
color: black;
background: #adb6c6;
border: 1px solid #000;
-moz-border-radius: 5px;
}
.selected {
background: #c6d3ff;
}
/* Menu styles. */
#menu {
background: #c7d0d9 url("graphics/menu.png") repeat-x;
}
#menu h1 {
color: black;
}
#menu a {
color: black;
border: none;
-moz-border-radius: 0;
}
#menu a:hover {
border: 1px solid #aebaca;
padding: 2px;
}
#menu a.current {
background: url("graphics/menu-active.png") repeat-x;
border: 1px solid #aebaca;
padding: 2px;
}
#menu a.current:hover {
padding: 2px;
}
/* Sidebar styles. */
#sidebarPanel {
background: #c7d0d9;
}
/* Tab styles. */
.tabset {
background: none;
}
.tabset li a {
border: 1px solid #ababab;
border-bottom: 1px solid #e9e9e9;
}
.tabset li a:hover {
color: #000;
}
.tabset li.activeTab a, .tabset li.activeTab a:hover {
color: #fff;
background: #aebaca;
border-bottom: 1px solid #aebaca;
}
|