|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* główne menu */
ul#main_menu {
width: 100%;
height: 43px;
background: #FFF url("images/menu-bg.gif") top left repeat-x;
font-size: 0.8em;
font-family: "Lucida Grande", Verdana, sans-serif;
/*font-weight: bold;*/
list-style-type: none;
margin: 0;
padding: 0;
}
ul#main_menu li {
display: block;
float: left;
margin: 0 0 0 3px;
}
ul#main_menu li a {
height: 43px;
|
|
23
24
25
|
display: block;
float: left;
line-height: 200%;
|
|
26
27
28
|
padding: 8px 8px 0;
}
|
|
29
30
31
32
33
34
|
ul#main_menu li a, div#user-tools a {
color: #777;
text-decoration: none;
}
ul#main_menu li a:hover, div#user-tools a:hover {
|
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
color: #333;
}
ul#main_menu li a.current {
color: #FFF;
background: #FFF url("images/current-bg.gif") top left repeat-x;
padding: 5px 15px 0;
}
/* powitanie */
div#user-tools {
float: right;
height: 43px;
padding: 8px 8px 0 0;
font-family: "Lucida Grande", Verdana, sans-serif;
line-height: 200%;
font-size: 0.8em;
}
/* layout */
|
|
57
58
59
60
61
|
#content {
margin-left: 10px;
margin-right: 10px;
}
|
|
62
63
64
65
66
|
body {
margin: 0;
}
ul {
|
|
67
|
padding-left: 0;
|
|
68
69
70
|
}
li {
|
|
71
|
display: block;
|
|
72
73
|
}
|
|
74
|
li a {
|
|
75
|
outline-color: rgba(0, 0, 0, 0);
|
|
76
|
}
|
|
77
|
|
|
78
79
80
81
|
#right {
font-size: 12px;
}
|
|
82
83
|
#right .ui-tabs-panel {
overflow: auto;
|
|
84
|
position: relative;
|
|
85
86
87
88
89
90
|
}
.tabs {
white-space: nowrap;
overflow: hidden;
}
|
|
91
|
|
|
92
93
94
95
96
97
98
|
.tabs .ui-tabs-nav li {
display: inline-block;
float: none;
vertical-align: bottom;
margin-right: -2px;
}
|
|
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
.ui-widget {
font-size: 12px;
}
.ui-button-text-only .ui-button-text {
padding: 0.4em;
}
.ui-icon-sort {
background-position: -128px -80px;
}
.ui-icon-filter {
background-position: -144px -80px;
}
.ui-icon-columns {
background-position: -160px -80px;
}
|
|
119
120
121
122
|
.ui-icon-sort-atergo {
background-position: -176px -80px;
}
|
|
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
.helptext {
display: block;
color: #aaa;
font-style: italic;
}
/* debug */
#debug {
position: absolute;
display: none;
border: none;
width: 100%;
z-index: 1000;
}
#show-debug {
display: none;
color: red;
}
/* różne */
|
|
146
|
li span.remove {
|
|
147
|
float: right;
|
|
148
149
150
|
}
.load-dialog-list li {
|
|
151
152
|
padding: 3px;
margin-bottom: 3px;
|
|
153
154
|
}
|
|
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
label.disabled {
color: gray;
}
button {
vertical-align: middle;
}
.errorlist {
color: red;
font-size: small;
}
.datepicker {
width: 7em;
}
|
|
171
172
173
|
label {
vertical-align: top;
|
|
174
175
176
177
|
}
.clearer {
clear: both;
|
|
178
179
180
181
182
183
184
185
186
187
188
|
}
#login-box {
display: inline-block;
margin: 100px;
border: 1px solid darkgray;
padding: 10px;
}
#login-form {
margin-bottom: 20px;
|
|
189
|
}
|