bootstrap_builder 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +69 -40
- data/VERSION +1 -1
- data/app/assets/javascripts/bootstrap.js +55 -51
- data/app/assets/stylesheets/bootstrap-responsive.css +337 -218
- data/app/assets/stylesheets/bootstrap.css +1022 -397
- data/bootstrap_builder.gemspec +2 -2
- metadata +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v2.0.
|
2
|
+
* Bootstrap v2.0.2
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -19,7 +19,9 @@ nav,
|
|
19
19
|
section {
|
20
20
|
display: block;
|
21
21
|
}
|
22
|
-
audio,
|
22
|
+
audio,
|
23
|
+
canvas,
|
24
|
+
video {
|
23
25
|
display: inline-block;
|
24
26
|
*display: inline;
|
25
27
|
*zoom: 1;
|
@@ -33,14 +35,16 @@ html {
|
|
33
35
|
-ms-text-size-adjust: 100%;
|
34
36
|
}
|
35
37
|
a:focus {
|
36
|
-
outline: thin dotted;
|
38
|
+
outline: thin dotted #333;
|
37
39
|
outline: 5px auto -webkit-focus-ring-color;
|
38
40
|
outline-offset: -2px;
|
39
41
|
}
|
40
|
-
a:hover,
|
42
|
+
a:hover,
|
43
|
+
a:active {
|
41
44
|
outline: 0;
|
42
45
|
}
|
43
|
-
sub,
|
46
|
+
sub,
|
47
|
+
sup {
|
44
48
|
position: relative;
|
45
49
|
font-size: 75%;
|
46
50
|
line-height: 0;
|
@@ -53,10 +57,10 @@ sub {
|
|
53
57
|
bottom: -0.25em;
|
54
58
|
}
|
55
59
|
img {
|
56
|
-
max-width: 100%;
|
57
60
|
height: auto;
|
58
61
|
border: 0;
|
59
62
|
-ms-interpolation-mode: bicubic;
|
63
|
+
vertical-align: middle;
|
60
64
|
}
|
61
65
|
button,
|
62
66
|
input,
|
@@ -66,11 +70,13 @@ textarea {
|
|
66
70
|
font-size: 100%;
|
67
71
|
vertical-align: middle;
|
68
72
|
}
|
69
|
-
button,
|
73
|
+
button,
|
74
|
+
input {
|
70
75
|
*overflow: visible;
|
71
76
|
line-height: normal;
|
72
77
|
}
|
73
|
-
button::-moz-focus-inner,
|
78
|
+
button::-moz-focus-inner,
|
79
|
+
input::-moz-focus-inner {
|
74
80
|
padding: 0;
|
75
81
|
border: 0;
|
76
82
|
}
|
@@ -87,13 +93,43 @@ input[type="search"] {
|
|
87
93
|
-moz-box-sizing: content-box;
|
88
94
|
box-sizing: content-box;
|
89
95
|
}
|
90
|
-
input[type="search"]::-webkit-search-decoration,
|
96
|
+
input[type="search"]::-webkit-search-decoration,
|
97
|
+
input[type="search"]::-webkit-search-cancel-button {
|
91
98
|
-webkit-appearance: none;
|
92
99
|
}
|
93
100
|
textarea {
|
94
101
|
overflow: auto;
|
95
102
|
vertical-align: top;
|
96
103
|
}
|
104
|
+
.clearfix {
|
105
|
+
*zoom: 1;
|
106
|
+
}
|
107
|
+
.clearfix:before,
|
108
|
+
.clearfix:after {
|
109
|
+
display: table;
|
110
|
+
content: "";
|
111
|
+
}
|
112
|
+
.clearfix:after {
|
113
|
+
clear: both;
|
114
|
+
}
|
115
|
+
.hide-text {
|
116
|
+
overflow: hidden;
|
117
|
+
text-indent: 100%;
|
118
|
+
white-space: nowrap;
|
119
|
+
}
|
120
|
+
.input-block-level {
|
121
|
+
display: block;
|
122
|
+
width: 100%;
|
123
|
+
min-height: 28px;
|
124
|
+
/* Make inputs at least the height of their button counterpart */
|
125
|
+
|
126
|
+
/* Makes inputs behave like true block-level elements */
|
127
|
+
|
128
|
+
-webkit-box-sizing: border-box;
|
129
|
+
-moz-box-sizing: border-box;
|
130
|
+
-ms-box-sizing: border-box;
|
131
|
+
box-sizing: border-box;
|
132
|
+
}
|
97
133
|
body {
|
98
134
|
margin: 0;
|
99
135
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
@@ -114,7 +150,8 @@ a:hover {
|
|
114
150
|
margin-left: -20px;
|
115
151
|
*zoom: 1;
|
116
152
|
}
|
117
|
-
.row:before,
|
153
|
+
.row:before,
|
154
|
+
.row:after {
|
118
155
|
display: table;
|
119
156
|
content: "";
|
120
157
|
}
|
@@ -125,80 +162,89 @@ a:hover {
|
|
125
162
|
float: left;
|
126
163
|
margin-left: 20px;
|
127
164
|
}
|
128
|
-
.
|
129
|
-
|
165
|
+
.container,
|
166
|
+
.navbar-fixed-top .container,
|
167
|
+
.navbar-fixed-bottom .container {
|
168
|
+
width: 940px;
|
130
169
|
}
|
131
|
-
.
|
132
|
-
width:
|
170
|
+
.span12 {
|
171
|
+
width: 940px;
|
133
172
|
}
|
134
|
-
.
|
135
|
-
width:
|
173
|
+
.span11 {
|
174
|
+
width: 860px;
|
136
175
|
}
|
137
|
-
.
|
138
|
-
width:
|
176
|
+
.span10 {
|
177
|
+
width: 780px;
|
139
178
|
}
|
140
|
-
.
|
141
|
-
width:
|
179
|
+
.span9 {
|
180
|
+
width: 700px;
|
142
181
|
}
|
143
|
-
.
|
144
|
-
width:
|
182
|
+
.span8 {
|
183
|
+
width: 620px;
|
145
184
|
}
|
146
185
|
.span7 {
|
147
186
|
width: 540px;
|
148
187
|
}
|
149
|
-
.
|
150
|
-
width:
|
188
|
+
.span6 {
|
189
|
+
width: 460px;
|
151
190
|
}
|
152
|
-
.
|
153
|
-
width:
|
191
|
+
.span5 {
|
192
|
+
width: 380px;
|
154
193
|
}
|
155
|
-
.
|
156
|
-
width:
|
194
|
+
.span4 {
|
195
|
+
width: 300px;
|
157
196
|
}
|
158
|
-
.
|
159
|
-
width:
|
197
|
+
.span3 {
|
198
|
+
width: 220px;
|
160
199
|
}
|
161
|
-
.
|
162
|
-
width:
|
200
|
+
.span2 {
|
201
|
+
width: 140px;
|
163
202
|
}
|
164
|
-
.
|
165
|
-
|
203
|
+
.span1 {
|
204
|
+
width: 60px;
|
166
205
|
}
|
167
|
-
.
|
168
|
-
margin-left:
|
206
|
+
.offset12 {
|
207
|
+
margin-left: 980px;
|
169
208
|
}
|
170
|
-
.
|
171
|
-
margin-left:
|
209
|
+
.offset11 {
|
210
|
+
margin-left: 900px;
|
172
211
|
}
|
173
|
-
.
|
174
|
-
margin-left:
|
212
|
+
.offset10 {
|
213
|
+
margin-left: 820px;
|
175
214
|
}
|
176
|
-
.
|
177
|
-
margin-left:
|
215
|
+
.offset9 {
|
216
|
+
margin-left: 740px;
|
178
217
|
}
|
179
|
-
.
|
180
|
-
margin-left:
|
218
|
+
.offset8 {
|
219
|
+
margin-left: 660px;
|
181
220
|
}
|
182
221
|
.offset7 {
|
183
222
|
margin-left: 580px;
|
184
223
|
}
|
185
|
-
.
|
186
|
-
margin-left:
|
224
|
+
.offset6 {
|
225
|
+
margin-left: 500px;
|
187
226
|
}
|
188
|
-
.
|
189
|
-
margin-left:
|
227
|
+
.offset5 {
|
228
|
+
margin-left: 420px;
|
190
229
|
}
|
191
|
-
.
|
192
|
-
margin-left:
|
230
|
+
.offset4 {
|
231
|
+
margin-left: 340px;
|
193
232
|
}
|
194
|
-
.
|
195
|
-
margin-left:
|
233
|
+
.offset3 {
|
234
|
+
margin-left: 260px;
|
235
|
+
}
|
236
|
+
.offset2 {
|
237
|
+
margin-left: 180px;
|
238
|
+
}
|
239
|
+
.offset1 {
|
240
|
+
margin-left: 100px;
|
196
241
|
}
|
197
242
|
.row-fluid {
|
198
243
|
width: 100%;
|
199
244
|
*zoom: 1;
|
200
245
|
}
|
201
|
-
.row-fluid:before,
|
246
|
+
.row-fluid:before,
|
247
|
+
.row-fluid:after {
|
202
248
|
display: table;
|
203
249
|
content: "";
|
204
250
|
}
|
@@ -212,49 +258,49 @@ a:hover {
|
|
212
258
|
.row-fluid > [class*="span"]:first-child {
|
213
259
|
margin-left: 0;
|
214
260
|
}
|
215
|
-
.row-fluid .
|
216
|
-
width:
|
217
|
-
}
|
218
|
-
.row-fluid .span2 {
|
219
|
-
width: 14.89361702%;
|
261
|
+
.row-fluid > .span12 {
|
262
|
+
width: 99.99999998999999%;
|
220
263
|
}
|
221
|
-
.row-fluid .
|
222
|
-
width:
|
264
|
+
.row-fluid > .span11 {
|
265
|
+
width: 91.489361693%;
|
223
266
|
}
|
224
|
-
.row-fluid .
|
225
|
-
width:
|
267
|
+
.row-fluid > .span10 {
|
268
|
+
width: 82.97872339599999%;
|
226
269
|
}
|
227
|
-
.row-fluid .
|
228
|
-
width:
|
270
|
+
.row-fluid > .span9 {
|
271
|
+
width: 74.468085099%;
|
229
272
|
}
|
230
|
-
.row-fluid .
|
231
|
-
width:
|
273
|
+
.row-fluid > .span8 {
|
274
|
+
width: 65.95744680199999%;
|
232
275
|
}
|
233
|
-
.row-fluid .span7 {
|
276
|
+
.row-fluid > .span7 {
|
234
277
|
width: 57.446808505%;
|
235
278
|
}
|
236
|
-
.row-fluid .
|
237
|
-
width:
|
279
|
+
.row-fluid > .span6 {
|
280
|
+
width: 48.93617020799999%;
|
238
281
|
}
|
239
|
-
.row-fluid .
|
240
|
-
width:
|
282
|
+
.row-fluid > .span5 {
|
283
|
+
width: 40.425531911%;
|
241
284
|
}
|
242
|
-
.row-fluid .
|
243
|
-
width:
|
285
|
+
.row-fluid > .span4 {
|
286
|
+
width: 31.914893614%;
|
244
287
|
}
|
245
|
-
.row-fluid .
|
246
|
-
width:
|
288
|
+
.row-fluid > .span3 {
|
289
|
+
width: 23.404255317%;
|
247
290
|
}
|
248
|
-
.row-fluid .
|
249
|
-
width:
|
291
|
+
.row-fluid > .span2 {
|
292
|
+
width: 14.89361702%;
|
293
|
+
}
|
294
|
+
.row-fluid > .span1 {
|
295
|
+
width: 6.382978723%;
|
250
296
|
}
|
251
297
|
.container {
|
252
|
-
width: 940px;
|
253
298
|
margin-left: auto;
|
254
299
|
margin-right: auto;
|
255
300
|
*zoom: 1;
|
256
301
|
}
|
257
|
-
.container:before,
|
302
|
+
.container:before,
|
303
|
+
.container:after {
|
258
304
|
display: table;
|
259
305
|
content: "";
|
260
306
|
}
|
@@ -266,7 +312,8 @@ a:hover {
|
|
266
312
|
padding-right: 20px;
|
267
313
|
*zoom: 1;
|
268
314
|
}
|
269
|
-
.container-fluid:before,
|
315
|
+
.container-fluid:before,
|
316
|
+
.container-fluid:after {
|
270
317
|
display: table;
|
271
318
|
content: "";
|
272
319
|
}
|
@@ -296,8 +343,9 @@ h4,
|
|
296
343
|
h5,
|
297
344
|
h6 {
|
298
345
|
margin: 0;
|
346
|
+
font-family: inherit;
|
299
347
|
font-weight: bold;
|
300
|
-
color:
|
348
|
+
color: inherit;
|
301
349
|
text-rendering: optimizelegibility;
|
302
350
|
}
|
303
351
|
h1 small,
|
@@ -330,7 +378,9 @@ h3 {
|
|
330
378
|
h3 small {
|
331
379
|
font-size: 14px;
|
332
380
|
}
|
333
|
-
h4,
|
381
|
+
h4,
|
382
|
+
h5,
|
383
|
+
h6 {
|
334
384
|
line-height: 18px;
|
335
385
|
}
|
336
386
|
h4 {
|
@@ -355,7 +405,8 @@ h6 {
|
|
355
405
|
.page-header h1 {
|
356
406
|
line-height: 1;
|
357
407
|
}
|
358
|
-
ul,
|
408
|
+
ul,
|
409
|
+
ol {
|
359
410
|
padding: 0;
|
360
411
|
margin: 0 0 9px 25px;
|
361
412
|
}
|
@@ -374,26 +425,38 @@ ol {
|
|
374
425
|
li {
|
375
426
|
line-height: 18px;
|
376
427
|
}
|
377
|
-
ul.unstyled
|
428
|
+
ul.unstyled,
|
429
|
+
ol.unstyled {
|
378
430
|
margin-left: 0;
|
379
431
|
list-style: none;
|
380
432
|
}
|
381
433
|
dl {
|
382
434
|
margin-bottom: 18px;
|
383
435
|
}
|
384
|
-
dt,
|
436
|
+
dt,
|
437
|
+
dd {
|
385
438
|
line-height: 18px;
|
386
439
|
}
|
387
440
|
dt {
|
388
441
|
font-weight: bold;
|
442
|
+
line-height: 17px;
|
389
443
|
}
|
390
444
|
dd {
|
391
445
|
margin-left: 9px;
|
392
446
|
}
|
447
|
+
.dl-horizontal dt {
|
448
|
+
float: left;
|
449
|
+
clear: left;
|
450
|
+
width: 120px;
|
451
|
+
text-align: right;
|
452
|
+
}
|
453
|
+
.dl-horizontal dd {
|
454
|
+
margin-left: 130px;
|
455
|
+
}
|
393
456
|
hr {
|
394
457
|
margin: 18px 0;
|
395
458
|
border: 0;
|
396
|
-
border-top: 1px solid #
|
459
|
+
border-top: 1px solid #eeeeee;
|
397
460
|
border-bottom: 1px solid #ffffff;
|
398
461
|
}
|
399
462
|
strong {
|
@@ -405,12 +468,14 @@ em {
|
|
405
468
|
.muted {
|
406
469
|
color: #999999;
|
407
470
|
}
|
408
|
-
abbr {
|
409
|
-
font-size: 90%;
|
410
|
-
text-transform: uppercase;
|
471
|
+
abbr[title] {
|
411
472
|
border-bottom: 1px dotted #ddd;
|
412
473
|
cursor: help;
|
413
474
|
}
|
475
|
+
abbr.initialism {
|
476
|
+
font-size: 90%;
|
477
|
+
text-transform: uppercase;
|
478
|
+
}
|
414
479
|
blockquote {
|
415
480
|
padding: 0 0 0 15px;
|
416
481
|
margin: 0 0 18px;
|
@@ -437,7 +502,8 @@ blockquote.pull-right {
|
|
437
502
|
border-left: 0;
|
438
503
|
border-right: 5px solid #eeeeee;
|
439
504
|
}
|
440
|
-
blockquote.pull-right p,
|
505
|
+
blockquote.pull-right p,
|
506
|
+
blockquote.pull-right small {
|
441
507
|
text-align: right;
|
442
508
|
}
|
443
509
|
q:before,
|
@@ -458,7 +524,8 @@ small {
|
|
458
524
|
cite {
|
459
525
|
font-style: normal;
|
460
526
|
}
|
461
|
-
code,
|
527
|
+
code,
|
528
|
+
pre {
|
462
529
|
padding: 0 3px 2px;
|
463
530
|
font-family: Menlo, Monaco, "Courier New", monospace;
|
464
531
|
font-size: 12px;
|
@@ -468,7 +535,7 @@ code, pre {
|
|
468
535
|
border-radius: 3px;
|
469
536
|
}
|
470
537
|
code {
|
471
|
-
padding:
|
538
|
+
padding: 2px 4px;
|
472
539
|
color: #d14;
|
473
540
|
background-color: #f7f7f9;
|
474
541
|
border: 1px solid #e1e1e8;
|
@@ -477,7 +544,7 @@ pre {
|
|
477
544
|
display: block;
|
478
545
|
padding: 8.5px;
|
479
546
|
margin: 0 0 9px;
|
480
|
-
font-size:
|
547
|
+
font-size: 12.025px;
|
481
548
|
line-height: 18px;
|
482
549
|
background-color: #f5f5f5;
|
483
550
|
border: 1px solid #ccc;
|
@@ -488,13 +555,20 @@ pre {
|
|
488
555
|
white-space: pre;
|
489
556
|
white-space: pre-wrap;
|
490
557
|
word-break: break-all;
|
558
|
+
word-wrap: break-word;
|
491
559
|
}
|
492
560
|
pre.prettyprint {
|
493
561
|
margin-bottom: 18px;
|
494
562
|
}
|
495
563
|
pre code {
|
496
564
|
padding: 0;
|
565
|
+
color: inherit;
|
497
566
|
background-color: transparent;
|
567
|
+
border: 0;
|
568
|
+
}
|
569
|
+
.pre-scrollable {
|
570
|
+
max-height: 340px;
|
571
|
+
overflow-y: scroll;
|
498
572
|
}
|
499
573
|
form {
|
500
574
|
margin: 0 0 18px;
|
@@ -515,16 +589,25 @@ legend {
|
|
515
589
|
border: 0;
|
516
590
|
border-bottom: 1px solid #eee;
|
517
591
|
}
|
592
|
+
legend small {
|
593
|
+
font-size: 13.5px;
|
594
|
+
color: #999999;
|
595
|
+
}
|
518
596
|
label,
|
519
597
|
input,
|
520
598
|
button,
|
521
599
|
select,
|
522
600
|
textarea {
|
523
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
524
601
|
font-size: 13px;
|
525
602
|
font-weight: normal;
|
526
603
|
line-height: 18px;
|
527
604
|
}
|
605
|
+
input,
|
606
|
+
button,
|
607
|
+
select,
|
608
|
+
textarea {
|
609
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
610
|
+
}
|
528
611
|
label {
|
529
612
|
display: block;
|
530
613
|
margin-bottom: 5px;
|
@@ -542,7 +625,7 @@ select,
|
|
542
625
|
font-size: 13px;
|
543
626
|
line-height: 18px;
|
544
627
|
color: #555555;
|
545
|
-
border: 1px solid #
|
628
|
+
border: 1px solid #cccccc;
|
546
629
|
-webkit-border-radius: 3px;
|
547
630
|
-moz-border-radius: 3px;
|
548
631
|
border-radius: 3px;
|
@@ -551,10 +634,14 @@ select,
|
|
551
634
|
width: auto;
|
552
635
|
height: auto;
|
553
636
|
}
|
554
|
-
label input,
|
637
|
+
label input,
|
638
|
+
label textarea,
|
639
|
+
label select {
|
555
640
|
display: block;
|
556
641
|
}
|
557
|
-
input[type="image"],
|
642
|
+
input[type="image"],
|
643
|
+
input[type="checkbox"],
|
644
|
+
input[type="radio"] {
|
558
645
|
width: auto;
|
559
646
|
height: auto;
|
560
647
|
padding: 0;
|
@@ -563,13 +650,19 @@ input[type="image"], input[type="checkbox"], input[type="radio"] {
|
|
563
650
|
/* IE7 */
|
564
651
|
|
565
652
|
line-height: normal;
|
566
|
-
border: 0;
|
567
653
|
cursor: pointer;
|
568
654
|
-webkit-border-radius: 0;
|
569
655
|
-moz-border-radius: 0;
|
570
656
|
border-radius: 0;
|
657
|
+
border: 0 \9;
|
658
|
+
/* IE9 and down */
|
659
|
+
|
660
|
+
}
|
661
|
+
input[type="image"] {
|
662
|
+
border: 0;
|
571
663
|
}
|
572
664
|
input[type="file"] {
|
665
|
+
width: auto;
|
573
666
|
padding: initial;
|
574
667
|
line-height: initial;
|
575
668
|
border: initial;
|
@@ -579,11 +672,14 @@ input[type="file"] {
|
|
579
672
|
-moz-box-shadow: none;
|
580
673
|
box-shadow: none;
|
581
674
|
}
|
582
|
-
input[type="button"],
|
675
|
+
input[type="button"],
|
676
|
+
input[type="reset"],
|
677
|
+
input[type="submit"] {
|
583
678
|
width: auto;
|
584
679
|
height: auto;
|
585
680
|
}
|
586
|
-
select,
|
681
|
+
select,
|
682
|
+
input[type="file"] {
|
587
683
|
height: 28px;
|
588
684
|
/* In IE7, the height of the select element cannot be changed by height, only font-size */
|
589
685
|
|
@@ -592,11 +688,15 @@ select, input[type="file"] {
|
|
592
688
|
|
593
689
|
line-height: 28px;
|
594
690
|
}
|
691
|
+
input[type="file"] {
|
692
|
+
line-height: 18px \9;
|
693
|
+
}
|
595
694
|
select {
|
596
695
|
width: 220px;
|
597
696
|
background-color: #ffffff;
|
598
697
|
}
|
599
|
-
select[multiple],
|
698
|
+
select[multiple],
|
699
|
+
select[size] {
|
600
700
|
height: auto;
|
601
701
|
}
|
602
702
|
input[type="image"] {
|
@@ -610,28 +710,32 @@ textarea {
|
|
610
710
|
input[type="hidden"] {
|
611
711
|
display: none;
|
612
712
|
}
|
613
|
-
.radio,
|
713
|
+
.radio,
|
714
|
+
.checkbox {
|
614
715
|
padding-left: 18px;
|
615
716
|
}
|
616
|
-
.radio input[type="radio"],
|
717
|
+
.radio input[type="radio"],
|
718
|
+
.checkbox input[type="checkbox"] {
|
617
719
|
float: left;
|
618
720
|
margin-left: -18px;
|
619
721
|
}
|
620
|
-
.controls > .radio:first-child,
|
722
|
+
.controls > .radio:first-child,
|
723
|
+
.controls > .checkbox:first-child {
|
621
724
|
padding-top: 5px;
|
622
725
|
}
|
623
|
-
.radio.inline,
|
726
|
+
.radio.inline,
|
727
|
+
.checkbox.inline {
|
624
728
|
display: inline-block;
|
729
|
+
padding-top: 5px;
|
625
730
|
margin-bottom: 0;
|
626
731
|
vertical-align: middle;
|
627
732
|
}
|
628
|
-
.radio.inline + .radio.inline,
|
733
|
+
.radio.inline + .radio.inline,
|
734
|
+
.checkbox.inline + .checkbox.inline {
|
629
735
|
margin-left: 10px;
|
630
736
|
}
|
631
|
-
|
632
|
-
|
633
|
-
}
|
634
|
-
input, textarea {
|
737
|
+
input,
|
738
|
+
textarea {
|
635
739
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
636
740
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
637
741
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
@@ -641,21 +745,25 @@ input, textarea {
|
|
641
745
|
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
642
746
|
transition: border linear 0.2s, box-shadow linear 0.2s;
|
643
747
|
}
|
644
|
-
input:focus,
|
748
|
+
input:focus,
|
749
|
+
textarea:focus {
|
645
750
|
border-color: rgba(82, 168, 236, 0.8);
|
646
751
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
647
752
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
648
753
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
649
754
|
outline: 0;
|
650
755
|
outline: thin dotted \9;
|
651
|
-
/* IE6-
|
756
|
+
/* IE6-9 */
|
652
757
|
|
653
758
|
}
|
654
|
-
input[type="file"]:focus,
|
759
|
+
input[type="file"]:focus,
|
760
|
+
input[type="radio"]:focus,
|
761
|
+
input[type="checkbox"]:focus,
|
762
|
+
select:focus {
|
655
763
|
-webkit-box-shadow: none;
|
656
764
|
-moz-box-shadow: none;
|
657
765
|
box-shadow: none;
|
658
|
-
outline: thin dotted;
|
766
|
+
outline: thin dotted #333;
|
659
767
|
outline: 5px auto -webkit-focus-ring-color;
|
660
768
|
outline-offset: -2px;
|
661
769
|
}
|
@@ -684,41 +792,46 @@ textarea[class*="span"],
|
|
684
792
|
float: none;
|
685
793
|
margin-left: 0;
|
686
794
|
}
|
687
|
-
input
|
688
|
-
|
795
|
+
input,
|
796
|
+
textarea,
|
797
|
+
.uneditable-input {
|
798
|
+
margin-left: 0;
|
689
799
|
}
|
690
|
-
input.
|
691
|
-
width:
|
800
|
+
input.span12, textarea.span12, .uneditable-input.span12 {
|
801
|
+
width: 930px;
|
692
802
|
}
|
693
|
-
input.
|
694
|
-
width:
|
803
|
+
input.span11, textarea.span11, .uneditable-input.span11 {
|
804
|
+
width: 850px;
|
695
805
|
}
|
696
|
-
input.
|
697
|
-
width:
|
806
|
+
input.span10, textarea.span10, .uneditable-input.span10 {
|
807
|
+
width: 770px;
|
698
808
|
}
|
699
|
-
input.
|
700
|
-
width:
|
809
|
+
input.span9, textarea.span9, .uneditable-input.span9 {
|
810
|
+
width: 690px;
|
701
811
|
}
|
702
|
-
input.
|
703
|
-
width:
|
812
|
+
input.span8, textarea.span8, .uneditable-input.span8 {
|
813
|
+
width: 610px;
|
704
814
|
}
|
705
815
|
input.span7, textarea.span7, .uneditable-input.span7 {
|
706
816
|
width: 530px;
|
707
817
|
}
|
708
|
-
input.
|
709
|
-
width:
|
818
|
+
input.span6, textarea.span6, .uneditable-input.span6 {
|
819
|
+
width: 450px;
|
710
820
|
}
|
711
|
-
input.
|
712
|
-
width:
|
821
|
+
input.span5, textarea.span5, .uneditable-input.span5 {
|
822
|
+
width: 370px;
|
713
823
|
}
|
714
|
-
input.
|
715
|
-
width:
|
824
|
+
input.span4, textarea.span4, .uneditable-input.span4 {
|
825
|
+
width: 290px;
|
716
826
|
}
|
717
|
-
input.
|
718
|
-
width:
|
827
|
+
input.span3, textarea.span3, .uneditable-input.span3 {
|
828
|
+
width: 210px;
|
719
829
|
}
|
720
|
-
input.
|
721
|
-
width:
|
830
|
+
input.span2, textarea.span2, .uneditable-input.span2 {
|
831
|
+
width: 130px;
|
832
|
+
}
|
833
|
+
input.span1, textarea.span1, .uneditable-input.span1 {
|
834
|
+
width: 50px;
|
722
835
|
}
|
723
836
|
input[disabled],
|
724
837
|
select[disabled],
|
@@ -726,69 +839,94 @@ textarea[disabled],
|
|
726
839
|
input[readonly],
|
727
840
|
select[readonly],
|
728
841
|
textarea[readonly] {
|
729
|
-
background-color: #
|
842
|
+
background-color: #eeeeee;
|
730
843
|
border-color: #ddd;
|
731
844
|
cursor: not-allowed;
|
732
845
|
}
|
733
|
-
.control-group.warning > label,
|
846
|
+
.control-group.warning > label,
|
847
|
+
.control-group.warning .help-block,
|
848
|
+
.control-group.warning .help-inline {
|
734
849
|
color: #c09853;
|
735
850
|
}
|
736
|
-
.control-group.warning input,
|
851
|
+
.control-group.warning input,
|
852
|
+
.control-group.warning select,
|
853
|
+
.control-group.warning textarea {
|
737
854
|
color: #c09853;
|
738
855
|
border-color: #c09853;
|
739
856
|
}
|
740
|
-
.control-group.warning input:focus,
|
857
|
+
.control-group.warning input:focus,
|
858
|
+
.control-group.warning select:focus,
|
859
|
+
.control-group.warning textarea:focus {
|
741
860
|
border-color: #a47e3c;
|
742
861
|
-webkit-box-shadow: 0 0 6px #dbc59e;
|
743
862
|
-moz-box-shadow: 0 0 6px #dbc59e;
|
744
863
|
box-shadow: 0 0 6px #dbc59e;
|
745
864
|
}
|
746
|
-
.control-group.warning .input-prepend .add-on,
|
865
|
+
.control-group.warning .input-prepend .add-on,
|
866
|
+
.control-group.warning .input-append .add-on {
|
747
867
|
color: #c09853;
|
748
868
|
background-color: #fcf8e3;
|
749
869
|
border-color: #c09853;
|
750
870
|
}
|
751
|
-
.control-group.error > label,
|
871
|
+
.control-group.error > label,
|
872
|
+
.control-group.error .help-block,
|
873
|
+
.control-group.error .help-inline {
|
752
874
|
color: #b94a48;
|
753
875
|
}
|
754
|
-
.control-group.error input,
|
876
|
+
.control-group.error input,
|
877
|
+
.control-group.error select,
|
878
|
+
.control-group.error textarea {
|
755
879
|
color: #b94a48;
|
756
880
|
border-color: #b94a48;
|
757
881
|
}
|
758
|
-
.control-group.error input:focus,
|
882
|
+
.control-group.error input:focus,
|
883
|
+
.control-group.error select:focus,
|
884
|
+
.control-group.error textarea:focus {
|
759
885
|
border-color: #953b39;
|
760
886
|
-webkit-box-shadow: 0 0 6px #d59392;
|
761
887
|
-moz-box-shadow: 0 0 6px #d59392;
|
762
888
|
box-shadow: 0 0 6px #d59392;
|
763
889
|
}
|
764
|
-
.control-group.error .input-prepend .add-on,
|
890
|
+
.control-group.error .input-prepend .add-on,
|
891
|
+
.control-group.error .input-append .add-on {
|
765
892
|
color: #b94a48;
|
766
893
|
background-color: #f2dede;
|
767
894
|
border-color: #b94a48;
|
768
895
|
}
|
769
|
-
.control-group.success > label,
|
896
|
+
.control-group.success > label,
|
897
|
+
.control-group.success .help-block,
|
898
|
+
.control-group.success .help-inline {
|
770
899
|
color: #468847;
|
771
900
|
}
|
772
|
-
.control-group.success input,
|
901
|
+
.control-group.success input,
|
902
|
+
.control-group.success select,
|
903
|
+
.control-group.success textarea {
|
773
904
|
color: #468847;
|
774
905
|
border-color: #468847;
|
775
906
|
}
|
776
|
-
.control-group.success input:focus,
|
907
|
+
.control-group.success input:focus,
|
908
|
+
.control-group.success select:focus,
|
909
|
+
.control-group.success textarea:focus {
|
777
910
|
border-color: #356635;
|
778
911
|
-webkit-box-shadow: 0 0 6px #7aba7b;
|
779
912
|
-moz-box-shadow: 0 0 6px #7aba7b;
|
780
913
|
box-shadow: 0 0 6px #7aba7b;
|
781
914
|
}
|
782
|
-
.control-group.success .input-prepend .add-on,
|
915
|
+
.control-group.success .input-prepend .add-on,
|
916
|
+
.control-group.success .input-append .add-on {
|
783
917
|
color: #468847;
|
784
918
|
background-color: #dff0d8;
|
785
919
|
border-color: #468847;
|
786
920
|
}
|
787
|
-
input:focus:required:invalid,
|
921
|
+
input:focus:required:invalid,
|
922
|
+
textarea:focus:required:invalid,
|
923
|
+
select:focus:required:invalid {
|
788
924
|
color: #b94a48;
|
789
925
|
border-color: #ee5f5b;
|
790
926
|
}
|
791
|
-
input:focus:required:invalid:focus,
|
927
|
+
input:focus:required:invalid:focus,
|
928
|
+
textarea:focus:required:invalid:focus,
|
929
|
+
select:focus:required:invalid:focus {
|
792
930
|
border-color: #e9322d;
|
793
931
|
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
794
932
|
-moz-box-shadow: 0 0 6px #f8b9b7;
|
@@ -798,8 +936,17 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
798
936
|
padding: 17px 20px 18px;
|
799
937
|
margin-top: 18px;
|
800
938
|
margin-bottom: 18px;
|
801
|
-
background-color: #
|
939
|
+
background-color: #eeeeee;
|
802
940
|
border-top: 1px solid #ddd;
|
941
|
+
*zoom: 1;
|
942
|
+
}
|
943
|
+
.form-actions:before,
|
944
|
+
.form-actions:after {
|
945
|
+
display: table;
|
946
|
+
content: "";
|
947
|
+
}
|
948
|
+
.form-actions:after {
|
949
|
+
clear: both;
|
803
950
|
}
|
804
951
|
.uneditable-input {
|
805
952
|
display: block;
|
@@ -816,10 +963,13 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
816
963
|
::-webkit-input-placeholder {
|
817
964
|
color: #999999;
|
818
965
|
}
|
966
|
+
.help-block,
|
967
|
+
.help-inline {
|
968
|
+
color: #555555;
|
969
|
+
}
|
819
970
|
.help-block {
|
820
|
-
|
821
|
-
margin-bottom:
|
822
|
-
color: #999999;
|
971
|
+
display: block;
|
972
|
+
margin-bottom: 9px;
|
823
973
|
}
|
824
974
|
.help-inline {
|
825
975
|
display: inline-block;
|
@@ -827,91 +977,106 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
827
977
|
/* IE7 inline-block hack */
|
828
978
|
|
829
979
|
*zoom: 1;
|
830
|
-
margin-bottom: 9px;
|
831
980
|
vertical-align: middle;
|
832
981
|
padding-left: 5px;
|
833
982
|
}
|
834
|
-
.input-prepend,
|
983
|
+
.input-prepend,
|
984
|
+
.input-append {
|
835
985
|
margin-bottom: 5px;
|
836
|
-
*zoom: 1;
|
837
|
-
}
|
838
|
-
.input-prepend:before,
|
839
|
-
.input-append:before,
|
840
|
-
.input-prepend:after,
|
841
|
-
.input-append:after {
|
842
|
-
display: table;
|
843
|
-
content: "";
|
844
|
-
}
|
845
|
-
.input-prepend:after, .input-append:after {
|
846
|
-
clear: both;
|
847
986
|
}
|
848
987
|
.input-prepend input,
|
849
988
|
.input-append input,
|
989
|
+
.input-prepend select,
|
990
|
+
.input-append select,
|
850
991
|
.input-prepend .uneditable-input,
|
851
992
|
.input-append .uneditable-input {
|
993
|
+
*margin-left: 0;
|
852
994
|
-webkit-border-radius: 0 3px 3px 0;
|
853
995
|
-moz-border-radius: 0 3px 3px 0;
|
854
996
|
border-radius: 0 3px 3px 0;
|
855
997
|
}
|
856
998
|
.input-prepend input:focus,
|
857
999
|
.input-append input:focus,
|
1000
|
+
.input-prepend select:focus,
|
1001
|
+
.input-append select:focus,
|
858
1002
|
.input-prepend .uneditable-input:focus,
|
859
1003
|
.input-append .uneditable-input:focus {
|
860
1004
|
position: relative;
|
861
1005
|
z-index: 2;
|
862
1006
|
}
|
863
|
-
.input-prepend .uneditable-input,
|
1007
|
+
.input-prepend .uneditable-input,
|
1008
|
+
.input-append .uneditable-input {
|
864
1009
|
border-left-color: #ccc;
|
865
1010
|
}
|
866
|
-
.input-prepend .add-on,
|
867
|
-
|
868
|
-
display: block;
|
1011
|
+
.input-prepend .add-on,
|
1012
|
+
.input-append .add-on {
|
1013
|
+
display: inline-block;
|
869
1014
|
width: auto;
|
870
1015
|
min-width: 16px;
|
871
1016
|
height: 18px;
|
872
|
-
margin-right: -1px;
|
873
1017
|
padding: 4px 5px;
|
874
1018
|
font-weight: normal;
|
875
1019
|
line-height: 18px;
|
876
|
-
color: #999999;
|
877
1020
|
text-align: center;
|
878
1021
|
text-shadow: 0 1px 0 #ffffff;
|
879
|
-
|
1022
|
+
vertical-align: middle;
|
1023
|
+
background-color: #eeeeee;
|
880
1024
|
border: 1px solid #ccc;
|
1025
|
+
}
|
1026
|
+
.input-prepend .add-on,
|
1027
|
+
.input-append .add-on,
|
1028
|
+
.input-prepend .btn,
|
1029
|
+
.input-append .btn {
|
881
1030
|
-webkit-border-radius: 3px 0 0 3px;
|
882
1031
|
-moz-border-radius: 3px 0 0 3px;
|
883
1032
|
border-radius: 3px 0 0 3px;
|
884
1033
|
}
|
885
|
-
.input-prepend .active,
|
1034
|
+
.input-prepend .active,
|
1035
|
+
.input-append .active {
|
886
1036
|
background-color: #a9dba9;
|
887
1037
|
border-color: #46a546;
|
888
1038
|
}
|
889
|
-
.input-prepend .add-on
|
890
|
-
|
891
|
-
|
892
|
-
|
1039
|
+
.input-prepend .add-on,
|
1040
|
+
.input-prepend .btn {
|
1041
|
+
margin-right: -1px;
|
893
1042
|
}
|
894
|
-
.input-append input,
|
895
|
-
|
1043
|
+
.input-append input,
|
1044
|
+
.input-append select .uneditable-input {
|
896
1045
|
-webkit-border-radius: 3px 0 0 3px;
|
897
1046
|
-moz-border-radius: 3px 0 0 3px;
|
898
1047
|
border-radius: 3px 0 0 3px;
|
899
1048
|
}
|
900
1049
|
.input-append .uneditable-input {
|
1050
|
+
border-left-color: #eee;
|
901
1051
|
border-right-color: #ccc;
|
902
1052
|
}
|
903
|
-
.input-append .add-on
|
904
|
-
|
1053
|
+
.input-append .add-on,
|
1054
|
+
.input-append .btn {
|
905
1055
|
margin-left: -1px;
|
906
1056
|
-webkit-border-radius: 0 3px 3px 0;
|
907
1057
|
-moz-border-radius: 0 3px 3px 0;
|
908
1058
|
border-radius: 0 3px 3px 0;
|
909
1059
|
}
|
910
|
-
.input-append input
|
911
|
-
|
1060
|
+
.input-prepend.input-append input,
|
1061
|
+
.input-prepend.input-append select,
|
1062
|
+
.input-prepend.input-append .uneditable-input {
|
1063
|
+
-webkit-border-radius: 0;
|
1064
|
+
-moz-border-radius: 0;
|
1065
|
+
border-radius: 0;
|
912
1066
|
}
|
913
|
-
.input-
|
914
|
-
|
1067
|
+
.input-prepend.input-append .add-on:first-child,
|
1068
|
+
.input-prepend.input-append .btn:first-child {
|
1069
|
+
margin-right: -1px;
|
1070
|
+
-webkit-border-radius: 3px 0 0 3px;
|
1071
|
+
-moz-border-radius: 3px 0 0 3px;
|
1072
|
+
border-radius: 3px 0 0 3px;
|
1073
|
+
}
|
1074
|
+
.input-prepend.input-append .add-on:last-child,
|
1075
|
+
.input-prepend.input-append .btn:last-child {
|
1076
|
+
margin-left: -1px;
|
1077
|
+
-webkit-border-radius: 0 3px 3px 0;
|
1078
|
+
-moz-border-radius: 0 3px 3px 0;
|
1079
|
+
border-radius: 0 3px 3px 0;
|
915
1080
|
}
|
916
1081
|
.search-query {
|
917
1082
|
padding-left: 14px;
|
@@ -935,28 +1100,51 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
935
1100
|
.form-horizontal .help-inline,
|
936
1101
|
.form-search .uneditable-input,
|
937
1102
|
.form-inline .uneditable-input,
|
938
|
-
.form-horizontal .uneditable-input
|
1103
|
+
.form-horizontal .uneditable-input,
|
1104
|
+
.form-search .input-prepend,
|
1105
|
+
.form-inline .input-prepend,
|
1106
|
+
.form-horizontal .input-prepend,
|
1107
|
+
.form-search .input-append,
|
1108
|
+
.form-inline .input-append,
|
1109
|
+
.form-horizontal .input-append {
|
939
1110
|
display: inline-block;
|
940
1111
|
margin-bottom: 0;
|
941
1112
|
}
|
1113
|
+
.form-search .hide,
|
1114
|
+
.form-inline .hide,
|
1115
|
+
.form-horizontal .hide {
|
1116
|
+
display: none;
|
1117
|
+
}
|
942
1118
|
.form-search label,
|
943
|
-
.form-inline label
|
1119
|
+
.form-inline label {
|
1120
|
+
display: inline-block;
|
1121
|
+
}
|
944
1122
|
.form-search .input-append,
|
945
1123
|
.form-inline .input-append,
|
946
1124
|
.form-search .input-prepend,
|
947
1125
|
.form-inline .input-prepend {
|
948
|
-
|
1126
|
+
margin-bottom: 0;
|
949
1127
|
}
|
950
|
-
.form-search .
|
951
|
-
.form-
|
952
|
-
.form-
|
953
|
-
.form-inline .
|
1128
|
+
.form-search .radio,
|
1129
|
+
.form-search .checkbox,
|
1130
|
+
.form-inline .radio,
|
1131
|
+
.form-inline .checkbox {
|
1132
|
+
padding-left: 0;
|
1133
|
+
margin-bottom: 0;
|
954
1134
|
vertical-align: middle;
|
955
1135
|
}
|
1136
|
+
.form-search .radio input[type="radio"],
|
1137
|
+
.form-search .checkbox input[type="checkbox"],
|
1138
|
+
.form-inline .radio input[type="radio"],
|
1139
|
+
.form-inline .checkbox input[type="checkbox"] {
|
1140
|
+
float: left;
|
1141
|
+
margin-left: 0;
|
1142
|
+
margin-right: 3px;
|
1143
|
+
}
|
956
1144
|
.control-group {
|
957
1145
|
margin-bottom: 9px;
|
958
1146
|
}
|
959
|
-
|
1147
|
+
legend + .control-group {
|
960
1148
|
margin-top: 18px;
|
961
1149
|
-webkit-margin-top-collapse: separate;
|
962
1150
|
}
|
@@ -964,14 +1152,15 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
964
1152
|
margin-bottom: 18px;
|
965
1153
|
*zoom: 1;
|
966
1154
|
}
|
967
|
-
.form-horizontal .control-group:before,
|
1155
|
+
.form-horizontal .control-group:before,
|
1156
|
+
.form-horizontal .control-group:after {
|
968
1157
|
display: table;
|
969
1158
|
content: "";
|
970
1159
|
}
|
971
1160
|
.form-horizontal .control-group:after {
|
972
1161
|
clear: both;
|
973
1162
|
}
|
974
|
-
.form-horizontal .control-
|
1163
|
+
.form-horizontal .control-label {
|
975
1164
|
float: left;
|
976
1165
|
width: 140px;
|
977
1166
|
padding-top: 5px;
|
@@ -979,6 +1168,15 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
979
1168
|
}
|
980
1169
|
.form-horizontal .controls {
|
981
1170
|
margin-left: 160px;
|
1171
|
+
/* Super jank IE7 fix to ensure the inputs in .input-append and input-prepend don't inherit the margin of the parent, in this case .controls */
|
1172
|
+
|
1173
|
+
*display: inline-block;
|
1174
|
+
*margin-left: 0;
|
1175
|
+
*padding-left: 20px;
|
1176
|
+
}
|
1177
|
+
.form-horizontal .help-block {
|
1178
|
+
margin-top: 9px;
|
1179
|
+
margin-bottom: 0;
|
982
1180
|
}
|
983
1181
|
.form-horizontal .form-actions {
|
984
1182
|
padding-left: 160px;
|
@@ -987,73 +1185,89 @@ table {
|
|
987
1185
|
max-width: 100%;
|
988
1186
|
border-collapse: collapse;
|
989
1187
|
border-spacing: 0;
|
1188
|
+
background-color: transparent;
|
990
1189
|
}
|
991
1190
|
.table {
|
992
1191
|
width: 100%;
|
993
1192
|
margin-bottom: 18px;
|
994
1193
|
}
|
995
|
-
.table th,
|
1194
|
+
.table th,
|
1195
|
+
.table td {
|
996
1196
|
padding: 8px;
|
997
1197
|
line-height: 18px;
|
998
1198
|
text-align: left;
|
999
|
-
|
1199
|
+
vertical-align: top;
|
1200
|
+
border-top: 1px solid #dddddd;
|
1000
1201
|
}
|
1001
1202
|
.table th {
|
1002
1203
|
font-weight: bold;
|
1003
|
-
vertical-align: bottom;
|
1004
1204
|
}
|
1005
|
-
.table
|
1006
|
-
vertical-align:
|
1205
|
+
.table thead th {
|
1206
|
+
vertical-align: bottom;
|
1007
1207
|
}
|
1008
|
-
.table thead:first-child
|
1208
|
+
.table colgroup + thead tr:first-child th,
|
1209
|
+
.table colgroup + thead tr:first-child td,
|
1210
|
+
.table thead:first-child tr:first-child th,
|
1211
|
+
.table thead:first-child tr:first-child td {
|
1009
1212
|
border-top: 0;
|
1010
1213
|
}
|
1011
1214
|
.table tbody + tbody {
|
1012
|
-
border-top: 2px solid #
|
1215
|
+
border-top: 2px solid #dddddd;
|
1013
1216
|
}
|
1014
|
-
.table-condensed th,
|
1217
|
+
.table-condensed th,
|
1218
|
+
.table-condensed td {
|
1015
1219
|
padding: 4px 5px;
|
1016
1220
|
}
|
1017
1221
|
.table-bordered {
|
1018
|
-
border: 1px solid #
|
1222
|
+
border: 1px solid #dddddd;
|
1223
|
+
border-left: 0;
|
1019
1224
|
border-collapse: separate;
|
1020
1225
|
*border-collapse: collapsed;
|
1021
1226
|
-webkit-border-radius: 4px;
|
1022
1227
|
-moz-border-radius: 4px;
|
1023
1228
|
border-radius: 4px;
|
1024
1229
|
}
|
1025
|
-
.table-bordered th
|
1026
|
-
.table-bordered td
|
1027
|
-
|
1028
|
-
.table-bordered td + th {
|
1029
|
-
border-left: 1px solid #ddd;
|
1230
|
+
.table-bordered th,
|
1231
|
+
.table-bordered td {
|
1232
|
+
border-left: 1px solid #dddddd;
|
1030
1233
|
}
|
1031
|
-
.table-bordered thead:first-child tr:first-child th,
|
1234
|
+
.table-bordered thead:first-child tr:first-child th,
|
1235
|
+
.table-bordered tbody:first-child tr:first-child th,
|
1236
|
+
.table-bordered tbody:first-child tr:first-child td {
|
1032
1237
|
border-top: 0;
|
1033
1238
|
}
|
1034
|
-
.table-bordered thead:first-child tr:first-child th:first-child,
|
1239
|
+
.table-bordered thead:first-child tr:first-child th:first-child,
|
1240
|
+
.table-bordered tbody:first-child tr:first-child td:first-child {
|
1035
1241
|
-webkit-border-radius: 4px 0 0 0;
|
1036
1242
|
-moz-border-radius: 4px 0 0 0;
|
1037
1243
|
border-radius: 4px 0 0 0;
|
1038
1244
|
}
|
1039
|
-
.table-bordered thead:first-child tr:first-child th:last-child,
|
1245
|
+
.table-bordered thead:first-child tr:first-child th:last-child,
|
1246
|
+
.table-bordered tbody:first-child tr:first-child td:last-child {
|
1040
1247
|
-webkit-border-radius: 0 4px 0 0;
|
1041
1248
|
-moz-border-radius: 0 4px 0 0;
|
1042
1249
|
border-radius: 0 4px 0 0;
|
1043
1250
|
}
|
1044
|
-
.table-bordered thead:last-child tr:last-child th:first-child,
|
1251
|
+
.table-bordered thead:last-child tr:last-child th:first-child,
|
1252
|
+
.table-bordered tbody:last-child tr:last-child td:first-child {
|
1045
1253
|
-webkit-border-radius: 0 0 0 4px;
|
1046
1254
|
-moz-border-radius: 0 0 0 4px;
|
1047
1255
|
border-radius: 0 0 0 4px;
|
1048
1256
|
}
|
1049
|
-
.table-bordered thead:last-child tr:last-child th:last-child,
|
1257
|
+
.table-bordered thead:last-child tr:last-child th:last-child,
|
1258
|
+
.table-bordered tbody:last-child tr:last-child td:last-child {
|
1050
1259
|
-webkit-border-radius: 0 0 4px 0;
|
1051
1260
|
-moz-border-radius: 0 0 4px 0;
|
1052
1261
|
border-radius: 0 0 4px 0;
|
1053
1262
|
}
|
1054
|
-
.table-striped tbody tr:nth-child(odd) td,
|
1263
|
+
.table-striped tbody tr:nth-child(odd) td,
|
1264
|
+
.table-striped tbody tr:nth-child(odd) th {
|
1055
1265
|
background-color: #f9f9f9;
|
1056
1266
|
}
|
1267
|
+
.table tbody tr:hover td,
|
1268
|
+
.table tbody tr:hover th {
|
1269
|
+
background-color: #f5f5f5;
|
1270
|
+
}
|
1057
1271
|
table .span1 {
|
1058
1272
|
float: none;
|
1059
1273
|
width: 44px;
|
@@ -1114,21 +1328,84 @@ table .span12 {
|
|
1114
1328
|
width: 924px;
|
1115
1329
|
margin-left: 0;
|
1116
1330
|
}
|
1117
|
-
|
1331
|
+
table .span13 {
|
1332
|
+
float: none;
|
1333
|
+
width: 1004px;
|
1334
|
+
margin-left: 0;
|
1335
|
+
}
|
1336
|
+
table .span14 {
|
1337
|
+
float: none;
|
1338
|
+
width: 1084px;
|
1339
|
+
margin-left: 0;
|
1340
|
+
}
|
1341
|
+
table .span15 {
|
1342
|
+
float: none;
|
1343
|
+
width: 1164px;
|
1344
|
+
margin-left: 0;
|
1345
|
+
}
|
1346
|
+
table .span16 {
|
1347
|
+
float: none;
|
1348
|
+
width: 1244px;
|
1349
|
+
margin-left: 0;
|
1350
|
+
}
|
1351
|
+
table .span17 {
|
1352
|
+
float: none;
|
1353
|
+
width: 1324px;
|
1354
|
+
margin-left: 0;
|
1355
|
+
}
|
1356
|
+
table .span18 {
|
1357
|
+
float: none;
|
1358
|
+
width: 1404px;
|
1359
|
+
margin-left: 0;
|
1360
|
+
}
|
1361
|
+
table .span19 {
|
1362
|
+
float: none;
|
1363
|
+
width: 1484px;
|
1364
|
+
margin-left: 0;
|
1365
|
+
}
|
1366
|
+
table .span20 {
|
1367
|
+
float: none;
|
1368
|
+
width: 1564px;
|
1369
|
+
margin-left: 0;
|
1370
|
+
}
|
1371
|
+
table .span21 {
|
1372
|
+
float: none;
|
1373
|
+
width: 1644px;
|
1374
|
+
margin-left: 0;
|
1375
|
+
}
|
1376
|
+
table .span22 {
|
1377
|
+
float: none;
|
1378
|
+
width: 1724px;
|
1379
|
+
margin-left: 0;
|
1380
|
+
}
|
1381
|
+
table .span23 {
|
1382
|
+
float: none;
|
1383
|
+
width: 1804px;
|
1384
|
+
margin-left: 0;
|
1385
|
+
}
|
1386
|
+
table .span24 {
|
1387
|
+
float: none;
|
1388
|
+
width: 1884px;
|
1389
|
+
margin-left: 0;
|
1390
|
+
}
|
1391
|
+
[class^="icon-"],
|
1392
|
+
[class*=" icon-"] {
|
1118
1393
|
display: inline-block;
|
1119
1394
|
width: 14px;
|
1120
1395
|
height: 14px;
|
1396
|
+
line-height: 14px;
|
1121
1397
|
vertical-align: text-top;
|
1122
|
-
background-image: url(glyphicons-halflings.png);
|
1398
|
+
background-image: url("../img/glyphicons-halflings.png");
|
1123
1399
|
background-position: 14px 14px;
|
1124
1400
|
background-repeat: no-repeat;
|
1125
1401
|
*margin-right: .3em;
|
1126
1402
|
}
|
1127
|
-
[class^="icon-"]:last-child
|
1403
|
+
[class^="icon-"]:last-child,
|
1404
|
+
[class*=" icon-"]:last-child {
|
1128
1405
|
*margin-left: 0;
|
1129
1406
|
}
|
1130
1407
|
.icon-white {
|
1131
|
-
background-image: url(glyphicons-halflings-white.png);
|
1408
|
+
background-image: url("../img/glyphicons-halflings-white.png");
|
1132
1409
|
}
|
1133
1410
|
.icon-glass {
|
1134
1411
|
background-position: 0 0;
|
@@ -1496,28 +1773,28 @@ table .span12 {
|
|
1496
1773
|
.dropdown-toggle {
|
1497
1774
|
*margin-bottom: -3px;
|
1498
1775
|
}
|
1499
|
-
.dropdown-toggle:active,
|
1776
|
+
.dropdown-toggle:active,
|
1777
|
+
.open .dropdown-toggle {
|
1500
1778
|
outline: 0;
|
1501
1779
|
}
|
1502
1780
|
.caret {
|
1503
1781
|
display: inline-block;
|
1504
1782
|
width: 0;
|
1505
1783
|
height: 0;
|
1506
|
-
text-indent: -99999px;
|
1507
|
-
*text-indent: 0;
|
1508
1784
|
vertical-align: top;
|
1509
1785
|
border-left: 4px solid transparent;
|
1510
1786
|
border-right: 4px solid transparent;
|
1511
1787
|
border-top: 4px solid #000000;
|
1512
1788
|
opacity: 0.3;
|
1513
1789
|
filter: alpha(opacity=30);
|
1514
|
-
content: "
|
1790
|
+
content: "";
|
1515
1791
|
}
|
1516
1792
|
.dropdown .caret {
|
1517
1793
|
margin-top: 8px;
|
1518
1794
|
margin-left: 2px;
|
1519
1795
|
}
|
1520
|
-
.dropdown:hover .caret,
|
1796
|
+
.dropdown:hover .caret,
|
1797
|
+
.open.dropdown .caret {
|
1521
1798
|
opacity: 1;
|
1522
1799
|
filter: alpha(opacity=100);
|
1523
1800
|
}
|
@@ -1529,8 +1806,6 @@ table .span12 {
|
|
1529
1806
|
float: left;
|
1530
1807
|
display: none;
|
1531
1808
|
min-width: 160px;
|
1532
|
-
max-width: 220px;
|
1533
|
-
_width: 160px;
|
1534
1809
|
padding: 4px 0;
|
1535
1810
|
margin: 0;
|
1536
1811
|
list-style: none;
|
@@ -1551,14 +1826,13 @@ table .span12 {
|
|
1551
1826
|
*border-right-width: 2px;
|
1552
1827
|
*border-bottom-width: 2px;
|
1553
1828
|
}
|
1554
|
-
.dropdown-menu.
|
1555
|
-
|
1556
|
-
|
1557
|
-
margin-bottom: 2px;
|
1829
|
+
.dropdown-menu.pull-right {
|
1830
|
+
right: 0;
|
1831
|
+
left: auto;
|
1558
1832
|
}
|
1559
1833
|
.dropdown-menu .divider {
|
1560
1834
|
height: 1px;
|
1561
|
-
margin:
|
1835
|
+
margin: 8px 1px;
|
1562
1836
|
overflow: hidden;
|
1563
1837
|
background-color: #e5e5e5;
|
1564
1838
|
border-bottom: 1px solid #ffffff;
|
@@ -1571,10 +1845,12 @@ table .span12 {
|
|
1571
1845
|
clear: both;
|
1572
1846
|
font-weight: normal;
|
1573
1847
|
line-height: 18px;
|
1574
|
-
color: #
|
1848
|
+
color: #333333;
|
1575
1849
|
white-space: nowrap;
|
1576
1850
|
}
|
1577
|
-
.dropdown-menu li > a:hover,
|
1851
|
+
.dropdown-menu li > a:hover,
|
1852
|
+
.dropdown-menu .active > a,
|
1853
|
+
.dropdown-menu .active > a:hover {
|
1578
1854
|
color: #ffffff;
|
1579
1855
|
text-decoration: none;
|
1580
1856
|
background-color: #0088cc;
|
@@ -1590,6 +1866,22 @@ table .span12 {
|
|
1590
1866
|
.dropdown.open .dropdown-menu {
|
1591
1867
|
display: block;
|
1592
1868
|
}
|
1869
|
+
.pull-right .dropdown-menu {
|
1870
|
+
left: auto;
|
1871
|
+
right: 0;
|
1872
|
+
}
|
1873
|
+
.dropup .caret,
|
1874
|
+
.navbar-fixed-bottom .dropdown .caret {
|
1875
|
+
border-top: 0;
|
1876
|
+
border-bottom: 4px solid #000000;
|
1877
|
+
content: "\2191";
|
1878
|
+
}
|
1879
|
+
.dropup .dropdown-menu,
|
1880
|
+
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
1881
|
+
top: auto;
|
1882
|
+
bottom: 100%;
|
1883
|
+
margin-bottom: 1px;
|
1884
|
+
}
|
1593
1885
|
.typeahead {
|
1594
1886
|
margin-top: 2px;
|
1595
1887
|
-webkit-border-radius: 4px;
|
@@ -1614,6 +1906,18 @@ table .span12 {
|
|
1614
1906
|
border-color: #ddd;
|
1615
1907
|
border-color: rgba(0, 0, 0, 0.15);
|
1616
1908
|
}
|
1909
|
+
.well-large {
|
1910
|
+
padding: 24px;
|
1911
|
+
-webkit-border-radius: 6px;
|
1912
|
+
-moz-border-radius: 6px;
|
1913
|
+
border-radius: 6px;
|
1914
|
+
}
|
1915
|
+
.well-small {
|
1916
|
+
padding: 9px;
|
1917
|
+
-webkit-border-radius: 3px;
|
1918
|
+
-moz-border-radius: 3px;
|
1919
|
+
border-radius: 3px;
|
1920
|
+
}
|
1617
1921
|
.fade {
|
1618
1922
|
-webkit-transition: opacity 0.15s linear;
|
1619
1923
|
-moz-transition: opacity 0.15s linear;
|
@@ -1657,23 +1961,32 @@ table .span12 {
|
|
1657
1961
|
}
|
1658
1962
|
.btn {
|
1659
1963
|
display: inline-block;
|
1964
|
+
*display: inline;
|
1965
|
+
/* IE7 inline-block hack */
|
1966
|
+
|
1967
|
+
*zoom: 1;
|
1660
1968
|
padding: 4px 10px 4px;
|
1969
|
+
margin-bottom: 0;
|
1661
1970
|
font-size: 13px;
|
1662
1971
|
line-height: 18px;
|
1663
1972
|
color: #333333;
|
1664
1973
|
text-align: center;
|
1665
1974
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
1666
|
-
|
1667
|
-
background-
|
1668
|
-
background-image: -
|
1669
|
-
background-image: -
|
1670
|
-
background-image: -
|
1671
|
-
background-image: -
|
1672
|
-
background-image: linear-gradient(
|
1673
|
-
background-
|
1975
|
+
vertical-align: middle;
|
1976
|
+
background-color: #f5f5f5;
|
1977
|
+
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
1978
|
+
background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
|
1979
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
|
1980
|
+
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
1981
|
+
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
1982
|
+
background-image: linear-gradient(top, #ffffff, #e6e6e6);
|
1983
|
+
background-repeat: repeat-x;
|
1674
1984
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
|
1675
|
-
border:
|
1676
|
-
border-
|
1985
|
+
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
1986
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1987
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
1988
|
+
border: 1px solid #cccccc;
|
1989
|
+
border-bottom-color: #b3b3b3;
|
1677
1990
|
-webkit-border-radius: 4px;
|
1678
1991
|
-moz-border-radius: 4px;
|
1679
1992
|
border-radius: 4px;
|
@@ -1683,6 +1996,17 @@ table .span12 {
|
|
1683
1996
|
cursor: pointer;
|
1684
1997
|
*margin-left: .3em;
|
1685
1998
|
}
|
1999
|
+
.btn:hover,
|
2000
|
+
.btn:active,
|
2001
|
+
.btn.active,
|
2002
|
+
.btn.disabled,
|
2003
|
+
.btn[disabled] {
|
2004
|
+
background-color: #e6e6e6;
|
2005
|
+
}
|
2006
|
+
.btn:active,
|
2007
|
+
.btn.active {
|
2008
|
+
background-color: #cccccc \9;
|
2009
|
+
}
|
1686
2010
|
.btn:first-child {
|
1687
2011
|
*margin-left: 0;
|
1688
2012
|
}
|
@@ -1698,21 +2022,22 @@ table .span12 {
|
|
1698
2022
|
transition: background-position 0.1s linear;
|
1699
2023
|
}
|
1700
2024
|
.btn:focus {
|
1701
|
-
outline: thin dotted;
|
2025
|
+
outline: thin dotted #333;
|
1702
2026
|
outline: 5px auto -webkit-focus-ring-color;
|
1703
2027
|
outline-offset: -2px;
|
1704
2028
|
}
|
1705
|
-
.btn.active,
|
2029
|
+
.btn.active,
|
2030
|
+
.btn:active {
|
1706
2031
|
background-image: none;
|
1707
2032
|
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1708
2033
|
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1709
2034
|
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1710
2035
|
background-color: #e6e6e6;
|
1711
2036
|
background-color: #d9d9d9 \9;
|
1712
|
-
color: rgba(0, 0, 0, 0.5);
|
1713
2037
|
outline: 0;
|
1714
2038
|
}
|
1715
|
-
.btn.disabled,
|
2039
|
+
.btn.disabled,
|
2040
|
+
.btn[disabled] {
|
1716
2041
|
cursor: default;
|
1717
2042
|
background-image: none;
|
1718
2043
|
background-color: #e6e6e6;
|
@@ -1730,7 +2055,7 @@ table .span12 {
|
|
1730
2055
|
-moz-border-radius: 5px;
|
1731
2056
|
border-radius: 5px;
|
1732
2057
|
}
|
1733
|
-
.btn-large
|
2058
|
+
.btn-large [class^="icon-"] {
|
1734
2059
|
margin-top: 1px;
|
1735
2060
|
}
|
1736
2061
|
.btn-small {
|
@@ -1738,9 +2063,14 @@ table .span12 {
|
|
1738
2063
|
font-size: 11px;
|
1739
2064
|
line-height: 16px;
|
1740
2065
|
}
|
1741
|
-
.btn-small
|
2066
|
+
.btn-small [class^="icon-"] {
|
1742
2067
|
margin-top: -1px;
|
1743
2068
|
}
|
2069
|
+
.btn-mini {
|
2070
|
+
padding: 2px 6px;
|
2071
|
+
font-size: 11px;
|
2072
|
+
line-height: 14px;
|
2073
|
+
}
|
1744
2074
|
.btn-primary,
|
1745
2075
|
.btn-primary:hover,
|
1746
2076
|
.btn-warning,
|
@@ -1750,7 +2080,9 @@ table .span12 {
|
|
1750
2080
|
.btn-success,
|
1751
2081
|
.btn-success:hover,
|
1752
2082
|
.btn-info,
|
1753
|
-
.btn-info:hover
|
2083
|
+
.btn-info:hover,
|
2084
|
+
.btn-inverse,
|
2085
|
+
.btn-inverse:hover {
|
1754
2086
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1755
2087
|
color: #ffffff;
|
1756
2088
|
}
|
@@ -1758,32 +2090,34 @@ table .span12 {
|
|
1758
2090
|
.btn-warning.active,
|
1759
2091
|
.btn-danger.active,
|
1760
2092
|
.btn-success.active,
|
1761
|
-
.btn-info.active
|
2093
|
+
.btn-info.active,
|
2094
|
+
.btn-inverse.active {
|
1762
2095
|
color: rgba(255, 255, 255, 0.75);
|
1763
2096
|
}
|
1764
2097
|
.btn-primary {
|
1765
|
-
background-color: #
|
1766
|
-
background-image: -moz-linear-gradient(top, #0088cc, #
|
1767
|
-
background-image: -ms-linear-gradient(top, #0088cc, #
|
1768
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#
|
1769
|
-
background-image: -webkit-linear-gradient(top, #0088cc, #
|
1770
|
-
background-image: -o-linear-gradient(top, #0088cc, #
|
1771
|
-
background-image: linear-gradient(top, #0088cc, #
|
2098
|
+
background-color: #0074cc;
|
2099
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0055cc);
|
2100
|
+
background-image: -ms-linear-gradient(top, #0088cc, #0055cc);
|
2101
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));
|
2102
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0055cc);
|
2103
|
+
background-image: -o-linear-gradient(top, #0088cc, #0055cc);
|
2104
|
+
background-image: linear-gradient(top, #0088cc, #0055cc);
|
1772
2105
|
background-repeat: repeat-x;
|
1773
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#
|
1774
|
-
border-color: #
|
2106
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);
|
2107
|
+
border-color: #0055cc #0055cc #003580;
|
1775
2108
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1776
|
-
filter: progid:
|
2109
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
1777
2110
|
}
|
1778
2111
|
.btn-primary:hover,
|
1779
2112
|
.btn-primary:active,
|
1780
2113
|
.btn-primary.active,
|
1781
2114
|
.btn-primary.disabled,
|
1782
2115
|
.btn-primary[disabled] {
|
1783
|
-
background-color: #
|
2116
|
+
background-color: #0055cc;
|
1784
2117
|
}
|
1785
|
-
.btn-primary:active,
|
1786
|
-
|
2118
|
+
.btn-primary:active,
|
2119
|
+
.btn-primary.active {
|
2120
|
+
background-color: #004099 \9;
|
1787
2121
|
}
|
1788
2122
|
.btn-warning {
|
1789
2123
|
background-color: #faa732;
|
@@ -1797,7 +2131,7 @@ table .span12 {
|
|
1797
2131
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
|
1798
2132
|
border-color: #f89406 #f89406 #ad6704;
|
1799
2133
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1800
|
-
filter: progid:
|
2134
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
1801
2135
|
}
|
1802
2136
|
.btn-warning:hover,
|
1803
2137
|
.btn-warning:active,
|
@@ -1806,7 +2140,8 @@ table .span12 {
|
|
1806
2140
|
.btn-warning[disabled] {
|
1807
2141
|
background-color: #f89406;
|
1808
2142
|
}
|
1809
|
-
.btn-warning:active,
|
2143
|
+
.btn-warning:active,
|
2144
|
+
.btn-warning.active {
|
1810
2145
|
background-color: #c67605 \9;
|
1811
2146
|
}
|
1812
2147
|
.btn-danger {
|
@@ -1821,7 +2156,7 @@ table .span12 {
|
|
1821
2156
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
|
1822
2157
|
border-color: #bd362f #bd362f #802420;
|
1823
2158
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1824
|
-
filter: progid:
|
2159
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
1825
2160
|
}
|
1826
2161
|
.btn-danger:hover,
|
1827
2162
|
.btn-danger:active,
|
@@ -1830,7 +2165,8 @@ table .span12 {
|
|
1830
2165
|
.btn-danger[disabled] {
|
1831
2166
|
background-color: #bd362f;
|
1832
2167
|
}
|
1833
|
-
.btn-danger:active,
|
2168
|
+
.btn-danger:active,
|
2169
|
+
.btn-danger.active {
|
1834
2170
|
background-color: #942a25 \9;
|
1835
2171
|
}
|
1836
2172
|
.btn-success {
|
@@ -1845,7 +2181,7 @@ table .span12 {
|
|
1845
2181
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
|
1846
2182
|
border-color: #51a351 #51a351 #387038;
|
1847
2183
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1848
|
-
filter: progid:
|
2184
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
1849
2185
|
}
|
1850
2186
|
.btn-success:hover,
|
1851
2187
|
.btn-success:active,
|
@@ -1854,7 +2190,8 @@ table .span12 {
|
|
1854
2190
|
.btn-success[disabled] {
|
1855
2191
|
background-color: #51a351;
|
1856
2192
|
}
|
1857
|
-
.btn-success:active,
|
2193
|
+
.btn-success:active,
|
2194
|
+
.btn-success.active {
|
1858
2195
|
background-color: #408140 \9;
|
1859
2196
|
}
|
1860
2197
|
.btn-info {
|
@@ -1869,7 +2206,7 @@ table .span12 {
|
|
1869
2206
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
|
1870
2207
|
border-color: #2f96b4 #2f96b4 #1f6377;
|
1871
2208
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1872
|
-
filter: progid:
|
2209
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
1873
2210
|
}
|
1874
2211
|
.btn-info:hover,
|
1875
2212
|
.btn-info:active,
|
@@ -1878,31 +2215,67 @@ table .span12 {
|
|
1878
2215
|
.btn-info[disabled] {
|
1879
2216
|
background-color: #2f96b4;
|
1880
2217
|
}
|
1881
|
-
.btn-info:active,
|
2218
|
+
.btn-info:active,
|
2219
|
+
.btn-info.active {
|
1882
2220
|
background-color: #24748c \9;
|
1883
2221
|
}
|
1884
|
-
|
2222
|
+
.btn-inverse {
|
2223
|
+
background-color: #414141;
|
2224
|
+
background-image: -moz-linear-gradient(top, #555555, #222222);
|
2225
|
+
background-image: -ms-linear-gradient(top, #555555, #222222);
|
2226
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
|
2227
|
+
background-image: -webkit-linear-gradient(top, #555555, #222222);
|
2228
|
+
background-image: -o-linear-gradient(top, #555555, #222222);
|
2229
|
+
background-image: linear-gradient(top, #555555, #222222);
|
2230
|
+
background-repeat: repeat-x;
|
2231
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
|
2232
|
+
border-color: #222222 #222222 #000000;
|
2233
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2234
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
2235
|
+
}
|
2236
|
+
.btn-inverse:hover,
|
2237
|
+
.btn-inverse:active,
|
2238
|
+
.btn-inverse.active,
|
2239
|
+
.btn-inverse.disabled,
|
2240
|
+
.btn-inverse[disabled] {
|
2241
|
+
background-color: #222222;
|
2242
|
+
}
|
2243
|
+
.btn-inverse:active,
|
2244
|
+
.btn-inverse.active {
|
2245
|
+
background-color: #080808 \9;
|
2246
|
+
}
|
2247
|
+
button.btn,
|
2248
|
+
input[type="submit"].btn {
|
1885
2249
|
*padding-top: 2px;
|
1886
2250
|
*padding-bottom: 2px;
|
1887
2251
|
}
|
1888
|
-
button.btn::-moz-focus-inner,
|
2252
|
+
button.btn::-moz-focus-inner,
|
2253
|
+
input[type="submit"].btn::-moz-focus-inner {
|
1889
2254
|
padding: 0;
|
1890
2255
|
border: 0;
|
1891
2256
|
}
|
1892
|
-
button.btn.large,
|
2257
|
+
button.btn.btn-large,
|
2258
|
+
input[type="submit"].btn.btn-large {
|
1893
2259
|
*padding-top: 7px;
|
1894
2260
|
*padding-bottom: 7px;
|
1895
2261
|
}
|
1896
|
-
button.btn.small,
|
2262
|
+
button.btn.btn-small,
|
2263
|
+
input[type="submit"].btn.btn-small {
|
1897
2264
|
*padding-top: 3px;
|
1898
2265
|
*padding-bottom: 3px;
|
1899
2266
|
}
|
2267
|
+
button.btn.btn-mini,
|
2268
|
+
input[type="submit"].btn.btn-mini {
|
2269
|
+
*padding-top: 1px;
|
2270
|
+
*padding-bottom: 1px;
|
2271
|
+
}
|
1900
2272
|
.btn-group {
|
1901
2273
|
position: relative;
|
1902
2274
|
*zoom: 1;
|
1903
2275
|
*margin-left: .3em;
|
1904
2276
|
}
|
1905
|
-
.btn-group:before,
|
2277
|
+
.btn-group:before,
|
2278
|
+
.btn-group:after {
|
1906
2279
|
display: table;
|
1907
2280
|
content: "";
|
1908
2281
|
}
|
@@ -1943,7 +2316,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
1943
2316
|
-moz-border-radius-bottomleft: 4px;
|
1944
2317
|
border-bottom-left-radius: 4px;
|
1945
2318
|
}
|
1946
|
-
.btn-group .btn:last-child,
|
2319
|
+
.btn-group .btn:last-child,
|
2320
|
+
.btn-group .dropdown-toggle {
|
1947
2321
|
-webkit-border-top-right-radius: 4px;
|
1948
2322
|
-moz-border-radius-topright: 4px;
|
1949
2323
|
border-top-right-radius: 4px;
|
@@ -1960,7 +2334,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
1960
2334
|
-moz-border-radius-bottomleft: 6px;
|
1961
2335
|
border-bottom-left-radius: 6px;
|
1962
2336
|
}
|
1963
|
-
.btn-group .btn.large:last-child,
|
2337
|
+
.btn-group .btn.large:last-child,
|
2338
|
+
.btn-group .large.dropdown-toggle {
|
1964
2339
|
-webkit-border-top-right-radius: 6px;
|
1965
2340
|
-moz-border-radius-topright: 6px;
|
1966
2341
|
border-top-right-radius: 6px;
|
@@ -1974,7 +2349,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
1974
2349
|
.btn-group .btn.active {
|
1975
2350
|
z-index: 2;
|
1976
2351
|
}
|
1977
|
-
.btn-group .dropdown-toggle:active,
|
2352
|
+
.btn-group .dropdown-toggle:active,
|
2353
|
+
.btn-group.open .dropdown-toggle {
|
1978
2354
|
outline: 0;
|
1979
2355
|
}
|
1980
2356
|
.btn-group .dropdown-toggle {
|
@@ -1983,8 +2359,22 @@ button.btn.small, input[type="submit"].btn.small {
|
|
1983
2359
|
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1984
2360
|
-moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1985
2361
|
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1986
|
-
*padding-top:
|
1987
|
-
*padding-bottom:
|
2362
|
+
*padding-top: 3px;
|
2363
|
+
*padding-bottom: 3px;
|
2364
|
+
}
|
2365
|
+
.btn-group .btn-mini.dropdown-toggle {
|
2366
|
+
padding-left: 5px;
|
2367
|
+
padding-right: 5px;
|
2368
|
+
*padding-top: 1px;
|
2369
|
+
*padding-bottom: 1px;
|
2370
|
+
}
|
2371
|
+
.btn-group .btn-small.dropdown-toggle {
|
2372
|
+
*padding-top: 4px;
|
2373
|
+
*padding-bottom: 4px;
|
2374
|
+
}
|
2375
|
+
.btn-group .btn-large.dropdown-toggle {
|
2376
|
+
padding-left: 12px;
|
2377
|
+
padding-right: 12px;
|
1988
2378
|
}
|
1989
2379
|
.btn-group.open {
|
1990
2380
|
*z-index: 1000;
|
@@ -2006,21 +2396,34 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2006
2396
|
margin-top: 7px;
|
2007
2397
|
margin-left: 0;
|
2008
2398
|
}
|
2009
|
-
.btn:hover .caret,
|
2399
|
+
.btn:hover .caret,
|
2400
|
+
.open.btn-group .caret {
|
2010
2401
|
opacity: 1;
|
2011
2402
|
filter: alpha(opacity=100);
|
2012
2403
|
}
|
2404
|
+
.btn-mini .caret {
|
2405
|
+
margin-top: 5px;
|
2406
|
+
}
|
2407
|
+
.btn-small .caret {
|
2408
|
+
margin-top: 6px;
|
2409
|
+
}
|
2410
|
+
.btn-large .caret {
|
2411
|
+
margin-top: 6px;
|
2412
|
+
border-left: 5px solid transparent;
|
2413
|
+
border-right: 5px solid transparent;
|
2414
|
+
border-top: 5px solid #000000;
|
2415
|
+
}
|
2013
2416
|
.btn-primary .caret,
|
2417
|
+
.btn-warning .caret,
|
2014
2418
|
.btn-danger .caret,
|
2015
2419
|
.btn-info .caret,
|
2016
|
-
.btn-success .caret
|
2420
|
+
.btn-success .caret,
|
2421
|
+
.btn-inverse .caret {
|
2017
2422
|
border-top-color: #ffffff;
|
2423
|
+
border-bottom-color: #ffffff;
|
2018
2424
|
opacity: 0.75;
|
2019
2425
|
filter: alpha(opacity=75);
|
2020
2426
|
}
|
2021
|
-
.btn-small .caret {
|
2022
|
-
margin-top: 4px;
|
2023
|
-
}
|
2024
2427
|
.alert {
|
2025
2428
|
padding: 8px 35px 8px 14px;
|
2026
2429
|
margin-bottom: 18px;
|
@@ -2030,10 +2433,11 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2030
2433
|
-webkit-border-radius: 4px;
|
2031
2434
|
-moz-border-radius: 4px;
|
2032
2435
|
border-radius: 4px;
|
2033
|
-
}
|
2034
|
-
.alert, .alert-heading {
|
2035
2436
|
color: #c09853;
|
2036
2437
|
}
|
2438
|
+
.alert-heading {
|
2439
|
+
color: inherit;
|
2440
|
+
}
|
2037
2441
|
.alert .close {
|
2038
2442
|
position: relative;
|
2039
2443
|
top: -2px;
|
@@ -2043,32 +2447,25 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2043
2447
|
.alert-success {
|
2044
2448
|
background-color: #dff0d8;
|
2045
2449
|
border-color: #d6e9c6;
|
2046
|
-
}
|
2047
|
-
.alert-success, .alert-success .alert-heading {
|
2048
2450
|
color: #468847;
|
2049
2451
|
}
|
2050
|
-
.alert-danger,
|
2452
|
+
.alert-danger,
|
2453
|
+
.alert-error {
|
2051
2454
|
background-color: #f2dede;
|
2052
2455
|
border-color: #eed3d7;
|
2053
|
-
}
|
2054
|
-
.alert-danger,
|
2055
|
-
.alert-error,
|
2056
|
-
.alert-danger .alert-heading,
|
2057
|
-
.alert-error .alert-heading {
|
2058
2456
|
color: #b94a48;
|
2059
2457
|
}
|
2060
2458
|
.alert-info {
|
2061
2459
|
background-color: #d9edf7;
|
2062
2460
|
border-color: #bce8f1;
|
2063
|
-
}
|
2064
|
-
.alert-info, .alert-info .alert-heading {
|
2065
2461
|
color: #3a87ad;
|
2066
2462
|
}
|
2067
2463
|
.alert-block {
|
2068
2464
|
padding-top: 14px;
|
2069
2465
|
padding-bottom: 14px;
|
2070
2466
|
}
|
2071
|
-
.alert-block > p,
|
2467
|
+
.alert-block > p,
|
2468
|
+
.alert-block > ul {
|
2072
2469
|
margin-bottom: 0;
|
2073
2470
|
}
|
2074
2471
|
.alert-block p + p {
|
@@ -2086,29 +2483,35 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2086
2483
|
text-decoration: none;
|
2087
2484
|
background-color: #eeeeee;
|
2088
2485
|
}
|
2089
|
-
.nav-
|
2090
|
-
padding-left: 14px;
|
2091
|
-
padding-right: 14px;
|
2092
|
-
margin-bottom: 0;
|
2093
|
-
}
|
2094
|
-
.nav-list > li > a, .nav-list .nav-header {
|
2486
|
+
.nav .nav-header {
|
2095
2487
|
display: block;
|
2096
2488
|
padding: 3px 15px;
|
2097
|
-
margin-left: -15px;
|
2098
|
-
margin-right: -15px;
|
2099
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2100
|
-
}
|
2101
|
-
.nav-list .nav-header {
|
2102
2489
|
font-size: 11px;
|
2103
2490
|
font-weight: bold;
|
2104
2491
|
line-height: 18px;
|
2105
2492
|
color: #999999;
|
2493
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2106
2494
|
text-transform: uppercase;
|
2107
2495
|
}
|
2108
|
-
.nav
|
2496
|
+
.nav li + .nav-header {
|
2109
2497
|
margin-top: 9px;
|
2110
2498
|
}
|
2111
|
-
.nav-list
|
2499
|
+
.nav-list {
|
2500
|
+
padding-left: 15px;
|
2501
|
+
padding-right: 15px;
|
2502
|
+
margin-bottom: 0;
|
2503
|
+
}
|
2504
|
+
.nav-list > li > a,
|
2505
|
+
.nav-list .nav-header {
|
2506
|
+
margin-left: -15px;
|
2507
|
+
margin-right: -15px;
|
2508
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2509
|
+
}
|
2510
|
+
.nav-list > li > a {
|
2511
|
+
padding: 3px 15px;
|
2512
|
+
}
|
2513
|
+
.nav-list > .active > a,
|
2514
|
+
.nav-list > .active > a:hover {
|
2112
2515
|
color: #ffffff;
|
2113
2516
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
2114
2517
|
background-color: #0088cc;
|
@@ -2116,7 +2519,17 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2116
2519
|
.nav-list [class^="icon-"] {
|
2117
2520
|
margin-right: 2px;
|
2118
2521
|
}
|
2119
|
-
.nav-
|
2522
|
+
.nav-list .divider {
|
2523
|
+
height: 1px;
|
2524
|
+
margin: 8px 1px;
|
2525
|
+
overflow: hidden;
|
2526
|
+
background-color: #e5e5e5;
|
2527
|
+
border-bottom: 1px solid #ffffff;
|
2528
|
+
*width: 100%;
|
2529
|
+
*margin: -5px 0 5px;
|
2530
|
+
}
|
2531
|
+
.nav-tabs,
|
2532
|
+
.nav-pills {
|
2120
2533
|
*zoom: 1;
|
2121
2534
|
}
|
2122
2535
|
.nav-tabs:before,
|
@@ -2126,13 +2539,16 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2126
2539
|
display: table;
|
2127
2540
|
content: "";
|
2128
2541
|
}
|
2129
|
-
.nav-tabs:after,
|
2542
|
+
.nav-tabs:after,
|
2543
|
+
.nav-pills:after {
|
2130
2544
|
clear: both;
|
2131
2545
|
}
|
2132
|
-
.nav-tabs > li,
|
2546
|
+
.nav-tabs > li,
|
2547
|
+
.nav-pills > li {
|
2133
2548
|
float: left;
|
2134
2549
|
}
|
2135
|
-
.nav-tabs > li > a,
|
2550
|
+
.nav-tabs > li > a,
|
2551
|
+
.nav-pills > li > a {
|
2136
2552
|
padding-right: 12px;
|
2137
2553
|
padding-left: 12px;
|
2138
2554
|
margin-right: 2px;
|
@@ -2145,8 +2561,9 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2145
2561
|
margin-bottom: -1px;
|
2146
2562
|
}
|
2147
2563
|
.nav-tabs > li > a {
|
2148
|
-
padding-top:
|
2149
|
-
padding-bottom:
|
2564
|
+
padding-top: 8px;
|
2565
|
+
padding-bottom: 8px;
|
2566
|
+
line-height: 18px;
|
2150
2567
|
border: 1px solid transparent;
|
2151
2568
|
-webkit-border-radius: 4px 4px 0 0;
|
2152
2569
|
-moz-border-radius: 4px 4px 0 0;
|
@@ -2155,7 +2572,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2155
2572
|
.nav-tabs > li > a:hover {
|
2156
2573
|
border-color: #eeeeee #eeeeee #dddddd;
|
2157
2574
|
}
|
2158
|
-
.nav-tabs > .active > a,
|
2575
|
+
.nav-tabs > .active > a,
|
2576
|
+
.nav-tabs > .active > a:hover {
|
2159
2577
|
color: #555555;
|
2160
2578
|
background-color: #ffffff;
|
2161
2579
|
border: 1px solid #ddd;
|
@@ -2171,7 +2589,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2171
2589
|
-moz-border-radius: 5px;
|
2172
2590
|
border-radius: 5px;
|
2173
2591
|
}
|
2174
|
-
.nav-pills
|
2592
|
+
.nav-pills > .active > a,
|
2593
|
+
.nav-pills > .active > a:hover {
|
2175
2594
|
color: #ffffff;
|
2176
2595
|
background-color: #0088cc;
|
2177
2596
|
}
|
@@ -2210,7 +2629,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2210
2629
|
.nav-pills.nav-stacked > li:last-child > a {
|
2211
2630
|
margin-bottom: 1px;
|
2212
2631
|
}
|
2213
|
-
.nav-tabs .dropdown-menu,
|
2632
|
+
.nav-tabs .dropdown-menu,
|
2633
|
+
.nav-pills .dropdown-menu {
|
2214
2634
|
margin-top: 1px;
|
2215
2635
|
border-width: 1px;
|
2216
2636
|
}
|
@@ -2219,27 +2639,38 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2219
2639
|
-moz-border-radius: 4px;
|
2220
2640
|
border-radius: 4px;
|
2221
2641
|
}
|
2222
|
-
.nav-tabs .dropdown-toggle .caret,
|
2642
|
+
.nav-tabs .dropdown-toggle .caret,
|
2643
|
+
.nav-pills .dropdown-toggle .caret {
|
2223
2644
|
border-top-color: #0088cc;
|
2645
|
+
border-bottom-color: #0088cc;
|
2224
2646
|
margin-top: 6px;
|
2225
2647
|
}
|
2226
|
-
.nav-tabs .dropdown-toggle:hover .caret,
|
2648
|
+
.nav-tabs .dropdown-toggle:hover .caret,
|
2649
|
+
.nav-pills .dropdown-toggle:hover .caret {
|
2227
2650
|
border-top-color: #005580;
|
2651
|
+
border-bottom-color: #005580;
|
2228
2652
|
}
|
2229
|
-
.nav-tabs .active .dropdown-toggle .caret,
|
2653
|
+
.nav-tabs .active .dropdown-toggle .caret,
|
2654
|
+
.nav-pills .active .dropdown-toggle .caret {
|
2230
2655
|
border-top-color: #333333;
|
2656
|
+
border-bottom-color: #333333;
|
2231
2657
|
}
|
2232
2658
|
.nav > .dropdown.active > a:hover {
|
2233
2659
|
color: #000000;
|
2234
2660
|
cursor: pointer;
|
2235
2661
|
}
|
2236
|
-
.nav-tabs .open .dropdown-toggle,
|
2662
|
+
.nav-tabs .open .dropdown-toggle,
|
2663
|
+
.nav-pills .open .dropdown-toggle,
|
2664
|
+
.nav > .open.active > a:hover {
|
2237
2665
|
color: #ffffff;
|
2238
2666
|
background-color: #999999;
|
2239
2667
|
border-color: #999999;
|
2240
2668
|
}
|
2241
|
-
.nav .open .caret,
|
2669
|
+
.nav .open .caret,
|
2670
|
+
.nav .open.active .caret,
|
2671
|
+
.nav .open a:hover .caret {
|
2242
2672
|
border-top-color: #ffffff;
|
2673
|
+
border-bottom-color: #ffffff;
|
2243
2674
|
opacity: 1;
|
2244
2675
|
filter: alpha(opacity=100);
|
2245
2676
|
}
|
@@ -2249,20 +2680,29 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2249
2680
|
.tabbable {
|
2250
2681
|
*zoom: 1;
|
2251
2682
|
}
|
2252
|
-
.tabbable:before,
|
2683
|
+
.tabbable:before,
|
2684
|
+
.tabbable:after {
|
2253
2685
|
display: table;
|
2254
2686
|
content: "";
|
2255
2687
|
}
|
2256
2688
|
.tabbable:after {
|
2257
2689
|
clear: both;
|
2258
2690
|
}
|
2259
|
-
.
|
2691
|
+
.tab-content {
|
2692
|
+
display: table;
|
2693
|
+
width: 100%;
|
2694
|
+
}
|
2695
|
+
.tabs-below .nav-tabs,
|
2696
|
+
.tabs-right .nav-tabs,
|
2697
|
+
.tabs-left .nav-tabs {
|
2260
2698
|
border-bottom: 0;
|
2261
2699
|
}
|
2262
|
-
.tab-content > .tab-pane,
|
2700
|
+
.tab-content > .tab-pane,
|
2701
|
+
.pill-content > .pill-pane {
|
2263
2702
|
display: none;
|
2264
2703
|
}
|
2265
|
-
.tab-content > .active,
|
2704
|
+
.tab-content > .active,
|
2705
|
+
.pill-content > .active {
|
2266
2706
|
display: block;
|
2267
2707
|
}
|
2268
2708
|
.tabs-below .nav-tabs {
|
@@ -2281,13 +2721,16 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2281
2721
|
border-bottom-color: transparent;
|
2282
2722
|
border-top-color: #ddd;
|
2283
2723
|
}
|
2284
|
-
.tabs-below .nav-tabs .active > a,
|
2724
|
+
.tabs-below .nav-tabs .active > a,
|
2725
|
+
.tabs-below .nav-tabs .active > a:hover {
|
2285
2726
|
border-color: transparent #ddd #ddd #ddd;
|
2286
2727
|
}
|
2287
|
-
.tabs-left .nav-tabs > li,
|
2728
|
+
.tabs-left .nav-tabs > li,
|
2729
|
+
.tabs-right .nav-tabs > li {
|
2288
2730
|
float: none;
|
2289
2731
|
}
|
2290
|
-
.tabs-left .nav-tabs > li > a,
|
2732
|
+
.tabs-left .nav-tabs > li > a,
|
2733
|
+
.tabs-right .nav-tabs > li > a {
|
2291
2734
|
min-width: 74px;
|
2292
2735
|
margin-right: 0;
|
2293
2736
|
margin-bottom: 3px;
|
@@ -2306,7 +2749,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2306
2749
|
.tabs-left .nav-tabs > li > a:hover {
|
2307
2750
|
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
|
2308
2751
|
}
|
2309
|
-
.tabs-left .nav-tabs .active > a,
|
2752
|
+
.tabs-left .nav-tabs .active > a,
|
2753
|
+
.tabs-left .nav-tabs .active > a:hover {
|
2310
2754
|
border-color: #ddd transparent #ddd #ddd;
|
2311
2755
|
*border-right-color: #ffffff;
|
2312
2756
|
}
|
@@ -2324,11 +2768,14 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2324
2768
|
.tabs-right .nav-tabs > li > a:hover {
|
2325
2769
|
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
|
2326
2770
|
}
|
2327
|
-
.tabs-right .nav-tabs .active > a,
|
2771
|
+
.tabs-right .nav-tabs .active > a,
|
2772
|
+
.tabs-right .nav-tabs .active > a:hover {
|
2328
2773
|
border-color: #ddd #ddd #ddd transparent;
|
2329
2774
|
*border-left-color: #ffffff;
|
2330
2775
|
}
|
2331
2776
|
.navbar {
|
2777
|
+
*position: relative;
|
2778
|
+
*z-index: 2;
|
2332
2779
|
overflow: visible;
|
2333
2780
|
margin-bottom: 18px;
|
2334
2781
|
}
|
@@ -2351,6 +2798,9 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2351
2798
|
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2352
2799
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2353
2800
|
}
|
2801
|
+
.navbar .container {
|
2802
|
+
width: auto;
|
2803
|
+
}
|
2354
2804
|
.btn-navbar {
|
2355
2805
|
display: none;
|
2356
2806
|
float: right;
|
@@ -2368,7 +2818,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2368
2818
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
2369
2819
|
border-color: #222222 #222222 #000000;
|
2370
2820
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2371
|
-
filter: progid:
|
2821
|
+
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
|
2372
2822
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
2373
2823
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
2374
2824
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
@@ -2380,7 +2830,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2380
2830
|
.btn-navbar[disabled] {
|
2381
2831
|
background-color: #222222;
|
2382
2832
|
}
|
2383
|
-
.btn-navbar:active,
|
2833
|
+
.btn-navbar:active,
|
2834
|
+
.btn-navbar.active {
|
2384
2835
|
background-color: #080808 \9;
|
2385
2836
|
}
|
2386
2837
|
.btn-navbar .icon-bar {
|
@@ -2401,6 +2852,9 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2401
2852
|
.nav-collapse.collapse {
|
2402
2853
|
height: auto;
|
2403
2854
|
}
|
2855
|
+
.navbar {
|
2856
|
+
color: #999999;
|
2857
|
+
}
|
2404
2858
|
.navbar .brand:hover {
|
2405
2859
|
text-decoration: none;
|
2406
2860
|
}
|
@@ -2417,13 +2871,9 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2417
2871
|
.navbar .navbar-text {
|
2418
2872
|
margin-bottom: 0;
|
2419
2873
|
line-height: 40px;
|
2420
|
-
color: #999999;
|
2421
2874
|
}
|
2422
|
-
.navbar .
|
2423
|
-
|
2424
|
-
background-color: transparent;
|
2425
|
-
}
|
2426
|
-
.navbar .btn, .navbar .btn-group {
|
2875
|
+
.navbar .btn,
|
2876
|
+
.navbar .btn-group {
|
2427
2877
|
margin-top: 5px;
|
2428
2878
|
}
|
2429
2879
|
.navbar .btn-group .btn {
|
@@ -2433,24 +2883,39 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2433
2883
|
margin-bottom: 0;
|
2434
2884
|
*zoom: 1;
|
2435
2885
|
}
|
2436
|
-
.navbar-form:before,
|
2886
|
+
.navbar-form:before,
|
2887
|
+
.navbar-form:after {
|
2437
2888
|
display: table;
|
2438
2889
|
content: "";
|
2439
2890
|
}
|
2440
2891
|
.navbar-form:after {
|
2441
2892
|
clear: both;
|
2442
2893
|
}
|
2443
|
-
.navbar-form input,
|
2444
|
-
|
2894
|
+
.navbar-form input,
|
2895
|
+
.navbar-form select,
|
2896
|
+
.navbar-form .radio,
|
2897
|
+
.navbar-form .checkbox {
|
2445
2898
|
margin-top: 5px;
|
2446
|
-
margin-bottom: 0;
|
2447
2899
|
}
|
2448
|
-
.navbar-form
|
2449
|
-
|
2900
|
+
.navbar-form input,
|
2901
|
+
.navbar-form select {
|
2902
|
+
display: inline-block;
|
2903
|
+
margin-bottom: 0;
|
2450
2904
|
}
|
2451
|
-
.navbar-form input[type="image"],
|
2905
|
+
.navbar-form input[type="image"],
|
2906
|
+
.navbar-form input[type="checkbox"],
|
2907
|
+
.navbar-form input[type="radio"] {
|
2452
2908
|
margin-top: 3px;
|
2453
2909
|
}
|
2910
|
+
.navbar-form .input-append,
|
2911
|
+
.navbar-form .input-prepend {
|
2912
|
+
margin-top: 6px;
|
2913
|
+
white-space: nowrap;
|
2914
|
+
}
|
2915
|
+
.navbar-form .input-append input,
|
2916
|
+
.navbar-form .input-prepend input {
|
2917
|
+
margin-top: 0;
|
2918
|
+
}
|
2454
2919
|
.navbar-search {
|
2455
2920
|
position: relative;
|
2456
2921
|
float: left;
|
@@ -2464,10 +2929,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2464
2929
|
font-weight: normal;
|
2465
2930
|
line-height: 1;
|
2466
2931
|
color: #ffffff;
|
2467
|
-
color:
|
2468
|
-
|
2469
|
-
background: rgba(255, 255, 255, 0.3);
|
2470
|
-
border: 1px solid #111;
|
2932
|
+
background-color: #626262;
|
2933
|
+
border: 1px solid #151515;
|
2471
2934
|
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
2472
2935
|
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
2473
2936
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
@@ -2477,18 +2940,14 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2477
2940
|
-o-transition: none;
|
2478
2941
|
transition: none;
|
2479
2942
|
}
|
2480
|
-
.navbar-search .search-query
|
2481
|
-
color: #
|
2943
|
+
.navbar-search .search-query:-moz-placeholder {
|
2944
|
+
color: #cccccc;
|
2482
2945
|
}
|
2483
2946
|
.navbar-search .search-query::-webkit-input-placeholder {
|
2484
|
-
color: #
|
2485
|
-
}
|
2486
|
-
.navbar-search .search-query:hover {
|
2487
|
-
color: #ffffff;
|
2488
|
-
background-color: #999999;
|
2489
|
-
background-color: rgba(255, 255, 255, 0.5);
|
2947
|
+
color: #cccccc;
|
2490
2948
|
}
|
2491
|
-
.navbar-search .search-query:focus,
|
2949
|
+
.navbar-search .search-query:focus,
|
2950
|
+
.navbar-search .search-query.focused {
|
2492
2951
|
padding: 5px 10px;
|
2493
2952
|
color: #333333;
|
2494
2953
|
text-shadow: 0 1px 0 #ffffff;
|
@@ -2499,20 +2958,32 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2499
2958
|
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
2500
2959
|
outline: 0;
|
2501
2960
|
}
|
2502
|
-
.navbar-fixed-top
|
2961
|
+
.navbar-fixed-top,
|
2962
|
+
.navbar-fixed-bottom {
|
2503
2963
|
position: fixed;
|
2504
|
-
top: 0;
|
2505
2964
|
right: 0;
|
2506
2965
|
left: 0;
|
2507
2966
|
z-index: 1030;
|
2967
|
+
margin-bottom: 0;
|
2508
2968
|
}
|
2509
|
-
.navbar-fixed-top .navbar-inner
|
2969
|
+
.navbar-fixed-top .navbar-inner,
|
2970
|
+
.navbar-fixed-bottom .navbar-inner {
|
2510
2971
|
padding-left: 0;
|
2511
2972
|
padding-right: 0;
|
2512
2973
|
-webkit-border-radius: 0;
|
2513
2974
|
-moz-border-radius: 0;
|
2514
2975
|
border-radius: 0;
|
2515
2976
|
}
|
2977
|
+
.navbar-fixed-top .container,
|
2978
|
+
.navbar-fixed-bottom .container {
|
2979
|
+
width: 940px;
|
2980
|
+
}
|
2981
|
+
.navbar-fixed-top {
|
2982
|
+
top: 0;
|
2983
|
+
}
|
2984
|
+
.navbar-fixed-bottom {
|
2985
|
+
bottom: 0;
|
2986
|
+
}
|
2516
2987
|
.navbar .nav {
|
2517
2988
|
position: relative;
|
2518
2989
|
left: 0;
|
@@ -2540,11 +3011,11 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2540
3011
|
color: #ffffff;
|
2541
3012
|
text-decoration: none;
|
2542
3013
|
}
|
2543
|
-
.navbar .nav .active > a,
|
3014
|
+
.navbar .nav .active > a,
|
3015
|
+
.navbar .nav .active > a:hover {
|
2544
3016
|
color: #ffffff;
|
2545
3017
|
text-decoration: none;
|
2546
3018
|
background-color: #222222;
|
2547
|
-
background-color: rgba(0, 0, 0, 0.5);
|
2548
3019
|
}
|
2549
3020
|
.navbar .divider-vertical {
|
2550
3021
|
height: 40px;
|
@@ -2585,34 +3056,55 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2585
3056
|
top: -6px;
|
2586
3057
|
left: 10px;
|
2587
3058
|
}
|
2588
|
-
.navbar .
|
3059
|
+
.navbar-fixed-bottom .dropdown-menu:before {
|
3060
|
+
border-top: 7px solid #ccc;
|
3061
|
+
border-top-color: rgba(0, 0, 0, 0.2);
|
3062
|
+
border-bottom: 0;
|
3063
|
+
bottom: -7px;
|
3064
|
+
top: auto;
|
3065
|
+
}
|
3066
|
+
.navbar-fixed-bottom .dropdown-menu:after {
|
3067
|
+
border-top: 6px solid #ffffff;
|
3068
|
+
border-bottom: 0;
|
3069
|
+
bottom: -6px;
|
3070
|
+
top: auto;
|
3071
|
+
}
|
3072
|
+
.navbar .nav .dropdown-toggle .caret,
|
3073
|
+
.navbar .nav .open.dropdown .caret {
|
2589
3074
|
border-top-color: #ffffff;
|
3075
|
+
border-bottom-color: #ffffff;
|
2590
3076
|
}
|
2591
3077
|
.navbar .nav .active .caret {
|
2592
3078
|
opacity: 1;
|
2593
3079
|
filter: alpha(opacity=100);
|
2594
3080
|
}
|
2595
|
-
.navbar .nav .open > .dropdown-toggle,
|
3081
|
+
.navbar .nav .open > .dropdown-toggle,
|
3082
|
+
.navbar .nav .active > .dropdown-toggle,
|
3083
|
+
.navbar .nav .open.active > .dropdown-toggle {
|
2596
3084
|
background-color: transparent;
|
2597
3085
|
}
|
2598
3086
|
.navbar .nav .active > .dropdown-toggle:hover {
|
2599
3087
|
color: #ffffff;
|
2600
3088
|
}
|
2601
|
-
.navbar .nav.pull-right .dropdown-menu
|
3089
|
+
.navbar .nav.pull-right .dropdown-menu,
|
3090
|
+
.navbar .nav .dropdown-menu.pull-right {
|
2602
3091
|
left: auto;
|
2603
3092
|
right: 0;
|
2604
3093
|
}
|
2605
|
-
.navbar .nav.pull-right .dropdown-menu:before
|
3094
|
+
.navbar .nav.pull-right .dropdown-menu:before,
|
3095
|
+
.navbar .nav .dropdown-menu.pull-right:before {
|
2606
3096
|
left: auto;
|
2607
3097
|
right: 12px;
|
2608
3098
|
}
|
2609
|
-
.navbar .nav.pull-right .dropdown-menu:after
|
3099
|
+
.navbar .nav.pull-right .dropdown-menu:after,
|
3100
|
+
.navbar .nav .dropdown-menu.pull-right:after {
|
2610
3101
|
left: auto;
|
2611
3102
|
right: 13px;
|
2612
3103
|
}
|
2613
3104
|
.breadcrumb {
|
2614
3105
|
padding: 7px 14px;
|
2615
3106
|
margin: 0 0 18px;
|
3107
|
+
list-style: none;
|
2616
3108
|
background-color: #fbfbfb;
|
2617
3109
|
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
|
2618
3110
|
background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
|
@@ -2631,7 +3123,11 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2631
3123
|
box-shadow: inset 0 1px 0 #ffffff;
|
2632
3124
|
}
|
2633
3125
|
.breadcrumb li {
|
2634
|
-
display: inline;
|
3126
|
+
display: inline-block;
|
3127
|
+
*display: inline;
|
3128
|
+
/* IE7 inline-block hack */
|
3129
|
+
|
3130
|
+
*zoom: 1;
|
2635
3131
|
text-shadow: 0 1px 0 #ffffff;
|
2636
3132
|
}
|
2637
3133
|
.breadcrumb .divider {
|
@@ -2671,14 +3167,17 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2671
3167
|
border: 1px solid #ddd;
|
2672
3168
|
border-left-width: 0;
|
2673
3169
|
}
|
2674
|
-
.pagination a:hover,
|
3170
|
+
.pagination a:hover,
|
3171
|
+
.pagination .active a {
|
2675
3172
|
background-color: #f5f5f5;
|
2676
3173
|
}
|
2677
3174
|
.pagination .active a {
|
2678
3175
|
color: #999999;
|
2679
3176
|
cursor: default;
|
2680
3177
|
}
|
2681
|
-
.pagination .disabled
|
3178
|
+
.pagination .disabled span,
|
3179
|
+
.pagination .disabled a,
|
3180
|
+
.pagination .disabled a:hover {
|
2682
3181
|
color: #999999;
|
2683
3182
|
background-color: transparent;
|
2684
3183
|
cursor: default;
|
@@ -2707,7 +3206,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2707
3206
|
text-align: center;
|
2708
3207
|
*zoom: 1;
|
2709
3208
|
}
|
2710
|
-
.pager:before,
|
3209
|
+
.pager:before,
|
3210
|
+
.pager:after {
|
2711
3211
|
display: table;
|
2712
3212
|
content: "";
|
2713
3213
|
}
|
@@ -2736,6 +3236,12 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2736
3236
|
.pager .previous a {
|
2737
3237
|
float: left;
|
2738
3238
|
}
|
3239
|
+
.pager .disabled a,
|
3240
|
+
.pager .disabled a:hover {
|
3241
|
+
color: #999999;
|
3242
|
+
background-color: #fff;
|
3243
|
+
cursor: default;
|
3244
|
+
}
|
2739
3245
|
.modal-open .dropdown-menu {
|
2740
3246
|
z-index: 2050;
|
2741
3247
|
}
|
@@ -2760,7 +3266,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2760
3266
|
.modal-backdrop.fade {
|
2761
3267
|
opacity: 0;
|
2762
3268
|
}
|
2763
|
-
.modal-backdrop,
|
3269
|
+
.modal-backdrop,
|
3270
|
+
.modal-backdrop.fade.in {
|
2764
3271
|
opacity: 0.8;
|
2765
3272
|
filter: alpha(opacity=80);
|
2766
3273
|
}
|
@@ -2769,7 +3276,6 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2769
3276
|
top: 50%;
|
2770
3277
|
left: 50%;
|
2771
3278
|
z-index: 1050;
|
2772
|
-
max-height: 500px;
|
2773
3279
|
overflow: auto;
|
2774
3280
|
width: 560px;
|
2775
3281
|
margin: -250px 0 0 -280px;
|
@@ -2808,11 +3314,17 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2808
3314
|
margin-top: 2px;
|
2809
3315
|
}
|
2810
3316
|
.modal-body {
|
3317
|
+
overflow-y: auto;
|
3318
|
+
max-height: 400px;
|
2811
3319
|
padding: 15px;
|
2812
3320
|
}
|
3321
|
+
.modal-form {
|
3322
|
+
margin-bottom: 0;
|
3323
|
+
}
|
2813
3324
|
.modal-footer {
|
2814
3325
|
padding: 14px 15px 15px;
|
2815
3326
|
margin-bottom: 0;
|
3327
|
+
text-align: right;
|
2816
3328
|
background-color: #f5f5f5;
|
2817
3329
|
border-top: 1px solid #ddd;
|
2818
3330
|
-webkit-border-radius: 0 0 6px 6px;
|
@@ -2823,18 +3335,21 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2823
3335
|
box-shadow: inset 0 1px 0 #ffffff;
|
2824
3336
|
*zoom: 1;
|
2825
3337
|
}
|
2826
|
-
.modal-footer:before,
|
3338
|
+
.modal-footer:before,
|
3339
|
+
.modal-footer:after {
|
2827
3340
|
display: table;
|
2828
3341
|
content: "";
|
2829
3342
|
}
|
2830
3343
|
.modal-footer:after {
|
2831
3344
|
clear: both;
|
2832
3345
|
}
|
2833
|
-
.modal-footer .btn {
|
2834
|
-
float: right;
|
3346
|
+
.modal-footer .btn + .btn {
|
2835
3347
|
margin-left: 5px;
|
2836
3348
|
margin-bottom: 0;
|
2837
3349
|
}
|
3350
|
+
.modal-footer .btn-group .btn + .btn {
|
3351
|
+
margin-left: -1px;
|
3352
|
+
}
|
2838
3353
|
.tooltip {
|
2839
3354
|
position: absolute;
|
2840
3355
|
z-index: 1020;
|
@@ -2998,7 +3513,9 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2998
3513
|
-moz-background-clip: padding-box;
|
2999
3514
|
background-clip: padding-box;
|
3000
3515
|
}
|
3001
|
-
.popover-content p,
|
3516
|
+
.popover-content p,
|
3517
|
+
.popover-content ul,
|
3518
|
+
.popover-content ol {
|
3002
3519
|
margin-bottom: 0;
|
3003
3520
|
}
|
3004
3521
|
.thumbnails {
|
@@ -3006,7 +3523,8 @@ button.btn.small, input[type="submit"].btn.small {
|
|
3006
3523
|
list-style: none;
|
3007
3524
|
*zoom: 1;
|
3008
3525
|
}
|
3009
|
-
.thumbnails:before,
|
3526
|
+
.thumbnails:before,
|
3527
|
+
.thumbnails:after {
|
3010
3528
|
display: table;
|
3011
3529
|
content: "";
|
3012
3530
|
}
|
@@ -3045,28 +3563,99 @@ a.thumbnail:hover {
|
|
3045
3563
|
padding: 9px;
|
3046
3564
|
}
|
3047
3565
|
.label {
|
3048
|
-
padding: 1px
|
3049
|
-
font-size:
|
3566
|
+
padding: 1px 4px 2px;
|
3567
|
+
font-size: 10.998px;
|
3050
3568
|
font-weight: bold;
|
3569
|
+
line-height: 13px;
|
3051
3570
|
color: #ffffff;
|
3052
|
-
|
3571
|
+
vertical-align: middle;
|
3572
|
+
white-space: nowrap;
|
3573
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
3053
3574
|
background-color: #999999;
|
3054
3575
|
-webkit-border-radius: 3px;
|
3055
3576
|
-moz-border-radius: 3px;
|
3056
3577
|
border-radius: 3px;
|
3057
3578
|
}
|
3579
|
+
.label:hover {
|
3580
|
+
color: #ffffff;
|
3581
|
+
text-decoration: none;
|
3582
|
+
}
|
3058
3583
|
.label-important {
|
3059
3584
|
background-color: #b94a48;
|
3060
3585
|
}
|
3586
|
+
.label-important:hover {
|
3587
|
+
background-color: #953b39;
|
3588
|
+
}
|
3061
3589
|
.label-warning {
|
3062
3590
|
background-color: #f89406;
|
3063
3591
|
}
|
3592
|
+
.label-warning:hover {
|
3593
|
+
background-color: #c67605;
|
3594
|
+
}
|
3064
3595
|
.label-success {
|
3065
3596
|
background-color: #468847;
|
3066
3597
|
}
|
3598
|
+
.label-success:hover {
|
3599
|
+
background-color: #356635;
|
3600
|
+
}
|
3067
3601
|
.label-info {
|
3068
3602
|
background-color: #3a87ad;
|
3069
3603
|
}
|
3604
|
+
.label-info:hover {
|
3605
|
+
background-color: #2d6987;
|
3606
|
+
}
|
3607
|
+
.label-inverse {
|
3608
|
+
background-color: #333333;
|
3609
|
+
}
|
3610
|
+
.label-inverse:hover {
|
3611
|
+
background-color: #1a1a1a;
|
3612
|
+
}
|
3613
|
+
.badge {
|
3614
|
+
padding: 1px 9px 2px;
|
3615
|
+
font-size: 12.025px;
|
3616
|
+
font-weight: bold;
|
3617
|
+
white-space: nowrap;
|
3618
|
+
color: #ffffff;
|
3619
|
+
background-color: #999999;
|
3620
|
+
-webkit-border-radius: 9px;
|
3621
|
+
-moz-border-radius: 9px;
|
3622
|
+
border-radius: 9px;
|
3623
|
+
}
|
3624
|
+
.badge:hover {
|
3625
|
+
color: #ffffff;
|
3626
|
+
text-decoration: none;
|
3627
|
+
cursor: pointer;
|
3628
|
+
}
|
3629
|
+
.badge-error {
|
3630
|
+
background-color: #b94a48;
|
3631
|
+
}
|
3632
|
+
.badge-error:hover {
|
3633
|
+
background-color: #953b39;
|
3634
|
+
}
|
3635
|
+
.badge-warning {
|
3636
|
+
background-color: #f89406;
|
3637
|
+
}
|
3638
|
+
.badge-warning:hover {
|
3639
|
+
background-color: #c67605;
|
3640
|
+
}
|
3641
|
+
.badge-success {
|
3642
|
+
background-color: #468847;
|
3643
|
+
}
|
3644
|
+
.badge-success:hover {
|
3645
|
+
background-color: #356635;
|
3646
|
+
}
|
3647
|
+
.badge-info {
|
3648
|
+
background-color: #3a87ad;
|
3649
|
+
}
|
3650
|
+
.badge-info:hover {
|
3651
|
+
background-color: #2d6987;
|
3652
|
+
}
|
3653
|
+
.badge-inverse {
|
3654
|
+
background-color: #333333;
|
3655
|
+
}
|
3656
|
+
.badge-inverse:hover {
|
3657
|
+
background-color: #1a1a1a;
|
3658
|
+
}
|
3070
3659
|
@-webkit-keyframes progress-bar-stripes {
|
3071
3660
|
from {
|
3072
3661
|
background-position: 0 0;
|
@@ -3083,6 +3672,14 @@ a.thumbnail:hover {
|
|
3083
3672
|
background-position: 40px 0;
|
3084
3673
|
}
|
3085
3674
|
}
|
3675
|
+
@-ms-keyframes progress-bar-stripes {
|
3676
|
+
from {
|
3677
|
+
background-position: 0 0;
|
3678
|
+
}
|
3679
|
+
to {
|
3680
|
+
background-position: 40px 0;
|
3681
|
+
}
|
3682
|
+
}
|
3086
3683
|
@keyframes progress-bar-stripes {
|
3087
3684
|
from {
|
3088
3685
|
background-position: 0 0;
|
@@ -3132,6 +3729,7 @@ a.thumbnail:hover {
|
|
3132
3729
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
3133
3730
|
-webkit-box-sizing: border-box;
|
3134
3731
|
-moz-box-sizing: border-box;
|
3732
|
+
-ms-box-sizing: border-box;
|
3135
3733
|
box-sizing: border-box;
|
3136
3734
|
-webkit-transition: width 0.6s ease;
|
3137
3735
|
-moz-transition: width 0.6s ease;
|
@@ -3140,7 +3738,7 @@ a.thumbnail:hover {
|
|
3140
3738
|
transition: width 0.6s ease;
|
3141
3739
|
}
|
3142
3740
|
.progress-striped .bar {
|
3143
|
-
background-color: #
|
3741
|
+
background-color: #149bdf;
|
3144
3742
|
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
3145
3743
|
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3146
3744
|
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
@@ -3217,6 +3815,26 @@ a.thumbnail:hover {
|
|
3217
3815
|
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3218
3816
|
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3219
3817
|
}
|
3818
|
+
.progress-warning .bar {
|
3819
|
+
background-color: #faa732;
|
3820
|
+
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
|
3821
|
+
background-image: -ms-linear-gradient(top, #fbb450, #f89406);
|
3822
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
|
3823
|
+
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
|
3824
|
+
background-image: -o-linear-gradient(top, #fbb450, #f89406);
|
3825
|
+
background-image: linear-gradient(top, #fbb450, #f89406);
|
3826
|
+
background-repeat: repeat-x;
|
3827
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
|
3828
|
+
}
|
3829
|
+
.progress-warning.progress-striped .bar {
|
3830
|
+
background-color: #fbb450;
|
3831
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
3832
|
+
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3833
|
+
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3834
|
+
background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3835
|
+
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3836
|
+
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3837
|
+
}
|
3220
3838
|
.accordion {
|
3221
3839
|
margin-bottom: 18px;
|
3222
3840
|
}
|
@@ -3261,13 +3879,16 @@ a.thumbnail:hover {
|
|
3261
3879
|
display: block;
|
3262
3880
|
line-height: 1;
|
3263
3881
|
}
|
3264
|
-
.carousel .active,
|
3882
|
+
.carousel .active,
|
3883
|
+
.carousel .next,
|
3884
|
+
.carousel .prev {
|
3265
3885
|
display: block;
|
3266
3886
|
}
|
3267
3887
|
.carousel .active {
|
3268
3888
|
left: 0;
|
3269
3889
|
}
|
3270
|
-
.carousel .next,
|
3890
|
+
.carousel .next,
|
3891
|
+
.carousel .prev {
|
3271
3892
|
position: absolute;
|
3272
3893
|
top: 0;
|
3273
3894
|
width: 100%;
|
@@ -3278,7 +3899,8 @@ a.thumbnail:hover {
|
|
3278
3899
|
.carousel .prev {
|
3279
3900
|
left: -100%;
|
3280
3901
|
}
|
3281
|
-
.carousel .next.left,
|
3902
|
+
.carousel .next.left,
|
3903
|
+
.carousel .prev.right {
|
3282
3904
|
left: 0;
|
3283
3905
|
}
|
3284
3906
|
.carousel .active.left {
|
@@ -3326,13 +3948,14 @@ a.thumbnail:hover {
|
|
3326
3948
|
background: #333333;
|
3327
3949
|
background: rgba(0, 0, 0, 0.75);
|
3328
3950
|
}
|
3329
|
-
.carousel-caption h4,
|
3951
|
+
.carousel-caption h4,
|
3952
|
+
.carousel-caption p {
|
3330
3953
|
color: #ffffff;
|
3331
3954
|
}
|
3332
3955
|
.hero-unit {
|
3333
3956
|
padding: 60px;
|
3334
3957
|
margin-bottom: 30px;
|
3335
|
-
background-color: #
|
3958
|
+
background-color: #eeeeee;
|
3336
3959
|
-webkit-border-radius: 6px;
|
3337
3960
|
-moz-border-radius: 6px;
|
3338
3961
|
border-radius: 6px;
|
@@ -3341,12 +3964,14 @@ a.thumbnail:hover {
|
|
3341
3964
|
margin-bottom: 0;
|
3342
3965
|
font-size: 60px;
|
3343
3966
|
line-height: 1;
|
3967
|
+
color: inherit;
|
3344
3968
|
letter-spacing: -1px;
|
3345
3969
|
}
|
3346
3970
|
.hero-unit p {
|
3347
3971
|
font-size: 18px;
|
3348
3972
|
font-weight: 200;
|
3349
3973
|
line-height: 27px;
|
3974
|
+
color: inherit;
|
3350
3975
|
}
|
3351
3976
|
.pull-right {
|
3352
3977
|
float: right;
|