File: screen.css

package info (click to toggle)
horde3 3.1.3-4etch7
  • links: PTS
  • area: main
  • in suites: etch
  • size: 22,876 kB
  • ctags: 18,071
  • sloc: php: 75,151; xml: 2,979; sql: 1,069; makefile: 79; sh: 64
file content (175 lines) | stat: -rw-r--r-- 3,415 bytes parent folder | download | duplicates (2)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/**
 * $Horde: horde/themes/cornflower/screen.css,v 1.8.6.4 2005/10/18 11:34:13 jan Exp $
 */

body {
    background: #fff;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
a {
    color: #339;
}
a.fixed {
    color: #339;
}
a.widget {
    color: #000;
}
input {
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    background: #fff;
    border: 1px solid #666;
}
textarea {
    color: #333;
    background: #fff;
    border: 1px solid #666;
}
select,option {
    color: #000033;
    background: #fcfcfc;
}

/* Sidebar styles. */
#sidebarPanel {
    border-right: 1px solid #006;
    border-bottom: 1px solid #006;
    background: #f3f7f8;
}
#sidebarPanel a {
    border: 1px solid #f3f7f8;
    padding-left: 1px;
    padding-bottom: 2px;
}
#sidebarPanel a:hover {
    background: #ccc;
    border: 1px solid #000;
    text-decoration: none;
}
#expandButton {
    margin-right: 1px;
}

/* Menu styles. */
#menu {
    background: #cccce5;
    border-bottom: 2px solid #006;
    color: #000;
}
#menu a {
    color: #000;
    font-family: Verdana,Helvetica,sans-serif;
    font-size: 11px;
    font-weight: normal;
}
#menu a:hover {
    color: #fff;
    border: none;
    padding: 3px;
}
#menu a.current {
    background: #f3f7f8;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    padding: 2px;
}
#menu a.current:hover {
    color: #000;
    padding: 2px;
}

.header {
    color: #333;
    background: #cccce5;
    border-bottom: 1px solid #339;
}
a.header:hover {
    color: #03c;
    text-decoration: none;
}
a.header {
    border-bottom: none;
    background-image: none;
    background: transparent;
}
.light {
    color: #333;
}
.smallheader {
    background-image: none;
    background: transparent;
    color: #333;
    font-family: Verdana,Helvetica,sans-serif;
    font-size: 11px;
}
.smallheader a {
    color: #339;
}
a.smallheader:hover {
    color: #03c;
}
.control {
    background: #ddd;
}
.item {
    background: #e9e9e9;
}
/* Alternating styles. item0, item1 are deprecated. */
.rowEven, .item0 {
    background: #eee;
}
.rowOdd, .item1 {
    background: #fff;
}
.button {
    color: #000;
    background: #ccc;
    border-bottom: 1px solid #333;
    border-right: 1px solid #000;
    border-left: 1px solid #c4c4b8;
    border-top: 1px solid #c4c4b8;
    -moz-border-radius: 5px;
}
.button:hover {
    background: #cdf;
}
.selected {
    background: #c6d3ff;
}

/* Tab styles. */
.tabset {
    background: #fff url("graphics/tab_bottom.gif") repeat-x bottom;
    font-size: 11px;
}
.tabset li {
    margin: 0;
    background: url("graphics/tab_right.gif") no-repeat right top;
}
.tabset li a, .tabset li a:hover {
    background: url("graphics/tab_left.gif") no-repeat left top;
    margin: 0;
    padding: 3px 15px;
    color: #765;
    border: none;
    border-bottom: 1px solid #765;
}
.tabset li a:hover {
    color: #333;
    background: url("graphics/tab_left.gif") no-repeat left top;
}
.tabset li.activeTab {
    background: url("graphics/tab_right.gif") no-repeat right top;
}
.tabset li.activeTab a {
    color: #333;
    background: url("graphics/tab_left.gif") no-repeat left top;
    border-bottom: 1px solid #fff;
}
.tabset li.activeTab a:hover {
    color: #999;
    background: url("graphics/tab_left.gif") no-repeat left top;
    border-bottom: 1px solid #fff;
}