Blame view

media/css/general.css 2.71 KB
janek37 authored
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;
janek37 authored
23
24
25
    display: block;
    float: left;
    line-height: 200%;
janek37 authored
26
27
28
    padding: 8px 8px 0;
}
janek37 authored
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 {
janek37 authored
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 */
janek37 authored
57
58
59
60
61
#content {
    margin-left: 10px;
    margin-right: 10px;
}
janek37 authored
62
63
64
65
66
body {
    margin: 0;
}

ul {
janek37 authored
67
    padding-left: 0;
janek37 authored
68
69
70
}

li {
janek37 authored
71
    display: block;
janek37 authored
72
73
}
janek37 authored
74
li a {
janek37 authored
75
    outline-color: rgba(0, 0, 0, 0);
janek37 authored
76
}
janek37 authored
77
janek37 authored
78
79
80
81
#right {
    font-size: 12px;
}
janek37 authored
82
83
#right .ui-tabs-panel {
    overflow: auto;
janek37 authored
84
    position: relative;
janek37 authored
85
86
87
88
89
90
}

.tabs {
    white-space: nowrap;
    overflow: hidden;
}
janek37 authored
91
janek37 authored
92
93
94
95
96
97
98
.tabs .ui-tabs-nav li {
    display: inline-block;
    float: none;
    vertical-align: bottom;
    margin-right: -2px;
}
janek37 authored
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;
}
janek37 authored
119
120
121
122
.ui-icon-sort-atergo {
    background-position: -176px -80px;
}
janek37 authored
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 */
janek37 authored
146
li span.remove {
janek37 authored
147
    float: right;
janek37 authored
148
149
150
}

.load-dialog-list li {
janek37 authored
151
152
    padding: 3px;
    margin-bottom: 3px;
janek37 authored
153
154
}
janek37 authored
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;
}
janek37 authored
171
172
173

label {
    vertical-align: top;
janek37 authored
174
175
176
177
}

.clearer {
    clear: both;
janek37 authored
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;
janek37 authored
189
}