jombo 0.0.1.beta28 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/jombo/version.rb +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-collapse.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-popover.js +3 -3
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css +232 -16
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +417 -381
- metadata +5 -5
data/lib/jombo/version.rb
CHANGED
@@ -38,8 +38,8 @@
|
|
38
38
|
, title = this.getTitle()
|
39
39
|
, content = this.getContent()
|
40
40
|
|
41
|
-
$tip.find('.title')[ $.type(title) == 'object' ? 'append' : 'html' ](title)
|
42
|
-
$tip.find('.content > *')[ $.type(content) == 'object' ? 'append' : 'html' ](content)
|
41
|
+
$tip.find('.popover-title')[ $.type(title) == 'object' ? 'append' : 'html' ](title)
|
42
|
+
$tip.find('.popover-content > *')[ $.type(content) == 'object' ? 'append' : 'html' ](content)
|
43
43
|
|
44
44
|
$tip.removeClass('fade top bottom left right in')
|
45
45
|
}
|
@@ -89,7 +89,7 @@
|
|
89
89
|
$.fn.popover.defaults = $.extend({} , $.fn.tooltip.defaults, {
|
90
90
|
placement: 'right'
|
91
91
|
, content: ''
|
92
|
-
, template: '<div class="popover"><div class="arrow"></div><div class="inner"><h3 class="title"></h3><div class="content"><p></p></div></div></div>'
|
92
|
+
, template: '<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>'
|
93
93
|
})
|
94
94
|
|
95
95
|
}( window.jQuery )
|
@@ -1,8 +1,20 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap Responsive v2.0.0
|
3
|
+
*
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
*/
|
1
10
|
.hidden {
|
2
11
|
display: none;
|
3
12
|
visibility: hidden;
|
4
13
|
}
|
5
14
|
@media (max-width: 480px) {
|
15
|
+
.nav-collapse {
|
16
|
+
-webkit-transform: translate3d(0, 0, 0);
|
17
|
+
}
|
6
18
|
.page-header h1 small {
|
7
19
|
display: block;
|
8
20
|
line-height: 18px;
|
@@ -77,21 +89,34 @@
|
|
77
89
|
width: auto;
|
78
90
|
padding: 0 20px;
|
79
91
|
}
|
92
|
+
.row-fluid {
|
93
|
+
width: 100%;
|
94
|
+
}
|
80
95
|
.row {
|
81
96
|
margin-left: 0;
|
82
97
|
}
|
83
|
-
.row > [class*="span"] {
|
98
|
+
.row > [class*="span"], .row-fluid > [class*="span"] {
|
84
99
|
float: none;
|
85
100
|
display: block;
|
86
101
|
width: auto;
|
87
102
|
margin: 0;
|
88
103
|
}
|
89
104
|
}
|
90
|
-
@media (min-width: 768px) and (max-width:
|
91
|
-
.
|
92
|
-
|
93
|
-
|
94
|
-
|
105
|
+
@media (min-width: 768px) and (max-width: 980px) {
|
106
|
+
.row {
|
107
|
+
margin-left: -20px;
|
108
|
+
*zoom: 1;
|
109
|
+
}
|
110
|
+
.row:before, .row:after {
|
111
|
+
display: table;
|
112
|
+
content: "";
|
113
|
+
}
|
114
|
+
.row:after {
|
115
|
+
clear: both;
|
116
|
+
}
|
117
|
+
[class*="span"] {
|
118
|
+
float: left;
|
119
|
+
margin-left: 20px;
|
95
120
|
}
|
96
121
|
.span1 {
|
97
122
|
width: 42px;
|
@@ -126,7 +151,7 @@
|
|
126
151
|
.span11 {
|
127
152
|
width: 662px;
|
128
153
|
}
|
129
|
-
.span12 {
|
154
|
+
.span12, .container {
|
130
155
|
width: 724px;
|
131
156
|
}
|
132
157
|
.offset1 {
|
@@ -162,20 +187,110 @@
|
|
162
187
|
.offset11 {
|
163
188
|
margin-left: 702px;
|
164
189
|
}
|
190
|
+
.row-fluid {
|
191
|
+
width: 100%;
|
192
|
+
*zoom: 1;
|
193
|
+
}
|
194
|
+
.row-fluid:before, .row-fluid:after {
|
195
|
+
display: table;
|
196
|
+
content: "";
|
197
|
+
}
|
198
|
+
.row-fluid:after {
|
199
|
+
clear: both;
|
200
|
+
}
|
201
|
+
.row-fluid > [class*="span"] {
|
202
|
+
float: left;
|
203
|
+
margin-left: 2.762430939%;
|
204
|
+
}
|
205
|
+
.row-fluid > [class*="span"]:first-child {
|
206
|
+
margin-left: 0;
|
207
|
+
}
|
208
|
+
.row-fluid .span1 {
|
209
|
+
width: 5.801104972%;
|
210
|
+
}
|
211
|
+
.row-fluid .span2 {
|
212
|
+
width: 14.364640883%;
|
213
|
+
}
|
214
|
+
.row-fluid .span3 {
|
215
|
+
width: 22.928176794%;
|
216
|
+
}
|
217
|
+
.row-fluid .span4 {
|
218
|
+
width: 31.491712705%;
|
219
|
+
}
|
220
|
+
.row-fluid .span5 {
|
221
|
+
width: 40.055248616%;
|
222
|
+
}
|
223
|
+
.row-fluid .span6 {
|
224
|
+
width: 48.618784527%;
|
225
|
+
}
|
226
|
+
.row-fluid .span7 {
|
227
|
+
width: 57.182320438000005%;
|
228
|
+
}
|
229
|
+
.row-fluid .span8 {
|
230
|
+
width: 65.74585634900001%;
|
231
|
+
}
|
232
|
+
.row-fluid .span9 {
|
233
|
+
width: 74.30939226%;
|
234
|
+
}
|
235
|
+
.row-fluid .span10 {
|
236
|
+
width: 82.87292817100001%;
|
237
|
+
}
|
238
|
+
.row-fluid .span11 {
|
239
|
+
width: 91.436464082%;
|
240
|
+
}
|
241
|
+
.row-fluid .span12 {
|
242
|
+
width: 99.999999993%;
|
243
|
+
}
|
244
|
+
input.span1, textarea.span1, .uneditable-input.span1 {
|
245
|
+
width: 32px;
|
246
|
+
}
|
247
|
+
input.span2, textarea.span2, .uneditable-input.span2 {
|
248
|
+
width: 94px;
|
249
|
+
}
|
250
|
+
input.span3, textarea.span3, .uneditable-input.span3 {
|
251
|
+
width: 156px;
|
252
|
+
}
|
253
|
+
input.span4, textarea.span4, .uneditable-input.span4 {
|
254
|
+
width: 218px;
|
255
|
+
}
|
256
|
+
input.span5, textarea.span5, .uneditable-input.span5 {
|
257
|
+
width: 280px;
|
258
|
+
}
|
259
|
+
input.span6, textarea.span6, .uneditable-input.span6 {
|
260
|
+
width: 342px;
|
261
|
+
}
|
262
|
+
input.span7, textarea.span7, .uneditable-input.span7 {
|
263
|
+
width: 404px;
|
264
|
+
}
|
265
|
+
input.span8, textarea.span8, .uneditable-input.span8 {
|
266
|
+
width: 466px;
|
267
|
+
}
|
268
|
+
input.span9, textarea.span9, .uneditable-input.span9 {
|
269
|
+
width: 528px;
|
270
|
+
}
|
271
|
+
input.span10, textarea.span10, .uneditable-input.span10 {
|
272
|
+
width: 590px;
|
273
|
+
}
|
274
|
+
input.span11, textarea.span11, .uneditable-input.span11 {
|
275
|
+
width: 652px;
|
276
|
+
}
|
277
|
+
input.span12, textarea.span12, .uneditable-input.span12 {
|
278
|
+
width: 714px;
|
279
|
+
}
|
165
280
|
}
|
166
|
-
@media (max-width:
|
281
|
+
@media (max-width: 980px) {
|
167
282
|
body {
|
168
283
|
padding-top: 0;
|
169
284
|
}
|
170
285
|
.navbar-fixed-top {
|
171
286
|
position: static;
|
172
|
-
margin-bottom:
|
287
|
+
margin-bottom: 18px;
|
173
288
|
}
|
174
|
-
.navbar-inner {
|
289
|
+
.navbar-fixed-top .navbar-inner {
|
175
290
|
padding: 5px;
|
176
|
-
background-image: none;
|
177
291
|
}
|
178
292
|
.navbar .container {
|
293
|
+
width: auto;
|
179
294
|
padding: 0;
|
180
295
|
}
|
181
296
|
.navbar .brand {
|
@@ -196,7 +311,7 @@
|
|
196
311
|
.navbar .nav > li > a {
|
197
312
|
margin-bottom: 2px;
|
198
313
|
}
|
199
|
-
.navbar .nav > .vertical
|
314
|
+
.navbar .nav > .divider-vertical {
|
200
315
|
display: none;
|
201
316
|
}
|
202
317
|
.navbar .nav > li > a, .navbar .dropdown-menu a {
|
@@ -263,14 +378,25 @@
|
|
263
378
|
height: 0;
|
264
379
|
}
|
265
380
|
}
|
266
|
-
@media (min-width:
|
267
|
-
.
|
268
|
-
|
381
|
+
@media (min-width: 980px) {
|
382
|
+
.nav-collapse.collapse {
|
383
|
+
height: auto !important;
|
269
384
|
}
|
385
|
+
}
|
386
|
+
@media (min-width: 1200px) {
|
270
387
|
.row {
|
271
388
|
margin-left: -30px;
|
389
|
+
*zoom: 1;
|
390
|
+
}
|
391
|
+
.row:before, .row:after {
|
392
|
+
display: table;
|
393
|
+
content: "";
|
394
|
+
}
|
395
|
+
.row:after {
|
396
|
+
clear: both;
|
272
397
|
}
|
273
398
|
[class*="span"] {
|
399
|
+
float: left;
|
274
400
|
margin-left: 30px;
|
275
401
|
}
|
276
402
|
.span1 {
|
@@ -306,7 +432,7 @@
|
|
306
432
|
.span11 {
|
307
433
|
width: 1070px;
|
308
434
|
}
|
309
|
-
.span12 {
|
435
|
+
.span12, .container {
|
310
436
|
width: 1170px;
|
311
437
|
}
|
312
438
|
.offset1 {
|
@@ -342,6 +468,96 @@
|
|
342
468
|
.offset11 {
|
343
469
|
margin-left: 1130px;
|
344
470
|
}
|
471
|
+
.row-fluid {
|
472
|
+
width: 100%;
|
473
|
+
*zoom: 1;
|
474
|
+
}
|
475
|
+
.row-fluid:before, .row-fluid:after {
|
476
|
+
display: table;
|
477
|
+
content: "";
|
478
|
+
}
|
479
|
+
.row-fluid:after {
|
480
|
+
clear: both;
|
481
|
+
}
|
482
|
+
.row-fluid > [class*="span"] {
|
483
|
+
float: left;
|
484
|
+
margin-left: 2.564102564%;
|
485
|
+
}
|
486
|
+
.row-fluid > [class*="span"]:first-child {
|
487
|
+
margin-left: 0;
|
488
|
+
}
|
489
|
+
.row-fluid .span1 {
|
490
|
+
width: 5.982905983%;
|
491
|
+
}
|
492
|
+
.row-fluid .span2 {
|
493
|
+
width: 14.529914530000001%;
|
494
|
+
}
|
495
|
+
.row-fluid .span3 {
|
496
|
+
width: 23.076923077%;
|
497
|
+
}
|
498
|
+
.row-fluid .span4 {
|
499
|
+
width: 31.623931624%;
|
500
|
+
}
|
501
|
+
.row-fluid .span5 {
|
502
|
+
width: 40.170940171000005%;
|
503
|
+
}
|
504
|
+
.row-fluid .span6 {
|
505
|
+
width: 48.717948718%;
|
506
|
+
}
|
507
|
+
.row-fluid .span7 {
|
508
|
+
width: 57.264957265%;
|
509
|
+
}
|
510
|
+
.row-fluid .span8 {
|
511
|
+
width: 65.81196581200001%;
|
512
|
+
}
|
513
|
+
.row-fluid .span9 {
|
514
|
+
width: 74.358974359%;
|
515
|
+
}
|
516
|
+
.row-fluid .span10 {
|
517
|
+
width: 82.905982906%;
|
518
|
+
}
|
519
|
+
.row-fluid .span11 {
|
520
|
+
width: 91.45299145300001%;
|
521
|
+
}
|
522
|
+
.row-fluid .span12 {
|
523
|
+
width: 100%;
|
524
|
+
}
|
525
|
+
input.span1, textarea.span1, .uneditable-input.span1 {
|
526
|
+
width: 60px;
|
527
|
+
}
|
528
|
+
input.span2, textarea.span2, .uneditable-input.span2 {
|
529
|
+
width: 160px;
|
530
|
+
}
|
531
|
+
input.span3, textarea.span3, .uneditable-input.span3 {
|
532
|
+
width: 260px;
|
533
|
+
}
|
534
|
+
input.span4, textarea.span4, .uneditable-input.span4 {
|
535
|
+
width: 360px;
|
536
|
+
}
|
537
|
+
input.span5, textarea.span5, .uneditable-input.span5 {
|
538
|
+
width: 460px;
|
539
|
+
}
|
540
|
+
input.span6, textarea.span6, .uneditable-input.span6 {
|
541
|
+
width: 560px;
|
542
|
+
}
|
543
|
+
input.span7, textarea.span7, .uneditable-input.span7 {
|
544
|
+
width: 660px;
|
545
|
+
}
|
546
|
+
input.span8, textarea.span8, .uneditable-input.span8 {
|
547
|
+
width: 760px;
|
548
|
+
}
|
549
|
+
input.span9, textarea.span9, .uneditable-input.span9 {
|
550
|
+
width: 860px;
|
551
|
+
}
|
552
|
+
input.span10, textarea.span10, .uneditable-input.span10 {
|
553
|
+
width: 960px;
|
554
|
+
}
|
555
|
+
input.span11, textarea.span11, .uneditable-input.span11 {
|
556
|
+
width: 1060px;
|
557
|
+
}
|
558
|
+
input.span12, textarea.span12, .uneditable-input.span12 {
|
559
|
+
width: 1160px;
|
560
|
+
}
|
345
561
|
.thumbnails {
|
346
562
|
margin-left: -30px;
|
347
563
|
}
|
@@ -99,7 +99,7 @@ body {
|
|
99
99
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
100
100
|
font-size: 13px;
|
101
101
|
line-height: 18px;
|
102
|
-
color: #
|
102
|
+
color: #333333;
|
103
103
|
background-color: #ffffff;
|
104
104
|
}
|
105
105
|
a {
|
@@ -158,7 +158,7 @@ a:hover {
|
|
158
158
|
.span11 {
|
159
159
|
width: 860px;
|
160
160
|
}
|
161
|
-
.span12 {
|
161
|
+
.span12, .container {
|
162
162
|
width: 940px;
|
163
163
|
}
|
164
164
|
.offset1 {
|
@@ -194,6 +194,60 @@ a:hover {
|
|
194
194
|
.offset11 {
|
195
195
|
margin-left: 900px;
|
196
196
|
}
|
197
|
+
.row-fluid {
|
198
|
+
width: 100%;
|
199
|
+
*zoom: 1;
|
200
|
+
}
|
201
|
+
.row-fluid:before, .row-fluid:after {
|
202
|
+
display: table;
|
203
|
+
content: "";
|
204
|
+
}
|
205
|
+
.row-fluid:after {
|
206
|
+
clear: both;
|
207
|
+
}
|
208
|
+
.row-fluid > [class*="span"] {
|
209
|
+
float: left;
|
210
|
+
margin-left: 2.127659574%;
|
211
|
+
}
|
212
|
+
.row-fluid > [class*="span"]:first-child {
|
213
|
+
margin-left: 0;
|
214
|
+
}
|
215
|
+
.row-fluid .span1 {
|
216
|
+
width: 6.382978723%;
|
217
|
+
}
|
218
|
+
.row-fluid .span2 {
|
219
|
+
width: 14.89361702%;
|
220
|
+
}
|
221
|
+
.row-fluid .span3 {
|
222
|
+
width: 23.404255317%;
|
223
|
+
}
|
224
|
+
.row-fluid .span4 {
|
225
|
+
width: 31.914893614%;
|
226
|
+
}
|
227
|
+
.row-fluid .span5 {
|
228
|
+
width: 40.425531911%;
|
229
|
+
}
|
230
|
+
.row-fluid .span6 {
|
231
|
+
width: 48.93617020799999%;
|
232
|
+
}
|
233
|
+
.row-fluid .span7 {
|
234
|
+
width: 57.446808505%;
|
235
|
+
}
|
236
|
+
.row-fluid .span8 {
|
237
|
+
width: 65.95744680199999%;
|
238
|
+
}
|
239
|
+
.row-fluid .span9 {
|
240
|
+
width: 74.468085099%;
|
241
|
+
}
|
242
|
+
.row-fluid .span10 {
|
243
|
+
width: 82.97872339599999%;
|
244
|
+
}
|
245
|
+
.row-fluid .span11 {
|
246
|
+
width: 91.489361693%;
|
247
|
+
}
|
248
|
+
.row-fluid .span12 {
|
249
|
+
width: 99.99999998999999%;
|
250
|
+
}
|
197
251
|
.container {
|
198
252
|
width: 940px;
|
199
253
|
margin-left: auto;
|
@@ -207,42 +261,18 @@ a:hover {
|
|
207
261
|
.container:after {
|
208
262
|
clear: both;
|
209
263
|
}
|
210
|
-
.fluid
|
211
|
-
position: relative;
|
212
|
-
min-width: 940px;
|
264
|
+
.container-fluid {
|
213
265
|
padding-left: 20px;
|
214
266
|
padding-right: 20px;
|
215
267
|
*zoom: 1;
|
216
268
|
}
|
217
|
-
.fluid
|
269
|
+
.container-fluid:before, .container-fluid:after {
|
218
270
|
display: table;
|
219
271
|
content: "";
|
220
272
|
}
|
221
|
-
.fluid
|
273
|
+
.container-fluid:after {
|
222
274
|
clear: both;
|
223
275
|
}
|
224
|
-
.fluid-sidebar {
|
225
|
-
width: 220px;
|
226
|
-
margin: 0 20px 18px;
|
227
|
-
}
|
228
|
-
.sidebar-left {
|
229
|
-
padding-left: 260px;
|
230
|
-
}
|
231
|
-
.sidebar-right {
|
232
|
-
padding-right: 260px;
|
233
|
-
}
|
234
|
-
.sidebar-left .fluid-sidebar {
|
235
|
-
float: left;
|
236
|
-
margin-left: -240px;
|
237
|
-
}
|
238
|
-
.sidebar-right .fluid-sidebar {
|
239
|
-
float: right;
|
240
|
-
margin-right: -240px;
|
241
|
-
}
|
242
|
-
.fluid-content {
|
243
|
-
float: left;
|
244
|
-
width: 100%;
|
245
|
-
}
|
246
276
|
p {
|
247
277
|
margin: 0 0 9px;
|
248
278
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
@@ -597,7 +627,7 @@ input[type="hidden"] {
|
|
597
627
|
margin-left: 10px;
|
598
628
|
}
|
599
629
|
.controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child {
|
600
|
-
padding-top:
|
630
|
+
padding-top: 0;
|
601
631
|
}
|
602
632
|
input, textarea {
|
603
633
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
@@ -688,42 +718,6 @@ input.span11, textarea.span11, .uneditable-input.span11 {
|
|
688
718
|
input.span12, textarea.span12, .uneditable-input.span12 {
|
689
719
|
width: 930px;
|
690
720
|
}
|
691
|
-
select.span1 {
|
692
|
-
width: 70px;
|
693
|
-
}
|
694
|
-
select.span2 {
|
695
|
-
width: 150px;
|
696
|
-
}
|
697
|
-
select.span3 {
|
698
|
-
width: 230px;
|
699
|
-
}
|
700
|
-
select.span4 {
|
701
|
-
width: 310px;
|
702
|
-
}
|
703
|
-
select.span5 {
|
704
|
-
width: 390px;
|
705
|
-
}
|
706
|
-
select.span6 {
|
707
|
-
width: 470px;
|
708
|
-
}
|
709
|
-
select.span7 {
|
710
|
-
width: 550px;
|
711
|
-
}
|
712
|
-
select.span8 {
|
713
|
-
width: 630px;
|
714
|
-
}
|
715
|
-
select.span9 {
|
716
|
-
width: 710px;
|
717
|
-
}
|
718
|
-
select.span10 {
|
719
|
-
width: 790px;
|
720
|
-
}
|
721
|
-
select.span11 {
|
722
|
-
width: 870px;
|
723
|
-
}
|
724
|
-
select.span12 {
|
725
|
-
width: 950px;
|
726
|
-
}
|
727
721
|
input[disabled],
|
728
722
|
select[disabled],
|
729
723
|
textarea[disabled],
|
@@ -874,7 +868,7 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
874
868
|
min-width: 16px;
|
875
869
|
height: 18px;
|
876
870
|
margin-right: -1px;
|
877
|
-
padding: 4px
|
871
|
+
padding: 4px 5px;
|
878
872
|
font-weight: normal;
|
879
873
|
line-height: 18px;
|
880
874
|
color: #999999;
|
@@ -1118,380 +1112,380 @@ table .span12 {
|
|
1118
1112
|
width: 924px;
|
1119
1113
|
margin-left: 0;
|
1120
1114
|
}
|
1121
|
-
|
1122
|
-
background-image: url(../img/glyphicons-halflings.png);
|
1123
|
-
background-position: 14px 14px;
|
1124
|
-
background-repeat: no-repeat;
|
1115
|
+
[class^="icon-"] {
|
1125
1116
|
display: inline-block;
|
1126
|
-
vertical-align: text-top;
|
1127
1117
|
width: 14px;
|
1128
1118
|
height: 14px;
|
1119
|
+
vertical-align: text-top;
|
1120
|
+
background-image: url(../img/glyphicons-halflings.png);
|
1121
|
+
background-position: 14px 14px;
|
1122
|
+
background-repeat: no-repeat;
|
1129
1123
|
*margin-right: .3em;
|
1130
1124
|
}
|
1131
|
-
|
1125
|
+
[class^="icon-"]:last-child {
|
1132
1126
|
*margin-left: 0;
|
1133
1127
|
}
|
1134
|
-
.icon
|
1128
|
+
.icon-white {
|
1135
1129
|
background-image: url(../img/glyphicons-halflings-white.png);
|
1136
1130
|
}
|
1137
|
-
.icon
|
1131
|
+
.icon-glass {
|
1138
1132
|
background-position: 0 0;
|
1139
1133
|
}
|
1140
|
-
.icon
|
1134
|
+
.icon-music {
|
1141
1135
|
background-position: -24px 0;
|
1142
1136
|
}
|
1143
|
-
.icon
|
1137
|
+
.icon-search {
|
1144
1138
|
background-position: -48px 0;
|
1145
1139
|
}
|
1146
|
-
.icon
|
1140
|
+
.icon-envelope {
|
1147
1141
|
background-position: -72px 0;
|
1148
1142
|
}
|
1149
|
-
.icon
|
1143
|
+
.icon-heart {
|
1150
1144
|
background-position: -96px 0;
|
1151
1145
|
}
|
1152
|
-
.icon
|
1146
|
+
.icon-star {
|
1153
1147
|
background-position: -120px 0;
|
1154
1148
|
}
|
1155
|
-
.icon
|
1149
|
+
.icon-star-empty {
|
1156
1150
|
background-position: -144px 0;
|
1157
1151
|
}
|
1158
|
-
.icon
|
1152
|
+
.icon-user {
|
1159
1153
|
background-position: -168px 0;
|
1160
1154
|
}
|
1161
|
-
.icon
|
1155
|
+
.icon-film {
|
1162
1156
|
background-position: -192px 0;
|
1163
1157
|
}
|
1164
|
-
.icon
|
1158
|
+
.icon-th-large {
|
1165
1159
|
background-position: -216px 0;
|
1166
1160
|
}
|
1167
|
-
.icon
|
1161
|
+
.icon-th {
|
1168
1162
|
background-position: -240px 0;
|
1169
1163
|
}
|
1170
|
-
.icon
|
1164
|
+
.icon-th-list {
|
1171
1165
|
background-position: -264px 0;
|
1172
1166
|
}
|
1173
|
-
.icon
|
1167
|
+
.icon-ok {
|
1174
1168
|
background-position: -288px 0;
|
1175
1169
|
}
|
1176
|
-
.icon
|
1170
|
+
.icon-remove {
|
1177
1171
|
background-position: -312px 0;
|
1178
1172
|
}
|
1179
|
-
.icon
|
1173
|
+
.icon-zoom-in {
|
1180
1174
|
background-position: -336px 0;
|
1181
1175
|
}
|
1182
|
-
.icon
|
1176
|
+
.icon-zoom-out {
|
1183
1177
|
background-position: -360px 0;
|
1184
1178
|
}
|
1185
|
-
.icon
|
1179
|
+
.icon-off {
|
1186
1180
|
background-position: -384px 0;
|
1187
1181
|
}
|
1188
|
-
.icon
|
1182
|
+
.icon-signal {
|
1189
1183
|
background-position: -408px 0;
|
1190
1184
|
}
|
1191
|
-
.icon
|
1185
|
+
.icon-cog {
|
1192
1186
|
background-position: -432px 0;
|
1193
1187
|
}
|
1194
|
-
.icon
|
1188
|
+
.icon-trash {
|
1195
1189
|
background-position: -456px 0;
|
1196
1190
|
}
|
1197
|
-
.icon
|
1191
|
+
.icon-home {
|
1198
1192
|
background-position: 0 -24px;
|
1199
1193
|
}
|
1200
|
-
.icon
|
1194
|
+
.icon-file {
|
1201
1195
|
background-position: -24px -24px;
|
1202
1196
|
}
|
1203
|
-
.icon
|
1197
|
+
.icon-time {
|
1204
1198
|
background-position: -48px -24px;
|
1205
1199
|
}
|
1206
|
-
.icon
|
1200
|
+
.icon-road {
|
1207
1201
|
background-position: -72px -24px;
|
1208
1202
|
}
|
1209
|
-
.icon
|
1203
|
+
.icon-download-alt {
|
1210
1204
|
background-position: -96px -24px;
|
1211
1205
|
}
|
1212
|
-
.icon
|
1206
|
+
.icon-download {
|
1213
1207
|
background-position: -120px -24px;
|
1214
1208
|
}
|
1215
|
-
.icon
|
1209
|
+
.icon-upload {
|
1216
1210
|
background-position: -144px -24px;
|
1217
1211
|
}
|
1218
|
-
.icon
|
1212
|
+
.icon-inbox {
|
1219
1213
|
background-position: -168px -24px;
|
1220
1214
|
}
|
1221
|
-
.icon
|
1215
|
+
.icon-play-circle {
|
1222
1216
|
background-position: -192px -24px;
|
1223
1217
|
}
|
1224
|
-
.icon
|
1218
|
+
.icon-repeat {
|
1225
1219
|
background-position: -216px -24px;
|
1226
1220
|
}
|
1227
|
-
.icon
|
1221
|
+
.icon-refresh {
|
1228
1222
|
background-position: -240px -24px;
|
1229
1223
|
}
|
1230
|
-
.icon
|
1224
|
+
.icon-list-alt {
|
1231
1225
|
background-position: -264px -24px;
|
1232
1226
|
}
|
1233
|
-
.icon
|
1227
|
+
.icon-lock {
|
1234
1228
|
background-position: -287px -24px;
|
1235
1229
|
}
|
1236
|
-
.icon
|
1230
|
+
.icon-flag {
|
1237
1231
|
background-position: -312px -24px;
|
1238
1232
|
}
|
1239
|
-
.icon
|
1233
|
+
.icon-headphones {
|
1240
1234
|
background-position: -336px -24px;
|
1241
1235
|
}
|
1242
|
-
.icon
|
1236
|
+
.icon-volume-off {
|
1243
1237
|
background-position: -360px -24px;
|
1244
1238
|
}
|
1245
|
-
.icon
|
1239
|
+
.icon-volume-down {
|
1246
1240
|
background-position: -384px -24px;
|
1247
1241
|
}
|
1248
|
-
.icon
|
1242
|
+
.icon-volume-up {
|
1249
1243
|
background-position: -408px -24px;
|
1250
1244
|
}
|
1251
|
-
.icon
|
1245
|
+
.icon-qrcode {
|
1252
1246
|
background-position: -432px -24px;
|
1253
1247
|
}
|
1254
|
-
.icon
|
1248
|
+
.icon-barcode {
|
1255
1249
|
background-position: -456px -24px;
|
1256
1250
|
}
|
1257
|
-
.icon
|
1251
|
+
.icon-tag {
|
1258
1252
|
background-position: 0 -48px;
|
1259
1253
|
}
|
1260
|
-
.icon
|
1254
|
+
.icon-tags {
|
1261
1255
|
background-position: -25px -48px;
|
1262
1256
|
}
|
1263
|
-
.icon
|
1257
|
+
.icon-book {
|
1264
1258
|
background-position: -48px -48px;
|
1265
1259
|
}
|
1266
|
-
.icon
|
1260
|
+
.icon-bookmark {
|
1267
1261
|
background-position: -72px -48px;
|
1268
1262
|
}
|
1269
|
-
.icon
|
1263
|
+
.icon-print {
|
1270
1264
|
background-position: -96px -48px;
|
1271
1265
|
}
|
1272
|
-
.icon
|
1266
|
+
.icon-camera {
|
1273
1267
|
background-position: -120px -48px;
|
1274
1268
|
}
|
1275
|
-
.icon
|
1269
|
+
.icon-font {
|
1276
1270
|
background-position: -144px -48px;
|
1277
1271
|
}
|
1278
|
-
.icon
|
1272
|
+
.icon-bold {
|
1279
1273
|
background-position: -167px -48px;
|
1280
1274
|
}
|
1281
|
-
.icon
|
1275
|
+
.icon-italic {
|
1282
1276
|
background-position: -192px -48px;
|
1283
1277
|
}
|
1284
|
-
.icon
|
1278
|
+
.icon-text-height {
|
1285
1279
|
background-position: -216px -48px;
|
1286
1280
|
}
|
1287
|
-
.icon
|
1281
|
+
.icon-text-width {
|
1288
1282
|
background-position: -240px -48px;
|
1289
1283
|
}
|
1290
|
-
.icon
|
1284
|
+
.icon-align-left {
|
1291
1285
|
background-position: -264px -48px;
|
1292
1286
|
}
|
1293
|
-
.icon
|
1287
|
+
.icon-align-center {
|
1294
1288
|
background-position: -288px -48px;
|
1295
1289
|
}
|
1296
|
-
.icon
|
1290
|
+
.icon-align-right {
|
1297
1291
|
background-position: -312px -48px;
|
1298
1292
|
}
|
1299
|
-
.icon
|
1293
|
+
.icon-align-justify {
|
1300
1294
|
background-position: -336px -48px;
|
1301
1295
|
}
|
1302
|
-
.icon
|
1296
|
+
.icon-list {
|
1303
1297
|
background-position: -360px -48px;
|
1304
1298
|
}
|
1305
|
-
.icon
|
1299
|
+
.icon-indent-left {
|
1306
1300
|
background-position: -384px -48px;
|
1307
1301
|
}
|
1308
|
-
.icon
|
1302
|
+
.icon-indent-right {
|
1309
1303
|
background-position: -408px -48px;
|
1310
1304
|
}
|
1311
|
-
.icon
|
1305
|
+
.icon-facetime-video {
|
1312
1306
|
background-position: -432px -48px;
|
1313
1307
|
}
|
1314
|
-
.icon
|
1308
|
+
.icon-picture {
|
1315
1309
|
background-position: -456px -48px;
|
1316
1310
|
}
|
1317
|
-
.icon
|
1311
|
+
.icon-pencil {
|
1318
1312
|
background-position: 0 -72px;
|
1319
1313
|
}
|
1320
|
-
.icon
|
1314
|
+
.icon-map-marker {
|
1321
1315
|
background-position: -24px -72px;
|
1322
1316
|
}
|
1323
|
-
.icon
|
1317
|
+
.icon-adjust {
|
1324
1318
|
background-position: -48px -72px;
|
1325
1319
|
}
|
1326
|
-
.icon
|
1320
|
+
.icon-tint {
|
1327
1321
|
background-position: -72px -72px;
|
1328
1322
|
}
|
1329
|
-
.icon
|
1323
|
+
.icon-edit {
|
1330
1324
|
background-position: -96px -72px;
|
1331
1325
|
}
|
1332
|
-
.icon
|
1326
|
+
.icon-share {
|
1333
1327
|
background-position: -120px -72px;
|
1334
1328
|
}
|
1335
|
-
.icon
|
1329
|
+
.icon-check {
|
1336
1330
|
background-position: -144px -72px;
|
1337
1331
|
}
|
1338
|
-
.icon
|
1332
|
+
.icon-move {
|
1339
1333
|
background-position: -168px -72px;
|
1340
1334
|
}
|
1341
|
-
.icon
|
1335
|
+
.icon-step-backward {
|
1342
1336
|
background-position: -192px -72px;
|
1343
1337
|
}
|
1344
|
-
.icon
|
1338
|
+
.icon-fast-backward {
|
1345
1339
|
background-position: -216px -72px;
|
1346
1340
|
}
|
1347
|
-
.icon
|
1341
|
+
.icon-backward {
|
1348
1342
|
background-position: -240px -72px;
|
1349
1343
|
}
|
1350
|
-
.icon
|
1344
|
+
.icon-play {
|
1351
1345
|
background-position: -264px -72px;
|
1352
1346
|
}
|
1353
|
-
.icon
|
1347
|
+
.icon-pause {
|
1354
1348
|
background-position: -288px -72px;
|
1355
1349
|
}
|
1356
|
-
.icon
|
1350
|
+
.icon-stop {
|
1357
1351
|
background-position: -312px -72px;
|
1358
1352
|
}
|
1359
|
-
.icon
|
1353
|
+
.icon-forward {
|
1360
1354
|
background-position: -336px -72px;
|
1361
1355
|
}
|
1362
|
-
.icon
|
1356
|
+
.icon-fast-forward {
|
1363
1357
|
background-position: -360px -72px;
|
1364
1358
|
}
|
1365
|
-
.icon
|
1359
|
+
.icon-step-forward {
|
1366
1360
|
background-position: -384px -72px;
|
1367
1361
|
}
|
1368
|
-
.icon
|
1362
|
+
.icon-eject {
|
1369
1363
|
background-position: -408px -72px;
|
1370
1364
|
}
|
1371
|
-
.icon
|
1365
|
+
.icon-chevron-left {
|
1372
1366
|
background-position: -432px -72px;
|
1373
1367
|
}
|
1374
|
-
.icon
|
1368
|
+
.icon-chevron-right {
|
1375
1369
|
background-position: -456px -72px;
|
1376
1370
|
}
|
1377
|
-
.icon
|
1371
|
+
.icon-plus-sign {
|
1378
1372
|
background-position: 0 -96px;
|
1379
1373
|
}
|
1380
|
-
.icon
|
1374
|
+
.icon-minus-sign {
|
1381
1375
|
background-position: -24px -96px;
|
1382
1376
|
}
|
1383
|
-
.icon
|
1377
|
+
.icon-remove-sign {
|
1384
1378
|
background-position: -48px -96px;
|
1385
1379
|
}
|
1386
|
-
.icon
|
1380
|
+
.icon-ok-sign {
|
1387
1381
|
background-position: -72px -96px;
|
1388
1382
|
}
|
1389
|
-
.icon
|
1383
|
+
.icon-question-sign {
|
1390
1384
|
background-position: -96px -96px;
|
1391
1385
|
}
|
1392
|
-
.icon
|
1386
|
+
.icon-info-sign {
|
1393
1387
|
background-position: -120px -96px;
|
1394
1388
|
}
|
1395
|
-
.icon
|
1389
|
+
.icon-screenshot {
|
1396
1390
|
background-position: -144px -96px;
|
1397
1391
|
}
|
1398
|
-
.icon
|
1392
|
+
.icon-remove-circle {
|
1399
1393
|
background-position: -168px -96px;
|
1400
1394
|
}
|
1401
|
-
.icon
|
1395
|
+
.icon-ok-circle {
|
1402
1396
|
background-position: -192px -96px;
|
1403
1397
|
}
|
1404
|
-
.icon
|
1398
|
+
.icon-ban-circle {
|
1405
1399
|
background-position: -216px -96px;
|
1406
1400
|
}
|
1407
|
-
.icon
|
1401
|
+
.icon-arrow-left {
|
1408
1402
|
background-position: -240px -96px;
|
1409
1403
|
}
|
1410
|
-
.icon
|
1404
|
+
.icon-arrow-right {
|
1411
1405
|
background-position: -264px -96px;
|
1412
1406
|
}
|
1413
|
-
.icon
|
1407
|
+
.icon-arrow-up {
|
1414
1408
|
background-position: -289px -96px;
|
1415
1409
|
}
|
1416
|
-
.icon
|
1410
|
+
.icon-arrow-down {
|
1417
1411
|
background-position: -312px -96px;
|
1418
1412
|
}
|
1419
|
-
.icon
|
1413
|
+
.icon-share-alt {
|
1420
1414
|
background-position: -336px -96px;
|
1421
1415
|
}
|
1422
|
-
.icon
|
1416
|
+
.icon-resize-full {
|
1423
1417
|
background-position: -360px -96px;
|
1424
1418
|
}
|
1425
|
-
.icon
|
1419
|
+
.icon-resize-small {
|
1426
1420
|
background-position: -384px -96px;
|
1427
1421
|
}
|
1428
|
-
.icon
|
1422
|
+
.icon-plus {
|
1429
1423
|
background-position: -408px -96px;
|
1430
1424
|
}
|
1431
|
-
.icon
|
1425
|
+
.icon-minus {
|
1432
1426
|
background-position: -433px -96px;
|
1433
1427
|
}
|
1434
|
-
.icon
|
1428
|
+
.icon-asterisk {
|
1435
1429
|
background-position: -456px -96px;
|
1436
1430
|
}
|
1437
|
-
.icon
|
1431
|
+
.icon-exclamation-sign {
|
1438
1432
|
background-position: 0 -120px;
|
1439
1433
|
}
|
1440
|
-
.icon
|
1434
|
+
.icon-gift {
|
1441
1435
|
background-position: -24px -120px;
|
1442
1436
|
}
|
1443
|
-
.icon
|
1437
|
+
.icon-leaf {
|
1444
1438
|
background-position: -48px -120px;
|
1445
1439
|
}
|
1446
|
-
.icon
|
1440
|
+
.icon-fire {
|
1447
1441
|
background-position: -72px -120px;
|
1448
1442
|
}
|
1449
|
-
.icon
|
1443
|
+
.icon-eye-open {
|
1450
1444
|
background-position: -96px -120px;
|
1451
1445
|
}
|
1452
|
-
.icon
|
1446
|
+
.icon-eye-close {
|
1453
1447
|
background-position: -120px -120px;
|
1454
1448
|
}
|
1455
|
-
.icon
|
1449
|
+
.icon-warning-sign {
|
1456
1450
|
background-position: -144px -120px;
|
1457
1451
|
}
|
1458
|
-
.icon
|
1452
|
+
.icon-plane {
|
1459
1453
|
background-position: -168px -120px;
|
1460
1454
|
}
|
1461
|
-
.icon
|
1455
|
+
.icon-calendar {
|
1462
1456
|
background-position: -192px -120px;
|
1463
1457
|
}
|
1464
|
-
.icon
|
1458
|
+
.icon-random {
|
1465
1459
|
background-position: -216px -120px;
|
1466
1460
|
}
|
1467
|
-
.icon
|
1461
|
+
.icon-comment {
|
1468
1462
|
background-position: -240px -120px;
|
1469
1463
|
}
|
1470
|
-
.icon
|
1464
|
+
.icon-magnet {
|
1471
1465
|
background-position: -264px -120px;
|
1472
1466
|
}
|
1473
|
-
.icon
|
1467
|
+
.icon-chevron-up {
|
1474
1468
|
background-position: -288px -120px;
|
1475
1469
|
}
|
1476
|
-
.icon
|
1470
|
+
.icon-chevron-down {
|
1477
1471
|
background-position: -313px -119px;
|
1478
1472
|
}
|
1479
|
-
.icon
|
1473
|
+
.icon-retweet {
|
1480
1474
|
background-position: -336px -120px;
|
1481
1475
|
}
|
1482
|
-
.icon
|
1476
|
+
.icon-shopping-cart {
|
1483
1477
|
background-position: -360px -120px;
|
1484
1478
|
}
|
1485
|
-
.icon
|
1479
|
+
.icon-folder-close {
|
1486
1480
|
background-position: -384px -120px;
|
1487
1481
|
}
|
1488
|
-
.icon
|
1482
|
+
.icon-folder-open {
|
1489
1483
|
background-position: -408px -120px;
|
1490
1484
|
}
|
1491
|
-
.icon
|
1485
|
+
.icon-resize-vertical {
|
1492
1486
|
background-position: -432px -119px;
|
1493
1487
|
}
|
1494
|
-
.icon
|
1488
|
+
.icon-resize-horizontal {
|
1495
1489
|
background-position: -456px -118px;
|
1496
1490
|
}
|
1497
1491
|
.dropdown {
|
@@ -1659,119 +1653,6 @@ table .span12 {
|
|
1659
1653
|
filter: alpha(opacity=40);
|
1660
1654
|
cursor: pointer;
|
1661
1655
|
}
|
1662
|
-
.btn.primary,
|
1663
|
-
.btn.primary:hover,
|
1664
|
-
.btn.danger,
|
1665
|
-
.btn.danger:hover,
|
1666
|
-
.btn.success,
|
1667
|
-
.btn.success:hover,
|
1668
|
-
.btn.info,
|
1669
|
-
.btn.info:hover {
|
1670
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1671
|
-
color: #ffffff;
|
1672
|
-
}
|
1673
|
-
.btn.primary.active,
|
1674
|
-
.btn.danger.active,
|
1675
|
-
.btn.success.active,
|
1676
|
-
.btn.info.active {
|
1677
|
-
color: rgba(255, 255, 255, 0.75);
|
1678
|
-
}
|
1679
|
-
.btn.primary {
|
1680
|
-
background-color: #006dcc;
|
1681
|
-
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
1682
|
-
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
1683
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
1684
|
-
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
1685
|
-
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
1686
|
-
background-image: linear-gradient(top, #0088cc, #0044cc);
|
1687
|
-
background-repeat: repeat-x;
|
1688
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
1689
|
-
border-color: #0044cc #0044cc #002a80;
|
1690
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1691
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1692
|
-
}
|
1693
|
-
.btn.primary:hover,
|
1694
|
-
.btn.primary:active,
|
1695
|
-
.btn.primary.active,
|
1696
|
-
.btn.primary.disabled,
|
1697
|
-
.btn.primary[disabled] {
|
1698
|
-
background-color: #0044cc;
|
1699
|
-
}
|
1700
|
-
.btn.primary:active, .btn.primary.active {
|
1701
|
-
background-color: #003399 \9;
|
1702
|
-
}
|
1703
|
-
.btn.danger {
|
1704
|
-
background-color: #da4f49;
|
1705
|
-
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
|
1706
|
-
background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
|
1707
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
|
1708
|
-
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
|
1709
|
-
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
|
1710
|
-
background-image: linear-gradient(top, #ee5f5b, #bd362f);
|
1711
|
-
background-repeat: repeat-x;
|
1712
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
|
1713
|
-
border-color: #bd362f #bd362f #802420;
|
1714
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1715
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1716
|
-
}
|
1717
|
-
.btn.danger:hover,
|
1718
|
-
.btn.danger:active,
|
1719
|
-
.btn.danger.active,
|
1720
|
-
.btn.danger.disabled,
|
1721
|
-
.btn.danger[disabled] {
|
1722
|
-
background-color: #bd362f;
|
1723
|
-
}
|
1724
|
-
.btn.danger:active, .btn.danger.active {
|
1725
|
-
background-color: #942a25 \9;
|
1726
|
-
}
|
1727
|
-
.btn.success {
|
1728
|
-
background-color: #5bb75b;
|
1729
|
-
background-image: -moz-linear-gradient(top, #62c462, #51a351);
|
1730
|
-
background-image: -ms-linear-gradient(top, #62c462, #51a351);
|
1731
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
|
1732
|
-
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
|
1733
|
-
background-image: -o-linear-gradient(top, #62c462, #51a351);
|
1734
|
-
background-image: linear-gradient(top, #62c462, #51a351);
|
1735
|
-
background-repeat: repeat-x;
|
1736
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
|
1737
|
-
border-color: #51a351 #51a351 #387038;
|
1738
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1739
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1740
|
-
}
|
1741
|
-
.btn.success:hover,
|
1742
|
-
.btn.success:active,
|
1743
|
-
.btn.success.active,
|
1744
|
-
.btn.success.disabled,
|
1745
|
-
.btn.success[disabled] {
|
1746
|
-
background-color: #51a351;
|
1747
|
-
}
|
1748
|
-
.btn.success:active, .btn.success.active {
|
1749
|
-
background-color: #408140 \9;
|
1750
|
-
}
|
1751
|
-
.btn.info {
|
1752
|
-
background-color: #49afcd;
|
1753
|
-
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
|
1754
|
-
background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
|
1755
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
|
1756
|
-
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
|
1757
|
-
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
|
1758
|
-
background-image: linear-gradient(top, #5bc0de, #2f96b4);
|
1759
|
-
background-repeat: repeat-x;
|
1760
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
|
1761
|
-
border-color: #2f96b4 #2f96b4 #1f6377;
|
1762
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1763
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1764
|
-
}
|
1765
|
-
.btn.info:hover,
|
1766
|
-
.btn.info:active,
|
1767
|
-
.btn.info.active,
|
1768
|
-
.btn.info.disabled,
|
1769
|
-
.btn.info[disabled] {
|
1770
|
-
background-color: #2f96b4;
|
1771
|
-
}
|
1772
|
-
.btn.info:active, .btn.info.active {
|
1773
|
-
background-color: #24748c \9;
|
1774
|
-
}
|
1775
1656
|
.btn {
|
1776
1657
|
display: inline-block;
|
1777
1658
|
padding: 4px 10px 4px;
|
@@ -1839,7 +1720,7 @@ table .span12 {
|
|
1839
1720
|
-moz-box-shadow: none;
|
1840
1721
|
box-shadow: none;
|
1841
1722
|
}
|
1842
|
-
.btn
|
1723
|
+
.btn-large {
|
1843
1724
|
padding: 9px 14px;
|
1844
1725
|
font-size: 15px;
|
1845
1726
|
line-height: normal;
|
@@ -1847,17 +1728,157 @@ table .span12 {
|
|
1847
1728
|
-moz-border-radius: 5px;
|
1848
1729
|
border-radius: 5px;
|
1849
1730
|
}
|
1850
|
-
.btn
|
1731
|
+
.btn-large .icon {
|
1851
1732
|
margin-top: 1px;
|
1852
1733
|
}
|
1853
|
-
.btn
|
1734
|
+
.btn-small {
|
1854
1735
|
padding: 5px 9px;
|
1855
1736
|
font-size: 11px;
|
1856
1737
|
line-height: 16px;
|
1857
1738
|
}
|
1858
|
-
.btn
|
1739
|
+
.btn-small .icon {
|
1859
1740
|
margin-top: -1px;
|
1860
1741
|
}
|
1742
|
+
.btn-primary,
|
1743
|
+
.btn-primary:hover,
|
1744
|
+
.btn-warning,
|
1745
|
+
.btn-warning:hover,
|
1746
|
+
.btn-danger,
|
1747
|
+
.btn-danger:hover,
|
1748
|
+
.btn-success,
|
1749
|
+
.btn-success:hover,
|
1750
|
+
.btn-info,
|
1751
|
+
.btn-info:hover {
|
1752
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1753
|
+
color: #ffffff;
|
1754
|
+
}
|
1755
|
+
.btn-primary.active,
|
1756
|
+
.btn-warning.active,
|
1757
|
+
.btn-danger.active,
|
1758
|
+
.btn-success.active,
|
1759
|
+
.btn-info.active {
|
1760
|
+
color: rgba(255, 255, 255, 0.75);
|
1761
|
+
}
|
1762
|
+
.btn-primary {
|
1763
|
+
background-color: #006dcc;
|
1764
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
1765
|
+
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
1766
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
1767
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
1768
|
+
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
1769
|
+
background-image: linear-gradient(top, #0088cc, #0044cc);
|
1770
|
+
background-repeat: repeat-x;
|
1771
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
1772
|
+
border-color: #0044cc #0044cc #002a80;
|
1773
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1774
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1775
|
+
}
|
1776
|
+
.btn-primary:hover,
|
1777
|
+
.btn-primary:active,
|
1778
|
+
.btn-primary.active,
|
1779
|
+
.btn-primary.disabled,
|
1780
|
+
.btn-primary[disabled] {
|
1781
|
+
background-color: #0044cc;
|
1782
|
+
}
|
1783
|
+
.btn-primary:active, .btn-primary.active {
|
1784
|
+
background-color: #003399 \9;
|
1785
|
+
}
|
1786
|
+
.btn-warning {
|
1787
|
+
background-color: #faa732;
|
1788
|
+
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
|
1789
|
+
background-image: -ms-linear-gradient(top, #fbb450, #f89406);
|
1790
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
|
1791
|
+
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
|
1792
|
+
background-image: -o-linear-gradient(top, #fbb450, #f89406);
|
1793
|
+
background-image: linear-gradient(top, #fbb450, #f89406);
|
1794
|
+
background-repeat: repeat-x;
|
1795
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
|
1796
|
+
border-color: #f89406 #f89406 #ad6704;
|
1797
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1798
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1799
|
+
}
|
1800
|
+
.btn-warning:hover,
|
1801
|
+
.btn-warning:active,
|
1802
|
+
.btn-warning.active,
|
1803
|
+
.btn-warning.disabled,
|
1804
|
+
.btn-warning[disabled] {
|
1805
|
+
background-color: #f89406;
|
1806
|
+
}
|
1807
|
+
.btn-warning:active, .btn-warning.active {
|
1808
|
+
background-color: #c67605 \9;
|
1809
|
+
}
|
1810
|
+
.btn-danger {
|
1811
|
+
background-color: #da4f49;
|
1812
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
|
1813
|
+
background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
|
1814
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
|
1815
|
+
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
|
1816
|
+
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
|
1817
|
+
background-image: linear-gradient(top, #ee5f5b, #bd362f);
|
1818
|
+
background-repeat: repeat-x;
|
1819
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
|
1820
|
+
border-color: #bd362f #bd362f #802420;
|
1821
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1822
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1823
|
+
}
|
1824
|
+
.btn-danger:hover,
|
1825
|
+
.btn-danger:active,
|
1826
|
+
.btn-danger.active,
|
1827
|
+
.btn-danger.disabled,
|
1828
|
+
.btn-danger[disabled] {
|
1829
|
+
background-color: #bd362f;
|
1830
|
+
}
|
1831
|
+
.btn-danger:active, .btn-danger.active {
|
1832
|
+
background-color: #942a25 \9;
|
1833
|
+
}
|
1834
|
+
.btn-success {
|
1835
|
+
background-color: #5bb75b;
|
1836
|
+
background-image: -moz-linear-gradient(top, #62c462, #51a351);
|
1837
|
+
background-image: -ms-linear-gradient(top, #62c462, #51a351);
|
1838
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
|
1839
|
+
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
|
1840
|
+
background-image: -o-linear-gradient(top, #62c462, #51a351);
|
1841
|
+
background-image: linear-gradient(top, #62c462, #51a351);
|
1842
|
+
background-repeat: repeat-x;
|
1843
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
|
1844
|
+
border-color: #51a351 #51a351 #387038;
|
1845
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1846
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1847
|
+
}
|
1848
|
+
.btn-success:hover,
|
1849
|
+
.btn-success:active,
|
1850
|
+
.btn-success.active,
|
1851
|
+
.btn-success.disabled,
|
1852
|
+
.btn-success[disabled] {
|
1853
|
+
background-color: #51a351;
|
1854
|
+
}
|
1855
|
+
.btn-success:active, .btn-success.active {
|
1856
|
+
background-color: #408140 \9;
|
1857
|
+
}
|
1858
|
+
.btn-info {
|
1859
|
+
background-color: #49afcd;
|
1860
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
|
1861
|
+
background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
|
1862
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
|
1863
|
+
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
|
1864
|
+
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
|
1865
|
+
background-image: linear-gradient(top, #5bc0de, #2f96b4);
|
1866
|
+
background-repeat: repeat-x;
|
1867
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
|
1868
|
+
border-color: #2f96b4 #2f96b4 #1f6377;
|
1869
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1870
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1871
|
+
}
|
1872
|
+
.btn-info:hover,
|
1873
|
+
.btn-info:active,
|
1874
|
+
.btn-info.active,
|
1875
|
+
.btn-info.disabled,
|
1876
|
+
.btn-info[disabled] {
|
1877
|
+
background-color: #2f96b4;
|
1878
|
+
}
|
1879
|
+
.btn-info:active, .btn-info.active {
|
1880
|
+
background-color: #24748c \9;
|
1881
|
+
}
|
1861
1882
|
button.btn, input[type="submit"].btn {
|
1862
1883
|
*padding-top: 2px;
|
1863
1884
|
*padding-bottom: 2px;
|
@@ -1987,15 +2008,15 @@ button.btn.small, input[type="submit"].btn.small {
|
|
1987
2008
|
opacity: 1;
|
1988
2009
|
filter: alpha(opacity=100);
|
1989
2010
|
}
|
1990
|
-
.primary .caret,
|
1991
|
-
.danger .caret,
|
1992
|
-
.info .caret,
|
1993
|
-
.success .caret {
|
2011
|
+
.btn-primary .caret,
|
2012
|
+
.btn-danger .caret,
|
2013
|
+
.btn-info .caret,
|
2014
|
+
.btn-success .caret {
|
1994
2015
|
border-top-color: #ffffff;
|
1995
2016
|
opacity: 0.75;
|
1996
2017
|
filter: alpha(opacity=75);
|
1997
2018
|
}
|
1998
|
-
.btn
|
2019
|
+
.btn-small .caret {
|
1999
2020
|
margin-top: 4px;
|
2000
2021
|
}
|
2001
2022
|
.alert {
|
@@ -2063,65 +2084,65 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2063
2084
|
text-decoration: none;
|
2064
2085
|
background-color: #eeeeee;
|
2065
2086
|
}
|
2066
|
-
.nav
|
2087
|
+
.nav-list {
|
2067
2088
|
padding-left: 14px;
|
2068
2089
|
padding-right: 14px;
|
2069
2090
|
margin-bottom: 0;
|
2070
2091
|
}
|
2071
|
-
.nav
|
2092
|
+
.nav-list > li > a, .nav-list .nav-header {
|
2072
2093
|
display: block;
|
2073
2094
|
padding: 3px 15px;
|
2074
2095
|
margin-left: -15px;
|
2075
2096
|
margin-right: -15px;
|
2076
2097
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2077
2098
|
}
|
2078
|
-
.nav
|
2099
|
+
.nav-list .nav-header {
|
2079
2100
|
font-size: 11px;
|
2080
2101
|
font-weight: bold;
|
2081
2102
|
line-height: 18px;
|
2082
2103
|
color: #999999;
|
2083
2104
|
text-transform: uppercase;
|
2084
2105
|
}
|
2085
|
-
.nav
|
2106
|
+
.nav-list > li + .nav-header {
|
2086
2107
|
margin-top: 9px;
|
2087
2108
|
}
|
2088
|
-
.nav
|
2109
|
+
.nav-list .active > a {
|
2089
2110
|
color: #ffffff;
|
2090
2111
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
2091
2112
|
background-color: #0088cc;
|
2092
2113
|
}
|
2093
|
-
.nav
|
2114
|
+
.nav-list .icon {
|
2094
2115
|
margin-right: 2px;
|
2095
2116
|
}
|
2096
|
-
.tabs, .pills {
|
2117
|
+
.nav-tabs, .nav-pills {
|
2097
2118
|
*zoom: 1;
|
2098
2119
|
}
|
2099
|
-
.tabs:before,
|
2100
|
-
.pills:before,
|
2101
|
-
.tabs:after,
|
2102
|
-
.pills:after {
|
2120
|
+
.nav-tabs:before,
|
2121
|
+
.nav-pills:before,
|
2122
|
+
.nav-tabs:after,
|
2123
|
+
.nav-pills:after {
|
2103
2124
|
display: table;
|
2104
2125
|
content: "";
|
2105
2126
|
}
|
2106
|
-
.tabs:after, .pills:after {
|
2127
|
+
.nav-tabs:after, .nav-pills:after {
|
2107
2128
|
clear: both;
|
2108
2129
|
}
|
2109
|
-
.tabs > li, .pills > li {
|
2130
|
+
.nav-tabs > li, .nav-pills > li {
|
2110
2131
|
float: left;
|
2111
2132
|
}
|
2112
|
-
.tabs > li > a, .pills > li > a {
|
2133
|
+
.nav-tabs > li > a, .nav-pills > li > a {
|
2113
2134
|
padding-right: 12px;
|
2114
2135
|
padding-left: 12px;
|
2115
2136
|
margin-right: 2px;
|
2116
2137
|
line-height: 14px;
|
2117
2138
|
}
|
2118
|
-
.tabs {
|
2139
|
+
.nav-tabs {
|
2119
2140
|
border-bottom: 1px solid #ddd;
|
2120
2141
|
}
|
2121
|
-
.tabs > li {
|
2142
|
+
.nav-tabs > li {
|
2122
2143
|
margin-bottom: -1px;
|
2123
2144
|
}
|
2124
|
-
.tabs > li > a {
|
2145
|
+
.nav-tabs > li > a {
|
2125
2146
|
padding-top: 9px;
|
2126
2147
|
padding-bottom: 9px;
|
2127
2148
|
border: 1px solid transparent;
|
@@ -2129,17 +2150,17 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2129
2150
|
-moz-border-radius: 4px 4px 0 0;
|
2130
2151
|
border-radius: 4px 4px 0 0;
|
2131
2152
|
}
|
2132
|
-
.tabs > li > a:hover {
|
2153
|
+
.nav-tabs > li > a:hover {
|
2133
2154
|
border-color: #eeeeee #eeeeee #dddddd;
|
2134
2155
|
}
|
2135
|
-
.tabs > .active > a, .tabs > .active > a:hover {
|
2156
|
+
.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
|
2136
2157
|
color: #555555;
|
2137
2158
|
background-color: #ffffff;
|
2138
2159
|
border: 1px solid #ddd;
|
2139
2160
|
border-bottom-color: transparent;
|
2140
2161
|
cursor: default;
|
2141
2162
|
}
|
2142
|
-
.pills > li > a {
|
2163
|
+
.nav-pills > li > a {
|
2143
2164
|
padding-top: 8px;
|
2144
2165
|
padding-bottom: 8px;
|
2145
2166
|
margin-top: 2px;
|
@@ -2148,69 +2169,69 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2148
2169
|
-moz-border-radius: 5px;
|
2149
2170
|
border-radius: 5px;
|
2150
2171
|
}
|
2151
|
-
.pills .active > a, .pills .active > a:hover {
|
2172
|
+
.nav-pills .active > a, .nav-pills .active > a:hover {
|
2152
2173
|
color: #ffffff;
|
2153
2174
|
background-color: #0088cc;
|
2154
2175
|
}
|
2155
|
-
.nav
|
2176
|
+
.nav-stacked > li {
|
2156
2177
|
float: none;
|
2157
2178
|
}
|
2158
|
-
.nav
|
2179
|
+
.nav-stacked > li > a {
|
2159
2180
|
margin-right: 0;
|
2160
2181
|
}
|
2161
|
-
.tabs.stacked {
|
2182
|
+
.nav-tabs.nav-stacked {
|
2162
2183
|
border-bottom: 0;
|
2163
2184
|
}
|
2164
|
-
.tabs.stacked > li > a {
|
2185
|
+
.nav-tabs.nav-stacked > li > a {
|
2165
2186
|
border: 1px solid #ddd;
|
2166
2187
|
-webkit-border-radius: 0;
|
2167
2188
|
-moz-border-radius: 0;
|
2168
2189
|
border-radius: 0;
|
2169
2190
|
}
|
2170
|
-
.tabs.stacked > li:first-child > a {
|
2191
|
+
.nav-tabs.nav-stacked > li:first-child > a {
|
2171
2192
|
-webkit-border-radius: 4px 4px 0 0;
|
2172
2193
|
-moz-border-radius: 4px 4px 0 0;
|
2173
2194
|
border-radius: 4px 4px 0 0;
|
2174
2195
|
}
|
2175
|
-
.tabs.stacked > li:last-child > a {
|
2196
|
+
.nav-tabs.nav-stacked > li:last-child > a {
|
2176
2197
|
-webkit-border-radius: 0 0 4px 4px;
|
2177
2198
|
-moz-border-radius: 0 0 4px 4px;
|
2178
2199
|
border-radius: 0 0 4px 4px;
|
2179
2200
|
}
|
2180
|
-
.tabs.stacked > li > a:hover {
|
2201
|
+
.nav-tabs.nav-stacked > li > a:hover {
|
2181
2202
|
border-color: #ddd;
|
2182
2203
|
z-index: 2;
|
2183
2204
|
}
|
2184
|
-
.pills.stacked > li > a {
|
2205
|
+
.nav-pills.nav-stacked > li > a {
|
2185
2206
|
margin-bottom: 3px;
|
2186
2207
|
}
|
2187
|
-
.pills.stacked > li:last-child > a {
|
2208
|
+
.nav-pills.nav-stacked > li:last-child > a {
|
2188
2209
|
margin-bottom: 1px;
|
2189
2210
|
}
|
2190
|
-
.
|
2211
|
+
.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu {
|
2191
2212
|
margin-top: 1px;
|
2192
2213
|
border-width: 1px;
|
2193
2214
|
}
|
2194
|
-
.pills .dropdown-menu {
|
2215
|
+
.nav-pills .dropdown-menu {
|
2195
2216
|
-webkit-border-radius: 4px;
|
2196
2217
|
-moz-border-radius: 4px;
|
2197
2218
|
border-radius: 4px;
|
2198
2219
|
}
|
2199
|
-
.tabs .dropdown-toggle .caret, .pills .dropdown-toggle .caret {
|
2220
|
+
.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret {
|
2200
2221
|
border-top-color: #0088cc;
|
2201
2222
|
margin-top: 6px;
|
2202
2223
|
}
|
2203
|
-
.tabs .dropdown-toggle:hover .caret, .pills .dropdown-toggle:hover .caret {
|
2224
|
+
.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret {
|
2204
2225
|
border-top-color: #005580;
|
2205
2226
|
}
|
2206
|
-
.tabs .active .dropdown-toggle .caret, .pills .active .dropdown-toggle .caret {
|
2227
|
+
.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret {
|
2207
2228
|
border-top-color: #333333;
|
2208
2229
|
}
|
2209
2230
|
.nav > .dropdown.active > a:hover {
|
2210
2231
|
color: #000000;
|
2211
2232
|
cursor: pointer;
|
2212
2233
|
}
|
2213
|
-
.tabs .open .dropdown-toggle, .pills .open .dropdown-toggle, .nav > .open.active > a:hover {
|
2234
|
+
.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
|
2214
2235
|
color: #ffffff;
|
2215
2236
|
background-color: #999999;
|
2216
2237
|
border-color: #999999;
|
@@ -2220,7 +2241,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2220
2241
|
opacity: 1;
|
2221
2242
|
filter: alpha(opacity=100);
|
2222
2243
|
}
|
2223
|
-
.tabs
|
2244
|
+
.tabs-stacked .open > a:hover {
|
2224
2245
|
border-color: #999999;
|
2225
2246
|
}
|
2226
2247
|
.tabbable {
|
@@ -2233,7 +2254,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2233
2254
|
.tabbable:after {
|
2234
2255
|
clear: both;
|
2235
2256
|
}
|
2236
|
-
.tabs-below .tabs, .tabs-right .tabs, .tabs-left .tabs {
|
2257
|
+
.tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs {
|
2237
2258
|
border-bottom: 0;
|
2238
2259
|
}
|
2239
2260
|
.tab-content > .tab-pane, .pill-content > .pill-pane {
|
@@ -2242,66 +2263,66 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2242
2263
|
.tab-content > .active, .pill-content > .active {
|
2243
2264
|
display: block;
|
2244
2265
|
}
|
2245
|
-
.tabs-below .tabs {
|
2266
|
+
.tabs-below .nav-tabs {
|
2246
2267
|
border-top: 1px solid #ddd;
|
2247
2268
|
}
|
2248
|
-
.tabs-below .tabs > li {
|
2269
|
+
.tabs-below .nav-tabs > li {
|
2249
2270
|
margin-top: -1px;
|
2250
2271
|
margin-bottom: 0;
|
2251
2272
|
}
|
2252
|
-
.tabs-below .tabs > li > a {
|
2273
|
+
.tabs-below .nav-tabs > li > a {
|
2253
2274
|
-webkit-border-radius: 0 0 4px 4px;
|
2254
2275
|
-moz-border-radius: 0 0 4px 4px;
|
2255
2276
|
border-radius: 0 0 4px 4px;
|
2256
2277
|
}
|
2257
|
-
.tabs-below .tabs > li > a:hover {
|
2278
|
+
.tabs-below .nav-tabs > li > a:hover {
|
2258
2279
|
border-bottom-color: transparent;
|
2259
2280
|
border-top-color: #ddd;
|
2260
2281
|
}
|
2261
|
-
.tabs-below .tabs .active > a, .tabs-below .tabs .active > a:hover {
|
2282
|
+
.tabs-below .nav-tabs .active > a, .tabs-below .nav-tabs .active > a:hover {
|
2262
2283
|
border-color: transparent #ddd #ddd #ddd;
|
2263
2284
|
}
|
2264
|
-
.tabs-left .tabs > li, .tabs-right .tabs > li {
|
2285
|
+
.tabs-left .nav-tabs > li, .tabs-right .nav-tabs > li {
|
2265
2286
|
float: none;
|
2266
2287
|
}
|
2267
|
-
.tabs-left .tabs > li > a, .tabs-right .tabs > li > a {
|
2288
|
+
.tabs-left .nav-tabs > li > a, .tabs-right .nav-tabs > li > a {
|
2268
2289
|
min-width: 74px;
|
2269
2290
|
margin-right: 0;
|
2270
2291
|
margin-bottom: 3px;
|
2271
2292
|
}
|
2272
|
-
.tabs-left .tabs {
|
2293
|
+
.tabs-left .nav-tabs {
|
2273
2294
|
float: left;
|
2274
2295
|
margin-right: 19px;
|
2275
2296
|
border-right: 1px solid #ddd;
|
2276
2297
|
}
|
2277
|
-
.tabs-left .tabs > li > a {
|
2298
|
+
.tabs-left .nav-tabs > li > a {
|
2278
2299
|
margin-right: -1px;
|
2279
2300
|
-webkit-border-radius: 4px 0 0 4px;
|
2280
2301
|
-moz-border-radius: 4px 0 0 4px;
|
2281
2302
|
border-radius: 4px 0 0 4px;
|
2282
2303
|
}
|
2283
|
-
.tabs-left .tabs > li > a:hover {
|
2304
|
+
.tabs-left .nav-tabs > li > a:hover {
|
2284
2305
|
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
|
2285
2306
|
}
|
2286
|
-
.tabs-left .tabs .active > a, .tabs-left .tabs .active > a:hover {
|
2307
|
+
.tabs-left .nav-tabs .active > a, .tabs-left .nav-tabs .active > a:hover {
|
2287
2308
|
border-color: #ddd transparent #ddd #ddd;
|
2288
2309
|
*border-right-color: #ffffff;
|
2289
2310
|
}
|
2290
|
-
.tabs-right .tabs {
|
2311
|
+
.tabs-right .nav-tabs {
|
2291
2312
|
float: right;
|
2292
2313
|
margin-left: 19px;
|
2293
2314
|
border-left: 1px solid #ddd;
|
2294
2315
|
}
|
2295
|
-
.tabs-right .tabs > li > a {
|
2316
|
+
.tabs-right .nav-tabs > li > a {
|
2296
2317
|
margin-left: -1px;
|
2297
2318
|
-webkit-border-radius: 0 4px 4px 0;
|
2298
2319
|
-moz-border-radius: 0 4px 4px 0;
|
2299
2320
|
border-radius: 0 4px 4px 0;
|
2300
2321
|
}
|
2301
|
-
.tabs-right .tabs > li > a:hover {
|
2322
|
+
.tabs-right .nav-tabs > li > a:hover {
|
2302
2323
|
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
|
2303
2324
|
}
|
2304
|
-
.tabs-right .tabs .active > a, .tabs-right .tabs .active > a:hover {
|
2325
|
+
.tabs-right .nav-tabs .active > a, .tabs-right .nav-tabs .active > a:hover {
|
2305
2326
|
border-color: #ddd #ddd #ddd transparent;
|
2306
2327
|
*border-left-color: #ffffff;
|
2307
2328
|
}
|
@@ -2360,7 +2381,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2360
2381
|
.btn-navbar:active, .btn-navbar.active {
|
2361
2382
|
background-color: #080808 \9;
|
2362
2383
|
}
|
2363
|
-
.btn-navbar .
|
2384
|
+
.btn-navbar .icon-bar {
|
2364
2385
|
display: block;
|
2365
2386
|
width: 18px;
|
2366
2387
|
height: 2px;
|
@@ -2372,11 +2393,11 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2372
2393
|
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
2373
2394
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
2374
2395
|
}
|
2375
|
-
.btn-navbar .
|
2396
|
+
.btn-navbar .icon-bar + .icon-bar {
|
2376
2397
|
margin-top: 3px;
|
2377
2398
|
}
|
2378
2399
|
.nav-collapse.collapse {
|
2379
|
-
height: auto
|
2400
|
+
height: auto;
|
2380
2401
|
}
|
2381
2402
|
.navbar .brand:hover {
|
2382
2403
|
text-decoration: none;
|
@@ -2408,6 +2429,14 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2408
2429
|
}
|
2409
2430
|
.navbar-form {
|
2410
2431
|
margin-bottom: 0;
|
2432
|
+
*zoom: 1;
|
2433
|
+
}
|
2434
|
+
.navbar-form:before, .navbar-form:after {
|
2435
|
+
display: table;
|
2436
|
+
content: "";
|
2437
|
+
}
|
2438
|
+
.navbar-form:after {
|
2439
|
+
clear: both;
|
2411
2440
|
}
|
2412
2441
|
.navbar-form input, .navbar-form select {
|
2413
2442
|
display: inline-block;
|
@@ -2515,10 +2544,10 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2515
2544
|
background-color: #222222;
|
2516
2545
|
background-color: rgba(0, 0, 0, 0.5);
|
2517
2546
|
}
|
2518
|
-
.navbar .vertical
|
2547
|
+
.navbar .divider-vertical {
|
2519
2548
|
height: 40px;
|
2520
2549
|
width: 1px;
|
2521
|
-
margin: 0
|
2550
|
+
margin: 0 9px;
|
2522
2551
|
overflow: hidden;
|
2523
2552
|
background-color: #222222;
|
2524
2553
|
border-right: 1px solid #333333;
|
@@ -2645,6 +2674,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2645
2674
|
}
|
2646
2675
|
.pagination .active a {
|
2647
2676
|
color: #999999;
|
2677
|
+
cursor: default;
|
2648
2678
|
}
|
2649
2679
|
.pagination .disabled a, .pagination .disabled a:hover {
|
2650
2680
|
color: #999999;
|
@@ -2687,12 +2717,17 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2687
2717
|
}
|
2688
2718
|
.pager a {
|
2689
2719
|
display: inline-block;
|
2690
|
-
padding:
|
2691
|
-
background-color: #
|
2720
|
+
padding: 5px 14px;
|
2721
|
+
background-color: #fff;
|
2722
|
+
border: 1px solid #ddd;
|
2692
2723
|
-webkit-border-radius: 15px;
|
2693
2724
|
-moz-border-radius: 15px;
|
2694
2725
|
border-radius: 15px;
|
2695
2726
|
}
|
2727
|
+
.pager a:hover {
|
2728
|
+
text-decoration: none;
|
2729
|
+
background-color: #f5f5f5;
|
2730
|
+
}
|
2696
2731
|
.pager .next a {
|
2697
2732
|
float: right;
|
2698
2733
|
}
|
@@ -2929,7 +2964,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2929
2964
|
width: 0;
|
2930
2965
|
height: 0;
|
2931
2966
|
}
|
2932
|
-
.popover
|
2967
|
+
.popover-inner {
|
2933
2968
|
padding: 3px;
|
2934
2969
|
width: 280px;
|
2935
2970
|
overflow: hidden;
|
@@ -2942,7 +2977,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2942
2977
|
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2943
2978
|
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2944
2979
|
}
|
2945
|
-
.popover
|
2980
|
+
.popover-title {
|
2946
2981
|
padding: 9px 15px;
|
2947
2982
|
line-height: 1;
|
2948
2983
|
background-color: #f5f5f5;
|
@@ -2951,7 +2986,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2951
2986
|
-moz-border-radius: 3px 3px 0 0;
|
2952
2987
|
border-radius: 3px 3px 0 0;
|
2953
2988
|
}
|
2954
|
-
.popover
|
2989
|
+
.popover-content {
|
2955
2990
|
padding: 14px;
|
2956
2991
|
background-color: #ffffff;
|
2957
2992
|
-webkit-border-radius: 0 0 3px 3px;
|
@@ -2961,7 +2996,7 @@ button.btn.small, input[type="submit"].btn.small {
|
|
2961
2996
|
-moz-background-clip: padding-box;
|
2962
2997
|
background-clip: padding-box;
|
2963
2998
|
}
|
2964
|
-
.popover
|
2999
|
+
.popover-content p, .popover-content ul, .popover-content ol {
|
2965
3000
|
margin-bottom: 0;
|
2966
3001
|
}
|
2967
3002
|
.thumbnails {
|
@@ -3102,7 +3137,7 @@ a.thumbnail:hover {
|
|
3102
3137
|
-o-transition: width 0.6s ease;
|
3103
3138
|
transition: width 0.6s ease;
|
3104
3139
|
}
|
3105
|
-
.progress
|
3140
|
+
.progress-striped .bar {
|
3106
3141
|
background-color: #62c462;
|
3107
3142
|
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));
|
3108
3143
|
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);
|
@@ -3203,6 +3238,7 @@ a.thumbnail:hover {
|
|
3203
3238
|
}
|
3204
3239
|
.carousel {
|
3205
3240
|
position: relative;
|
3241
|
+
margin-bottom: 18px;
|
3206
3242
|
line-height: 1;
|
3207
3243
|
}
|
3208
3244
|
.carousel-inner {
|