source: main/waeup.kofa/branches/uli-diazo-themed/layout/static/css/base.css @ 11007

Last change on this file since 11007 was 11005, checked in by Henrik Bettermann, 11 years ago

First adjustments in datacenter.

File size: 4.0 KB
Line 
1body {
2    background-color: #f5f5f5;
3    padding-top: 52px;
4}
5
6.navbar-fixed-top, .navbar {
7    min-height:40px;
8}
9
10.navbar-nav > li > a, .navbar-brand {
11    padding-top:10px;
12    padding-bottom:10px;
13}
14
15.navbar-toggle {
16    padding: 4px 10px;
17}
18
19.navbar-nav.navbar-right:last-child {
20  margin-right: -5px;
21}
22
23.breadcrumb {
24    background-color: #fff;
25    margin-bottom: 0px;
26    margin-top: 0px;
27    padding: 2px 15px;
28}
29
30.wfstatus {
31    float: right;
32}
33
34.kofa-sidebar,
35.kofa-content-narrow , .kofa-breadcrumbs-box {
36    padding: 0px 5px 0px 5px;
37}
38
39.kofa-content-wide {
40    padding: 5px 15px;
41}
42
43.well {
44    padding: 0px 5px 20px 5px;
45    margin-bottom: 10px;
46    background-image: None;
47    background-color: #fff;
48}
49
50.kofa-breadcrumbs-box .well {
51    padding: 5px 5px 5px 5px;
52}
53
54.kofa-content-wide .well, .kofa-content-narrow .well {
55    padding: 10px 20px 10px 20px;
56}
57
58.kofa-content-desc {
59    color: #BFBFBF;
60    font-size: 18px;
61}
62
63.alert {
64  margin-bottom: 10px;
65  margin-top: 10px;
66}
67
68/* Sidebar */
69
70.kofa-sidebar-title {
71    text-transform: none;
72    font-size: 14px;
73    color: #555;
74    font-weight: bold;
75    padding: 15px 0px 10px 8px;
76}
77
78.sidebar-nav .nav  > li > a {
79    padding: 3px 15px;
80}
81
82/* Buttons */
83
84.btn {
85    margin: 4px;
86    font-size: 13px;
87    display: inline;
88}
89
90.table-condensed .btn {
91    margin: 0px;
92    font-size: 12px;
93}
94
95
96/* Content actionbar */
97
98div.actionbar {
99    margin-top: -6px;
100    margin-left: -10px;
101    margin-bottom: 0px;
102}
103
104.actionbar .btn-default {
105    margin-bottom: 4px;
106    padding: 4px 8px;
107    margin: 0px 0px 4px 0px;
108    display: inline-block;
109}
110
111/* Kofa forms */
112
113.form-table {
114    width: 100%;
115}
116
117.form-table td {
118    padding: 5px 0px 5px 4px;
119    border-top: none;
120}
121
122select, .textType, textarea, .dataTables_filter input {
123    background-color: #FFFFFF;
124    border: 1px solid #CCCCCC;
125    border-radius: 4px;
126    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
127    color: #555555;
128    padding: 6px 12px;
129    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
130    width: 100%;
131    margin: 0px 4px 0px 0px;
132}
133
134textarea {
135    font-family: Courier,"Courier New",monospace;
136}
137
138.fieldname {
139    width: 25%;
140}
141
142.form-table td {
143    vertical-align: bottom;
144}
145
146.form-table td.fieldname {
147    vertical-align: top;
148}
149
150select {
151    width: 50%;
152}
153
154.ordered-selection-field select , .inline-selection-field select {
155    width: 100%;
156}
157
158.form-inline select {
159    width: 100%;
160}
161
162.phone-input {
163    width: 30%
164}
165
166.hint {
167    padding: 0px 0px 5px 0px;
168    color: #bfbfbf;
169}
170
171.error {
172    color: red;
173}
174
175 /* dataTables stuff */
176
177.dataTables_wrapper {
178    min-height: 50px;
179    margin-bottom: 50px;
180}
181
182.dataTables_length {
183    display: none;
184}
185
186.dataTables_filter input {
187    width: 60%;
188}
189
190.sorting { background: url('../img/sort_both.png') no-repeat center right; }
191.sorting_asc { background: url('../img/sort_asc.png') no-repeat center right; }
192.sorting_desc { background: url('../img/sort_desc.png') no-repeat center right; }
193
194.sorting_asc_disabled { background: url('../img/sort_asc_disabled.png') no-repeat center right; }
195.sorting_desc_disabled { background: url('../img/sort_desc_disabled.png') no-repeat center right; }
196
197.paginate_enabled_previous { background: url('../img/back_enabled.png') no-repeat top left; }
198.paginate_enabled_previous:hover { background: url('../img/back_enabled_hover.png') no-repeat top left; }
199.paginate_disabled_previous { background: url('../img/back_disabled.png') no-repeat top left; }
200
201.paginate_enabled_next { background: url('../img/forward_enabled.png') no-repeat top right; }
202.paginate_enabled_next:hover { background: url('../img/forward_enabled_hover.png') no-repeat top right; }
203.paginate_disabled_next { background: url('../img/forward_disabled.png') no-repeat top right; }
204
205/* Smartphone styles */
206
207
208@media (max-width: 767px) {
209
210  body {
211      padding-top: 40px;
212  }
213
214  .kofa-sidebar,
215  .kofa-content-narrow , .kofa-breadcrumbs-box {
216      padding: 0px 0px 0px 0px;
217  }
218
219  .kofa-content-wide {
220      padding: 0px 0px 0px 0px;
221  }
222
223}
Note: See TracBrowser for help on using the repository browser.