blob: 6f8738a5655b857e6b90220b877ab3a2042a6aca (
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
|
/*
blue : #192940
green: #90c326
gray : #a7a9ac
*/
#header {
height: 60px;
}
#content {
padding-left: 25px;
position: fixed;
top: 61px;
left: 0px;
right: 0px;
bottom: 0;
overflow: auto;
height: auto;
max-width: none;
min-width: 0;
margin: 0 0 0 315px;
}
#leftnavigation {
top: 61px;
width: 315px;
}
#leftnavigation em {
font-style: normal;
}
.ui-corner-all {
border-radius: 0px 0px 0px 0px;
}
.ui-corner-top {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.ui-tabs {
padding: 0;
}
.ui-tabs .ui-tabs-nav {
padding: 0px 0px 0px 0px;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
color: #656567;
outline: none;
}
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
color: #f09100;
outline: none;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
background: #EEEEEE;
border: 1px solid #CCCCCC;
font-weight: bold;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
background: #FFFFFF;
border: 1px solid #CCCCCC;
font-weight: bold;
}
.ui-widget-content {
border: none;
}
.ui-widget-header {
background: #EEEEEE;
border: none;
}
.searchButton {
background: none repeat scroll 0 0 #EEEEEE;
color: #656567;
border: 1px solid #656567;
}
.searchText {
border: 1pt solid #656567;
}
|