summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/static/css/style.css
blob: 6199affbca9855ecdaf796a5f1d417ab0e29aae9 (plain)
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
 * Quick mash-up of CSS for the TG quick start page.
 */

html, body {
  color: #000;
  background:#fff;
  margin: 0;
  padding: 0;
}

body {
  min-width: 750px;
}

#page {
  background:#ccc;   /* should be same as #sidebar */
  margin:0 auto;
  width:100%;
  clear:both;
}


#header {
  background:#fff;
}

#header #logo {
  float:left;
}

#header #headerinfo {
  text-align:right;
  padding-right:10px;
}

#header #headerinfo #login {
}

#header #headerinfo #topsearch {
  padding-top: 15px;
}

.searchtext {
  background-color:#E5F1F4;
  border:1px solid #8E8E8E;
  color:#444444;
}


#nav {
  background:#cc0000;
  color:#fff;
  min-height:3px;
  max-height:3px;
}

#nav ul {
  margin:0;
  padding:0;
  list-style:none;
}

#nav li {
  display:inline;
}

#nav a:visited {
  color:#fff;
}
#nav a:link {
  color:#fff;
}


#main_content {
  background:#fff;
  float:right;
  width:85%;
  min-height:500px;
  border-left: 1px solid #000;
  padding: 10px;
}

#main_content h1,h2 {
  margin-top: 0px;
  margin-bottom: 5px;
}


#sidebar {
  background:#ccc;  /* should be same as #page */
  float:left;
  width:10%;
  padding: 5px;
  font-size: medium;
}

#sidebar p {
  line-height: 150%;
}

#sidebar h2 {
  margin-top: 0;
}

#sidebar ul {
  margin-left: 1.5em;
  padding-left: 0;
}

#sidebar a:visited,
#sidebar a:link {
  color:#000;
}


#footer {
  background:#fff;
  clear:both;
  border-top: 1px solid #000;
  padding-top: 10px;
  text-align: center;
  font-size: x-small;
}

#footer a:visited,
#footer a:link {
  color:#777;
  text-decoration: none;
}


.formsection {
  color: #888888;
  width: 90%;
  font-weight: bold;
  border-bottom: 1px solid;
  margin: 20px 0px 20px 0px;
}

.formtable {
  width: 90%;
}

.formtable th {
  width: 20%;
  text-align: right;
}

.small {
  font-size: small;
}

.xsmall {
  font-size: x-small;
}

#status_block {
  margin: 0 auto 0.5em auto;
  padding: 15px 10px 15px 55px;
  background: #ecc;
  border: 1px solid #c99;
  width: 450px;
  font-size: 120%;
  font-weight: bolder;
}

.warning_message {
  font-size: 120%;
  color: #ee0000;
  font-weight: bolder;
}

.fielderror {
  color: red;
  font-weight: bold;
}

.requiredfield {
  background: #eebbbb;
}

#resultstable,
#resultstable th,
#resultstable td {
  border-collapse: collapse;
  border-style: solid;
  border-width: 1px;
  margin: 0px;
  padding: 5px;
}

#resultstable th {
  background: #eee;
}

/*
 * TableKit css
 */

.sortcol {
  cursor: pointer;
  padding-right: 20px !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
}
.sortasc {
  background-image: url(/static/images/up.gif) !important;
}
.sortdesc {
  background-image: url(/static/images/down.gif) !important;
}
.nosort {
  cursor: default;
}

th.resize-handle-active {
  cursor: e-resize;
}

div.resize-handle {
  cursor: e-resize;
  width: 2px;
  border-right: 1px dashed #1E90FF;
  position:absolute;
  top:0;
  left:0;
}