flatui-rails 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -21,7 +21,7 @@ Or install it yourself as:
21
21
 
22
22
  Add to your application.css
23
23
 
24
- *= require flat-ui/flat-ui
24
+ *= require flat-ui
25
25
 
26
26
  Add to your application.js
27
27
 
@@ -20,6 +20,7 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  spec.add_dependency "sass-rails", "~> 3.2.0"
22
22
  spec.add_dependency "railties", "~> 3.1"
23
+ spec.add_dependency "bootstrap-sass", "2.2.2"
23
24
 
24
25
  spec.add_development_dependency "bundler", "~> 1.3"
25
26
  spec.add_development_dependency "rake"
@@ -1,3 +1,4 @@
1
+ require "bootstrap-sass"
1
2
  require "flatui/rails/version"
2
3
 
3
4
  module Flatui
@@ -1,5 +1,5 @@
1
1
  module Flatui
2
2
  module Rails
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
5
5
  end
@@ -10,12 +10,12 @@
10
10
  */
11
11
  (function ($, window, document) {
12
12
 
13
- var ie6 = false;
13
+ var msVersion = navigator.userAgent.match(/MSIE ([0-9]{1,}[\.0-9]{0,})/),
14
+ msie = !!msVersion,
15
+ ie6 = msie && parseFloat(msVersion[1]) < 7;
14
16
 
15
17
  // Help prevent flashes of unstyled content
16
- if ($.browser.msie && $.browser.version.substr(0, 1) < 7) {
17
- ie6 = true;
18
- } else {
18
+ if (!ie6) {
19
19
  document.documentElement.className = document.documentElement.className + ' dk_fouc';
20
20
  }
21
21
 
@@ -350,7 +350,7 @@
350
350
  $(function () {
351
351
 
352
352
  // Handle click events on the dropdown toggler
353
- $('.dk_toggle').live('click', function (e) {
353
+ $(document).on('click', '.dk_toggle', function (e) {
354
354
  var $dk = $(this).parents('.dk_container').first();
355
355
 
356
356
  _openDropdown($dk);
@@ -365,7 +365,7 @@
365
365
  });
366
366
 
367
367
  // Handle click events on individual dropdown options
368
- $('.dk_options a').live(($.browser.msie ? 'mousedown' : 'click'), function (e) {
368
+ $(document).on((msie ? 'mousedown' : 'click'), '.dk_options a', function (e) {
369
369
  var
370
370
  $option = $(this),
371
371
  $dk = $option.parents('.dk_container').first(),
@@ -19,14 +19,16 @@ $(document).ready(function() {
19
19
  // Init tags input
20
20
  $("#tagsinput").tagsInput();
21
21
 
22
- // Init jQuery UI slider
23
- $("#slider").slider({
24
- min: 1,
25
- max: 5,
26
- value: 2,
27
- orientation: "horizontal",
28
- range: "min",
29
- });
22
+ // Init jQuery UI slider if #slider exists
23
+ if($('#slider').length > 0){
24
+ $("#slider").slider({
25
+ min: 1,
26
+ max: 5,
27
+ value: 2,
28
+ orientation: "horizontal",
29
+ range: "min",
30
+ });
31
+ }
30
32
 
31
33
  // JS input/textarea placeholder
32
34
  $("input, textarea").placeholder();
@@ -0,0 +1 @@
1
+ @import "flat-ui/flat-ui"
@@ -37,4 +37,3 @@
37
37
 
38
38
  // Spaces
39
39
  @import 'spaces'
40
-
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flatui-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-20 00:00:00.000000000 Z
12
+ date: 2013-03-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass-rails
@@ -43,6 +43,22 @@ dependencies:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
45
  version: '3.1'
46
+ - !ruby/object:Gem::Dependency
47
+ name: bootstrap-sass
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - '='
52
+ - !ruby/object:Gem::Version
53
+ version: 2.2.2
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 2.2.2
46
62
  - !ruby/object:Gem::Dependency
47
63
  name: bundler
48
64
  requirement: !ruby/object:Gem::Requirement
@@ -153,7 +169,7 @@ files:
153
169
  - vendor/assets/javascripts/bootstrap-tooltip.js
154
170
  - vendor/assets/javascripts/custom_checkbox_and_radio.js
155
171
  - vendor/assets/javascripts/custom_radio.js
156
- - vendor/assets/javascripts/flatui.js
172
+ - vendor/assets/javascripts/flat-ui.js
157
173
  - vendor/assets/javascripts/html5shiv.js
158
174
  - vendor/assets/javascripts/icon-font-ie7.js
159
175
  - vendor/assets/javascripts/jquery.dropkick.js
@@ -161,12 +177,12 @@ files:
161
177
  - vendor/assets/javascripts/jquery.tagsinput.js
162
178
  - vendor/assets/javascripts/lte-ie7-24.js
163
179
  - vendor/assets/javascripts/run_everything.js
180
+ - vendor/assets/stylesheets/flat-ui.sass
164
181
  - vendor/assets/stylesheets/flat-ui/_config.sass
165
182
  - vendor/assets/stylesheets/flat-ui/_icon-font-24.sass
166
183
  - vendor/assets/stylesheets/flat-ui/_icon-font.sass
167
184
  - vendor/assets/stylesheets/flat-ui/_mixins.sass
168
185
  - vendor/assets/stylesheets/flat-ui/_spaces.sass
169
- - vendor/assets/stylesheets/flat-ui/bootstrap.sass
170
186
  - vendor/assets/stylesheets/flat-ui/flat-ui.sass
171
187
  - vendor/assets/stylesheets/flat-ui/modules/_btn.sass
172
188
  - vendor/assets/stylesheets/flat-ui/modules/_checkbox-and-radio.sass
@@ -204,7 +220,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
204
220
  version: '0'
205
221
  segments:
206
222
  - 0
207
- hash: 3585217619230630174
223
+ hash: -2041207646580299804
208
224
  required_rubygems_version: !ruby/object:Gem::Requirement
209
225
  none: false
210
226
  requirements:
@@ -213,7 +229,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
213
229
  version: '0'
214
230
  segments:
215
231
  - 0
216
- hash: 3585217619230630174
232
+ hash: -2041207646580299804
217
233
  requirements: []
218
234
  rubyforge_project:
219
235
  rubygems_version: 1.8.24
@@ -1,4526 +0,0 @@
1
- /*!
2
- * Bootstrap v2.2.2
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
-
10
- article, aside, details, figcaption, figure, footer, header, hgroup, nav, section
11
- display: block
12
-
13
- audio, canvas, video
14
- display: inline-block
15
- *display: inline
16
- *zoom: 1
17
-
18
- audio:not([controls])
19
- display: none
20
-
21
- html
22
- font-size: 100%
23
- -webkit-text-size-adjust: 100%
24
- -ms-text-size-adjust: 100%
25
-
26
- a
27
- &:focus
28
- outline: thin dotted #333
29
- outline: 5px auto -webkit-focus-ring-color
30
- outline-offset: -2px
31
- &:hover, &:active
32
- outline: 0
33
-
34
- sub
35
- position: relative
36
- font-size: 75%
37
- line-height: 0
38
- vertical-align: baseline
39
-
40
- sup
41
- position: relative
42
- font-size: 75%
43
- line-height: 0
44
- vertical-align: baseline
45
- top: -0.5em
46
-
47
- sub
48
- bottom: -0.25em
49
-
50
- img
51
- width: auto\9
52
- height: auto
53
- max-width: 100%
54
- vertical-align: middle
55
- border: 0
56
- -ms-interpolation-mode: bicubic
57
-
58
- #map_canvas img, .google-maps img
59
- max-width: none
60
-
61
- button, input, select, textarea
62
- margin: 0
63
- font-size: 100%
64
- vertical-align: middle
65
-
66
- button, input
67
- *overflow: visible
68
- line-height: normal
69
-
70
- button::-moz-focus-inner, input::-moz-focus-inner
71
- padding: 0
72
- border: 0
73
-
74
- button, html input[type="button"]
75
- cursor: pointer
76
- -webkit-appearance: button
77
-
78
- input
79
- &[type="reset"], &[type="submit"]
80
- cursor: pointer
81
- -webkit-appearance: button
82
-
83
- label, select, button
84
- cursor: pointer
85
-
86
- input
87
- &[type="button"], &[type="reset"], &[type="submit"], &[type="radio"], &[type="checkbox"]
88
- cursor: pointer
89
- &[type="search"]
90
- -webkit-box-sizing: content-box
91
- -moz-box-sizing: content-box
92
- box-sizing: content-box
93
- -webkit-appearance: textfield
94
- &::-webkit-search-decoration, &::-webkit-search-cancel-button
95
- -webkit-appearance: none
96
-
97
- textarea
98
- overflow: auto
99
- vertical-align: top
100
-
101
- @media print
102
- *
103
- color: #000 !important
104
- text-shadow: none !important
105
- background: transparent !important
106
- box-shadow: none !important
107
- a
108
- text-decoration: underline
109
- &:visited
110
- text-decoration: underline
111
- &[href]:after
112
- content: " (" attr(href) ")"
113
- abbr[title]:after
114
- content: " (" attr(title) ")"
115
- .ir a:after
116
- content: ""
117
- a
118
- &[href^="javascript:"]:after, &[href^="#"]:after
119
- content: ""
120
- pre, blockquote
121
- border: 1px solid #999
122
- page-break-inside: avoid
123
- thead
124
- display: table-header-group
125
- tr
126
- page-break-inside: avoid
127
- img
128
- page-break-inside: avoid
129
- max-width: 100% !important
130
- @page
131
- margin: 0.5cm
132
-
133
- p, h2, h3
134
- orphans: 3
135
- widows: 3
136
- h2, h3
137
- page-break-after: avoid
138
-
139
- .clearfix
140
- *zoom: 1
141
- &:before
142
- display: table
143
- line-height: 0
144
- content: ""
145
- &:after
146
- display: table
147
- line-height: 0
148
- content: ""
149
- clear: both
150
-
151
- .hide-text
152
- font: 0 / 0 a
153
- color: transparent
154
- text-shadow: none
155
- background-color: transparent
156
- border: 0
157
-
158
- .input-block-level
159
- display: block
160
- width: 100%
161
- min-height: 30px
162
- -webkit-box-sizing: border-box
163
- -moz-box-sizing: border-box
164
- box-sizing: border-box
165
-
166
- body
167
- margin: 0
168
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
169
- font-size: 14px
170
- line-height: 20px
171
- color: #333333
172
- background-color: #ffffff
173
-
174
- a
175
- color: #0088cc
176
- text-decoration: none
177
- &:hover
178
- color: #005580
179
- text-decoration: underline
180
-
181
- .img-rounded
182
- -webkit-border-radius: 6px
183
- -moz-border-radius: 6px
184
- border-radius: 6px
185
-
186
- .img-polaroid
187
- padding: 4px
188
- background-color: #fff
189
- border: 1px solid #ccc
190
- border: 1px solid rgba(0, 0, 0, 0.2)
191
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
192
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
193
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
194
-
195
- .img-circle
196
- -webkit-border-radius: 500px
197
- -moz-border-radius: 500px
198
- border-radius: 500px
199
-
200
- .row
201
- margin-left: -20px
202
- *zoom: 1
203
- &:before
204
- display: table
205
- line-height: 0
206
- content: ""
207
- &:after
208
- display: table
209
- line-height: 0
210
- content: ""
211
- clear: both
212
-
213
- [class*="span"]
214
- float: left
215
- min-height: 1px
216
- margin-left: 20px
217
-
218
- .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12
219
- width: 940px
220
-
221
- .span11
222
- width: 860px
223
-
224
- .span10
225
- width: 780px
226
-
227
- .span9
228
- width: 700px
229
-
230
- .span8
231
- width: 620px
232
-
233
- .span7
234
- width: 540px
235
-
236
- .span6
237
- width: 460px
238
-
239
- .span5
240
- width: 380px
241
-
242
- .span4
243
- width: 300px
244
-
245
- .span3
246
- width: 220px
247
-
248
- .span2
249
- width: 140px
250
-
251
- .span1
252
- width: 60px
253
-
254
- .offset12
255
- margin-left: 980px
256
-
257
- .offset11
258
- margin-left: 900px
259
-
260
- .offset10
261
- margin-left: 820px
262
-
263
- .offset9
264
- margin-left: 740px
265
-
266
- .offset8
267
- margin-left: 660px
268
-
269
- .offset7
270
- margin-left: 580px
271
-
272
- .offset6
273
- margin-left: 500px
274
-
275
- .offset5
276
- margin-left: 420px
277
-
278
- .offset4
279
- margin-left: 340px
280
-
281
- .offset3
282
- margin-left: 260px
283
-
284
- .offset2
285
- margin-left: 180px
286
-
287
- .offset1
288
- margin-left: 100px
289
-
290
- .row-fluid
291
- width: 100%
292
- *zoom: 1
293
- &:before
294
- display: table
295
- line-height: 0
296
- content: ""
297
- &:after
298
- display: table
299
- line-height: 0
300
- content: ""
301
- clear: both
302
- [class*="span"]
303
- display: block
304
- float: left
305
- width: 100%
306
- min-height: 30px
307
- margin-left: 2.127659574468085%
308
- *margin-left: 2.074468085106383%
309
- -webkit-box-sizing: border-box
310
- -moz-box-sizing: border-box
311
- box-sizing: border-box
312
- &:first-child
313
- margin-left: 0
314
- .controls-row [class*="span"] + [class*="span"]
315
- margin-left: 2.127659574468085%
316
- .span12
317
- width: 100%
318
- *width: 99.94680851063829%
319
- .span11
320
- width: 91.48936170212765%
321
- *width: 91.43617021276594%
322
- .span10
323
- width: 82.97872340425532%
324
- *width: 82.92553191489361%
325
- .span9
326
- width: 74.46808510638297%
327
- *width: 74.41489361702126%
328
- .span8
329
- width: 65.95744680851064%
330
- *width: 65.90425531914893%
331
- .span7
332
- width: 57.44680851063829%
333
- *width: 57.39361702127659%
334
- .span6
335
- width: 48.93617021276595%
336
- *width: 48.88297872340425%
337
- .span5
338
- width: 40.42553191489362%
339
- *width: 40.37234042553192%
340
- .span4
341
- width: 31.914893617021278%
342
- *width: 31.861702127659576%
343
- .span3
344
- width: 23.404255319148934%
345
- *width: 23.351063829787233%
346
- .span2
347
- width: 14.893617021276595%
348
- *width: 14.840425531914894%
349
- .span1
350
- width: 6.382978723404255%
351
- *width: 6.329787234042553%
352
- .offset12
353
- margin-left: 104.25531914893617%
354
- *margin-left: 104.14893617021275%
355
- &:first-child
356
- margin-left: 102.12765957446808%
357
- *margin-left: 102.02127659574467%
358
- .offset11
359
- margin-left: 95.74468085106382%
360
- *margin-left: 95.6382978723404%
361
- &:first-child
362
- margin-left: 93.61702127659574%
363
- *margin-left: 93.51063829787232%
364
- .offset10
365
- margin-left: 87.23404255319149%
366
- *margin-left: 87.12765957446807%
367
- &:first-child
368
- margin-left: 85.1063829787234%
369
- *margin-left: 84.99999999999999%
370
- .offset9
371
- margin-left: 78.72340425531914%
372
- *margin-left: 78.61702127659572%
373
- &:first-child
374
- margin-left: 76.59574468085106%
375
- *margin-left: 76.48936170212764%
376
- .offset8
377
- margin-left: 70.2127659574468%
378
- *margin-left: 70.10638297872339%
379
- &:first-child
380
- margin-left: 68.08510638297872%
381
- *margin-left: 67.9787234042553%
382
- .offset7
383
- margin-left: 61.70212765957446%
384
- *margin-left: 61.59574468085106%
385
- &:first-child
386
- margin-left: 59.574468085106375%
387
- *margin-left: 59.46808510638297%
388
- .offset6
389
- margin-left: 53.191489361702125%
390
- *margin-left: 53.085106382978715%
391
- &:first-child
392
- margin-left: 51.063829787234035%
393
- *margin-left: 50.95744680851063%
394
- .offset5
395
- margin-left: 44.68085106382979%
396
- *margin-left: 44.57446808510638%
397
- &:first-child
398
- margin-left: 42.5531914893617%
399
- *margin-left: 42.4468085106383%
400
- .offset4
401
- margin-left: 36.170212765957444%
402
- *margin-left: 36.06382978723405%
403
- &:first-child
404
- margin-left: 34.04255319148936%
405
- *margin-left: 33.93617021276596%
406
- .offset3
407
- margin-left: 27.659574468085104%
408
- *margin-left: 27.5531914893617%
409
- &:first-child
410
- margin-left: 25.53191489361702%
411
- *margin-left: 25.425531914893618%
412
- .offset2
413
- margin-left: 19.148936170212764%
414
- *margin-left: 19.04255319148936%
415
- &:first-child
416
- margin-left: 17.02127659574468%
417
- *margin-left: 16.914893617021278%
418
- .offset1
419
- margin-left: 10.638297872340425%
420
- *margin-left: 10.53191489361702%
421
- &:first-child
422
- margin-left: 8.51063829787234%
423
- *margin-left: 8.404255319148938%
424
-
425
- [class*="span"].hide, .row-fluid [class*="span"].hide
426
- display: none
427
-
428
- [class*="span"].pull-right, .row-fluid [class*="span"].pull-right
429
- float: right
430
-
431
- .container
432
- margin-right: auto
433
- margin-left: auto
434
- *zoom: 1
435
- &:before
436
- display: table
437
- line-height: 0
438
- content: ""
439
- &:after
440
- display: table
441
- line-height: 0
442
- content: ""
443
- clear: both
444
-
445
- .container-fluid
446
- padding-right: 20px
447
- padding-left: 20px
448
- *zoom: 1
449
- &:before
450
- display: table
451
- line-height: 0
452
- content: ""
453
- &:after
454
- display: table
455
- line-height: 0
456
- content: ""
457
- clear: both
458
-
459
- p
460
- margin: 0 0 10px
461
-
462
- .lead
463
- margin-bottom: 20px
464
- font-size: 21px
465
- font-weight: 200
466
- line-height: 30px
467
-
468
- small
469
- font-size: 85%
470
-
471
- strong
472
- font-weight: bold
473
-
474
- em
475
- font-style: italic
476
-
477
- cite
478
- font-style: normal
479
-
480
- .muted
481
- color: #999999
482
-
483
- a.muted:hover
484
- color: #808080
485
-
486
- .text-warning
487
- color: #c09853
488
-
489
- a.text-warning:hover
490
- color: #a47e3c
491
-
492
- .text-error
493
- color: #b94a48
494
-
495
- a.text-error:hover
496
- color: #953b39
497
-
498
- .text-info
499
- color: #3a87ad
500
-
501
- a.text-info:hover
502
- color: #2d6987
503
-
504
- .text-success
505
- color: #468847
506
-
507
- a.text-success:hover
508
- color: #356635
509
-
510
- h1, h2, h3, h4, h5, h6
511
- margin: 10px 0
512
- font-family: inherit
513
- font-weight: bold
514
- line-height: 20px
515
- color: inherit
516
- text-rendering: optimizelegibility
517
-
518
- h1 small, h2 small, h3 small, h4 small, h5 small, h6 small
519
- font-weight: normal
520
- line-height: 1
521
- color: #999999
522
-
523
- h1, h2, h3
524
- line-height: 40px
525
-
526
- h1
527
- font-size: 38.5px
528
-
529
- h2
530
- font-size: 31.5px
531
-
532
- h3
533
- font-size: 24.5px
534
-
535
- h4
536
- font-size: 17.5px
537
-
538
- h5
539
- font-size: 14px
540
-
541
- h6
542
- font-size: 11.9px
543
-
544
- h1 small
545
- font-size: 24.5px
546
-
547
- h2 small
548
- font-size: 17.5px
549
-
550
- h3 small, h4 small
551
- font-size: 14px
552
-
553
- .page-header
554
- padding-bottom: 9px
555
- margin: 20px 0 30px
556
- border-bottom: 1px solid #eeeeee
557
-
558
- ul, ol
559
- padding: 0
560
- margin: 0 0 10px 25px
561
-
562
- ul
563
- ul, ol
564
- margin-bottom: 0
565
-
566
- ol
567
- ol, ul
568
- margin-bottom: 0
569
-
570
- li
571
- line-height: 20px
572
-
573
- ul.unstyled, ol.unstyled, ul.inline, ol.inline
574
- margin-left: 0
575
- list-style: none
576
-
577
- ul.inline > li, ol.inline > li
578
- display: inline-block
579
- padding-right: 5px
580
- padding-left: 5px
581
-
582
- dl
583
- margin-bottom: 20px
584
-
585
- dt, dd
586
- line-height: 20px
587
-
588
- dt
589
- font-weight: bold
590
-
591
- dd
592
- margin-left: 10px
593
-
594
- .dl-horizontal
595
- *zoom: 1
596
- &:before
597
- display: table
598
- line-height: 0
599
- content: ""
600
- &:after
601
- display: table
602
- line-height: 0
603
- content: ""
604
- clear: both
605
- dt
606
- float: left
607
- width: 160px
608
- overflow: hidden
609
- clear: left
610
- text-align: right
611
- text-overflow: ellipsis
612
- white-space: nowrap
613
- dd
614
- margin-left: 180px
615
-
616
- hr
617
- margin: 20px 0
618
- border: 0
619
- border-top: 1px solid #eeeeee
620
- border-bottom: 1px solid #ffffff
621
-
622
- abbr
623
- &[title], &[data-original-title]
624
- cursor: help
625
- border-bottom: 1px dotted #999999
626
- &.initialism
627
- font-size: 90%
628
- text-transform: uppercase
629
-
630
- blockquote
631
- padding: 0 0 0 15px
632
- margin: 0 0 20px
633
- border-left: 5px solid #eeeeee
634
- p
635
- margin-bottom: 0
636
- font-size: 16px
637
- font-weight: 300
638
- line-height: 25px
639
- small
640
- display: block
641
- line-height: 20px
642
- color: #999999
643
- &:before
644
- content: '\2014 \00A0'
645
- &.pull-right
646
- float: right
647
- padding-right: 15px
648
- padding-left: 0
649
- border-right: 5px solid #eeeeee
650
- border-left: 0
651
- p
652
- text-align: right
653
- small
654
- text-align: right
655
- &:before
656
- content: ''
657
- &:after
658
- content: '\00A0 \2014'
659
-
660
- q
661
- &:before, &:after
662
- content: ""
663
-
664
- blockquote
665
- &:before, &:after
666
- content: ""
667
-
668
- address
669
- display: block
670
- margin-bottom: 20px
671
- font-style: normal
672
- line-height: 20px
673
-
674
- code, pre
675
- padding: 0 3px 2px
676
- font-family: Monaco, Menlo, Consolas, "Courier New", monospace
677
- font-size: 12px
678
- color: #333333
679
- -webkit-border-radius: 3px
680
- -moz-border-radius: 3px
681
- border-radius: 3px
682
-
683
- code
684
- padding: 2px 4px
685
- color: #d14
686
- white-space: nowrap
687
- background-color: #f7f7f9
688
- border: 1px solid #e1e1e8
689
-
690
- pre
691
- display: block
692
- padding: 9.5px
693
- margin: 0 0 10px
694
- font-size: 13px
695
- line-height: 20px
696
- word-break: break-all
697
- word-wrap: break-word
698
- white-space: pre
699
- white-space: pre-wrap
700
- background-color: #f5f5f5
701
- border: 1px solid #ccc
702
- border: 1px solid rgba(0, 0, 0, 0.15)
703
- -webkit-border-radius: 4px
704
- -moz-border-radius: 4px
705
- border-radius: 4px
706
- &.prettyprint
707
- margin-bottom: 20px
708
- code
709
- padding: 0
710
- color: inherit
711
- white-space: pre
712
- white-space: pre-wrap
713
- background-color: transparent
714
- border: 0
715
-
716
- .pre-scrollable
717
- max-height: 340px
718
- overflow-y: scroll
719
-
720
- form
721
- margin: 0 0 20px
722
-
723
- fieldset
724
- padding: 0
725
- margin: 0
726
- border: 0
727
-
728
- legend
729
- display: block
730
- width: 100%
731
- padding: 0
732
- margin-bottom: 20px
733
- font-size: 21px
734
- line-height: 40px
735
- color: #333333
736
- border: 0
737
- border-bottom: 1px solid #e5e5e5
738
- small
739
- font-size: 15px
740
- color: #999999
741
-
742
- label, input, button, select, textarea
743
- font-size: 14px
744
- font-weight: normal
745
- line-height: 20px
746
-
747
- input, button, select, textarea
748
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
749
-
750
- label
751
- display: block
752
- margin-bottom: 5px
753
-
754
- select, textarea
755
- display: inline-block
756
- height: 20px
757
- padding: 4px 6px
758
- margin-bottom: 10px
759
- font-size: 14px
760
- line-height: 20px
761
- color: #555555
762
- vertical-align: middle
763
- -webkit-border-radius: 4px
764
- -moz-border-radius: 4px
765
- border-radius: 4px
766
-
767
- input
768
- &[type="text"], &[type="password"], &[type="datetime"], &[type="datetime-local"], &[type="date"], &[type="month"], &[type="time"], &[type="week"], &[type="number"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"], &[type="color"]
769
- display: inline-block
770
- height: 20px
771
- padding: 4px 6px
772
- margin-bottom: 10px
773
- font-size: 14px
774
- line-height: 20px
775
- color: #555555
776
- vertical-align: middle
777
- -webkit-border-radius: 4px
778
- -moz-border-radius: 4px
779
- border-radius: 4px
780
-
781
- .uneditable-input
782
- display: inline-block
783
- height: 20px
784
- padding: 4px 6px
785
- margin-bottom: 10px
786
- font-size: 14px
787
- line-height: 20px
788
- color: #555555
789
- vertical-align: middle
790
- -webkit-border-radius: 4px
791
- -moz-border-radius: 4px
792
- border-radius: 4px
793
-
794
- input, textarea, .uneditable-input
795
- width: 206px
796
-
797
- textarea
798
- height: auto
799
- background-color: #ffffff
800
- border: 1px solid #cccccc
801
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
802
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
803
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
804
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s
805
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s
806
- -o-transition: border linear 0.2s, box-shadow linear 0.2s
807
- transition: border linear 0.2s, box-shadow linear 0.2s
808
-
809
- input
810
- &[type="text"], &[type="password"], &[type="datetime"], &[type="datetime-local"], &[type="date"], &[type="month"], &[type="time"], &[type="week"], &[type="number"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"], &[type="color"]
811
- background-color: #ffffff
812
- border: 1px solid #cccccc
813
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
814
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
815
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
816
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s
817
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s
818
- -o-transition: border linear 0.2s, box-shadow linear 0.2s
819
- transition: border linear 0.2s, box-shadow linear 0.2s
820
-
821
- .uneditable-input
822
- background-color: #ffffff
823
- border: 1px solid #cccccc
824
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
825
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
826
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
827
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s
828
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s
829
- -o-transition: border linear 0.2s, box-shadow linear 0.2s
830
- transition: border linear 0.2s, box-shadow linear 0.2s
831
-
832
- textarea:focus
833
- border-color: rgba(82, 168, 236, 0.8)
834
- outline: 0
835
- outline: thin dotted \9
836
- /* IE6-9
837
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
838
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
839
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
840
-
841
- input
842
- &[type="text"]:focus, &[type="password"]:focus, &[type="datetime"]:focus, &[type="datetime-local"]:focus, &[type="date"]:focus, &[type="month"]:focus, &[type="time"]:focus, &[type="week"]:focus, &[type="number"]:focus, &[type="email"]:focus, &[type="url"]:focus, &[type="search"]:focus, &[type="tel"]:focus, &[type="color"]:focus
843
- border-color: rgba(82, 168, 236, 0.8)
844
- outline: 0
845
- outline: thin dotted \9
846
- /* IE6-9
847
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
848
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
849
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
850
-
851
- .uneditable-input:focus
852
- border-color: rgba(82, 168, 236, 0.8)
853
- outline: 0
854
- outline: thin dotted \9
855
- /* IE6-9
856
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
857
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
858
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
859
-
860
- input
861
- &[type="radio"], &[type="checkbox"]
862
- margin: 4px 0 0
863
- margin-top: 1px \9
864
- *margin-top: 0
865
- line-height: normal
866
- &[type="file"], &[type="image"], &[type="submit"], &[type="reset"], &[type="button"], &[type="radio"], &[type="checkbox"]
867
- width: auto
868
-
869
- select, input[type="file"]
870
- height: 30px
871
- /* In IE7, the height of the select element cannot be changed by height, only font-size
872
- *margin-top: 4px
873
- /* For IE7, add top margin to align select with labels
874
- line-height: 30px
875
-
876
- select
877
- width: 220px
878
- background-color: #ffffff
879
- border: 1px solid #cccccc
880
- &[multiple], &[size]
881
- height: auto
882
- &:focus
883
- outline: thin dotted #333
884
- outline: 5px auto -webkit-focus-ring-color
885
- outline-offset: -2px
886
-
887
- input
888
- &[type="file"]:focus, &[type="radio"]:focus, &[type="checkbox"]:focus
889
- outline: thin dotted #333
890
- outline: 5px auto -webkit-focus-ring-color
891
- outline-offset: -2px
892
-
893
- .uneditable-input, .uneditable-textarea
894
- color: #999999
895
- cursor: not-allowed
896
- background-color: #fcfcfc
897
- border-color: #cccccc
898
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025)
899
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025)
900
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025)
901
-
902
- .uneditable-input
903
- overflow: hidden
904
- white-space: nowrap
905
-
906
- .uneditable-textarea
907
- width: auto
908
- height: auto
909
-
910
- input:-moz-placeholder, textarea:-moz-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder
911
- color: #999999
912
-
913
- .radio, .checkbox
914
- min-height: 20px
915
- padding-left: 20px
916
-
917
- .radio input[type="radio"], .checkbox input[type="checkbox"]
918
- float: left
919
- margin-left: -20px
920
-
921
- .controls >
922
- .radio:first-child, .checkbox:first-child
923
- padding-top: 5px
924
-
925
- .radio.inline, .checkbox.inline
926
- display: inline-block
927
- padding-top: 5px
928
- margin-bottom: 0
929
- vertical-align: middle
930
-
931
- .radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline
932
- margin-left: 10px
933
-
934
- .input-mini
935
- width: 60px
936
-
937
- .input-small
938
- width: 90px
939
-
940
- .input-medium
941
- width: 150px
942
-
943
- .input-large
944
- width: 210px
945
-
946
- .input-xlarge
947
- width: 270px
948
-
949
- .input-xxlarge
950
- width: 530px
951
-
952
- input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"]
953
- float: none
954
- margin-left: 0
955
-
956
- .row-fluid
957
- input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"]
958
- float: none
959
- margin-left: 0
960
-
961
- .input-append
962
- input[class*="span"], .uneditable-input[class*="span"]
963
- display: inline-block
964
-
965
- .input-prepend
966
- input[class*="span"], .uneditable-input[class*="span"]
967
- display: inline-block
968
-
969
- .row-fluid
970
- input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"], .input-prepend [class*="span"], .input-append [class*="span"]
971
- display: inline-block
972
-
973
- input, textarea, .uneditable-input
974
- margin-left: 0
975
-
976
- .controls-row [class*="span"] + [class*="span"]
977
- margin-left: 20px
978
-
979
- input.span12, textarea.span12, .uneditable-input.span12
980
- width: 926px
981
-
982
- input.span11, textarea.span11, .uneditable-input.span11
983
- width: 846px
984
-
985
- input.span10, textarea.span10, .uneditable-input.span10
986
- width: 766px
987
-
988
- input.span9, textarea.span9, .uneditable-input.span9
989
- width: 686px
990
-
991
- input.span8, textarea.span8, .uneditable-input.span8
992
- width: 606px
993
-
994
- input.span7, textarea.span7, .uneditable-input.span7
995
- width: 526px
996
-
997
- input.span6, textarea.span6, .uneditable-input.span6
998
- width: 446px
999
-
1000
- input.span5, textarea.span5, .uneditable-input.span5
1001
- width: 366px
1002
-
1003
- input.span4, textarea.span4, .uneditable-input.span4
1004
- width: 286px
1005
-
1006
- input.span3, textarea.span3, .uneditable-input.span3
1007
- width: 206px
1008
-
1009
- input.span2, textarea.span2, .uneditable-input.span2
1010
- width: 126px
1011
-
1012
- input.span1, textarea.span1, .uneditable-input.span1
1013
- width: 46px
1014
-
1015
- .controls-row
1016
- *zoom: 1
1017
- &:before
1018
- display: table
1019
- line-height: 0
1020
- content: ""
1021
- &:after
1022
- display: table
1023
- line-height: 0
1024
- content: ""
1025
- clear: both
1026
- [class*="span"]
1027
- float: left
1028
-
1029
- .row-fluid .controls-row [class*="span"]
1030
- float: left
1031
-
1032
- .controls-row
1033
- .checkbox[class*="span"], .radio[class*="span"]
1034
- padding-top: 5px
1035
-
1036
- input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly]
1037
- cursor: not-allowed
1038
- background-color: #eeeeee
1039
-
1040
- input
1041
- &[type="radio"][disabled], &[type="checkbox"][disabled], &[type="radio"][readonly], &[type="checkbox"][readonly]
1042
- background-color: transparent
1043
-
1044
- .control-group
1045
- &.warning
1046
- .control-label, .help-block, .help-inline, .checkbox, .radio, input, select, textarea
1047
- color: #c09853
1048
- input, select, textarea
1049
- border-color: #c09853
1050
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1051
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1052
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1053
- input:focus, select:focus, textarea:focus
1054
- border-color: #a47e3c
1055
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e
1056
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e
1057
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e
1058
- .input-prepend .add-on, .input-append .add-on
1059
- color: #c09853
1060
- background-color: #fcf8e3
1061
- border-color: #c09853
1062
- &.error
1063
- .control-label, .help-block, .help-inline, .checkbox, .radio, input, select, textarea
1064
- color: #b94a48
1065
- input, select, textarea
1066
- border-color: #b94a48
1067
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1068
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1069
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1070
- input:focus, select:focus, textarea:focus
1071
- border-color: #953b39
1072
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392
1073
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392
1074
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392
1075
- .input-prepend .add-on, .input-append .add-on
1076
- color: #b94a48
1077
- background-color: #f2dede
1078
- border-color: #b94a48
1079
- &.success
1080
- .control-label, .help-block, .help-inline, .checkbox, .radio, input, select, textarea
1081
- color: #468847
1082
- input, select, textarea
1083
- border-color: #468847
1084
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1085
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1086
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1087
- input:focus, select:focus, textarea:focus
1088
- border-color: #356635
1089
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b
1090
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b
1091
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b
1092
- .input-prepend .add-on, .input-append .add-on
1093
- color: #468847
1094
- background-color: #dff0d8
1095
- border-color: #468847
1096
- &.info
1097
- .control-label, .help-block, .help-inline, .checkbox, .radio, input, select, textarea
1098
- color: #3a87ad
1099
- input, select, textarea
1100
- border-color: #3a87ad
1101
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1102
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1103
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
1104
- input:focus, select:focus, textarea:focus
1105
- border-color: #2d6987
1106
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3
1107
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3
1108
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3
1109
- .input-prepend .add-on, .input-append .add-on
1110
- color: #3a87ad
1111
- background-color: #d9edf7
1112
- border-color: #3a87ad
1113
-
1114
- input:focus:invalid, textarea:focus:invalid, select:focus:invalid
1115
- color: #b94a48
1116
- border-color: #ee5f5b
1117
-
1118
- input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus
1119
- border-color: #e9322d
1120
- -webkit-box-shadow: 0 0 6px #f8b9b7
1121
- -moz-box-shadow: 0 0 6px #f8b9b7
1122
- box-shadow: 0 0 6px #f8b9b7
1123
-
1124
- .form-actions
1125
- padding: 19px 20px 20px
1126
- margin-top: 20px
1127
- margin-bottom: 20px
1128
- background-color: #f5f5f5
1129
- border-top: 1px solid #e5e5e5
1130
- *zoom: 1
1131
- &:before
1132
- display: table
1133
- line-height: 0
1134
- content: ""
1135
- &:after
1136
- display: table
1137
- line-height: 0
1138
- content: ""
1139
- clear: both
1140
-
1141
- .help-block, .help-inline
1142
- color: #595959
1143
-
1144
- .help-block
1145
- display: block
1146
- margin-bottom: 10px
1147
-
1148
- .help-inline
1149
- display: inline-block
1150
- *display: inline
1151
- padding-left: 5px
1152
- vertical-align: middle
1153
- *zoom: 1
1154
-
1155
- .input-append, .input-prepend
1156
- margin-bottom: 5px
1157
- font-size: 0
1158
- white-space: nowrap
1159
-
1160
- .input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-append .uneditable-input, .input-prepend .uneditable-input, .input-append .dropdown-menu, .input-prepend .dropdown-menu
1161
- font-size: 14px
1162
-
1163
- .input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-append .uneditable-input, .input-prepend .uneditable-input
1164
- position: relative
1165
- margin-bottom: 0
1166
- *margin-left: 0
1167
- vertical-align: top
1168
- -webkit-border-radius: 0 4px 4px 0
1169
- -moz-border-radius: 0 4px 4px 0
1170
- border-radius: 0 4px 4px 0
1171
-
1172
- .input-append input:focus, .input-prepend input:focus, .input-append select:focus, .input-prepend select:focus, .input-append .uneditable-input:focus, .input-prepend .uneditable-input:focus
1173
- z-index: 2
1174
-
1175
- .input-append .add-on, .input-prepend .add-on
1176
- display: inline-block
1177
- width: auto
1178
- height: 20px
1179
- min-width: 16px
1180
- padding: 4px 5px
1181
- font-size: 14px
1182
- font-weight: normal
1183
- line-height: 20px
1184
- text-align: center
1185
- text-shadow: 0 1px 0 #ffffff
1186
- background-color: #eeeeee
1187
- border: 1px solid #ccc
1188
-
1189
- .input-append .add-on, .input-prepend .add-on, .input-append .btn, .input-prepend .btn, .input-append .btn-group > .dropdown-toggle, .input-prepend .btn-group > .dropdown-toggle
1190
- vertical-align: top
1191
- -webkit-border-radius: 0
1192
- -moz-border-radius: 0
1193
- border-radius: 0
1194
-
1195
- .input-append .active
1196
- background-color: #a9dba9
1197
- border-color: #46a546
1198
-
1199
- .input-prepend
1200
- .active
1201
- background-color: #a9dba9
1202
- border-color: #46a546
1203
- .add-on, .btn
1204
- margin-right: -1px
1205
- .add-on:first-child, .btn:first-child
1206
- -webkit-border-radius: 4px 0 0 4px
1207
- -moz-border-radius: 4px 0 0 4px
1208
- border-radius: 4px 0 0 4px
1209
-
1210
- .input-append
1211
- input, select, .uneditable-input
1212
- -webkit-border-radius: 4px 0 0 4px
1213
- -moz-border-radius: 4px 0 0 4px
1214
- border-radius: 4px 0 0 4px
1215
- input + .btn-group .btn:last-child, select + .btn-group .btn:last-child, .uneditable-input + .btn-group .btn:last-child
1216
- -webkit-border-radius: 0 4px 4px 0
1217
- -moz-border-radius: 0 4px 4px 0
1218
- border-radius: 0 4px 4px 0
1219
- .add-on, .btn, .btn-group
1220
- margin-left: -1px
1221
- .add-on:last-child, .btn:last-child, .btn-group:last-child > .dropdown-toggle
1222
- -webkit-border-radius: 0 4px 4px 0
1223
- -moz-border-radius: 0 4px 4px 0
1224
- border-radius: 0 4px 4px 0
1225
-
1226
- .input-prepend.input-append
1227
- input, select, .uneditable-input
1228
- -webkit-border-radius: 0
1229
- -moz-border-radius: 0
1230
- border-radius: 0
1231
- input + .btn-group .btn, select + .btn-group .btn, .uneditable-input + .btn-group .btn
1232
- -webkit-border-radius: 0 4px 4px 0
1233
- -moz-border-radius: 0 4px 4px 0
1234
- border-radius: 0 4px 4px 0
1235
- .add-on:first-child, .btn:first-child
1236
- margin-right: -1px
1237
- -webkit-border-radius: 4px 0 0 4px
1238
- -moz-border-radius: 4px 0 0 4px
1239
- border-radius: 4px 0 0 4px
1240
- .add-on:last-child, .btn:last-child
1241
- margin-left: -1px
1242
- -webkit-border-radius: 0 4px 4px 0
1243
- -moz-border-radius: 0 4px 4px 0
1244
- border-radius: 0 4px 4px 0
1245
- .btn-group:first-child
1246
- margin-left: 0
1247
-
1248
- input.search-query
1249
- padding-right: 14px
1250
- padding-right: 4px \9
1251
- padding-left: 14px
1252
- padding-left: 4px \9
1253
- /* IE7-8 doesn't have border-radius, so don't indent the padding
1254
- margin-bottom: 0
1255
- -webkit-border-radius: 15px
1256
- -moz-border-radius: 15px
1257
- border-radius: 15px
1258
-
1259
- /* Allow for input prepend/append in search forms
1260
-
1261
- .form-search
1262
- .input-append .search-query, .input-prepend .search-query
1263
- -webkit-border-radius: 0
1264
- -moz-border-radius: 0
1265
- border-radius: 0
1266
- .input-append
1267
- .search-query
1268
- -webkit-border-radius: 14px 0 0 14px
1269
- -moz-border-radius: 14px 0 0 14px
1270
- border-radius: 14px 0 0 14px
1271
- .btn
1272
- -webkit-border-radius: 0 14px 14px 0
1273
- -moz-border-radius: 0 14px 14px 0
1274
- border-radius: 0 14px 14px 0
1275
- .input-prepend
1276
- .search-query
1277
- -webkit-border-radius: 0 14px 14px 0
1278
- -moz-border-radius: 0 14px 14px 0
1279
- border-radius: 0 14px 14px 0
1280
- .btn
1281
- -webkit-border-radius: 14px 0 0 14px
1282
- -moz-border-radius: 14px 0 0 14px
1283
- border-radius: 14px 0 0 14px
1284
- input
1285
- display: inline-block
1286
- *display: inline
1287
- margin-bottom: 0
1288
- vertical-align: middle
1289
- *zoom: 1
1290
-
1291
- .form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append
1292
- display: inline-block
1293
- *display: inline
1294
- margin-bottom: 0
1295
- vertical-align: middle
1296
- *zoom: 1
1297
-
1298
- .form-search .hide, .form-inline .hide, .form-horizontal .hide
1299
- display: none
1300
-
1301
- .form-search label, .form-inline label, .form-search .btn-group, .form-inline .btn-group
1302
- display: inline-block
1303
-
1304
- .form-search .input-append, .form-inline .input-append, .form-search .input-prepend, .form-inline .input-prepend
1305
- margin-bottom: 0
1306
-
1307
- .form-search
1308
- .radio, .checkbox
1309
- padding-left: 0
1310
- margin-bottom: 0
1311
- vertical-align: middle
1312
-
1313
- .form-inline
1314
- .radio, .checkbox
1315
- padding-left: 0
1316
- margin-bottom: 0
1317
- vertical-align: middle
1318
-
1319
- .form-search
1320
- .radio input[type="radio"], .checkbox input[type="checkbox"]
1321
- float: left
1322
- margin-right: 3px
1323
- margin-left: 0
1324
-
1325
- .form-inline
1326
- .radio input[type="radio"], .checkbox input[type="checkbox"]
1327
- float: left
1328
- margin-right: 3px
1329
- margin-left: 0
1330
-
1331
- .control-group
1332
- margin-bottom: 10px
1333
-
1334
- legend + .control-group
1335
- margin-top: 20px
1336
- -webkit-margin-top-collapse: separate
1337
-
1338
- .form-horizontal
1339
- .control-group
1340
- margin-bottom: 20px
1341
- *zoom: 1
1342
- &:before
1343
- display: table
1344
- line-height: 0
1345
- content: ""
1346
- &:after
1347
- display: table
1348
- line-height: 0
1349
- content: ""
1350
- clear: both
1351
- .control-label
1352
- float: left
1353
- width: 160px
1354
- padding-top: 5px
1355
- text-align: right
1356
- .controls
1357
- *display: inline-block
1358
- *padding-left: 20px
1359
- margin-left: 180px
1360
- *margin-left: 0
1361
- &:first-child
1362
- *padding-left: 180px
1363
- .help-block
1364
- margin-bottom: 0
1365
- input + .help-block, select + .help-block, textarea + .help-block, .uneditable-input + .help-block, .input-prepend + .help-block, .input-append + .help-block
1366
- margin-top: 10px
1367
- .form-actions
1368
- padding-left: 180px
1369
-
1370
- table
1371
- max-width: 100%
1372
- background-color: transparent
1373
- border-collapse: collapse
1374
- border-spacing: 0
1375
-
1376
- .table
1377
- width: 100%
1378
- margin-bottom: 20px
1379
- th, td
1380
- padding: 8px
1381
- line-height: 20px
1382
- text-align: left
1383
- vertical-align: top
1384
- border-top: 1px solid #dddddd
1385
- th
1386
- font-weight: bold
1387
- thead th
1388
- vertical-align: bottom
1389
- caption + thead tr:first-child
1390
- th, td
1391
- border-top: 0
1392
- colgroup + thead tr:first-child
1393
- th, td
1394
- border-top: 0
1395
- thead:first-child tr:first-child
1396
- th, td
1397
- border-top: 0
1398
- tbody + tbody
1399
- border-top: 2px solid #dddddd
1400
- .table
1401
- background-color: #ffffff
1402
-
1403
- .table-condensed
1404
- th, td
1405
- padding: 4px 5px
1406
-
1407
- .table-bordered
1408
- border: 1px solid #dddddd
1409
- border-collapse: separate
1410
- *border-collapse: collapse
1411
- border-left: 0
1412
- -webkit-border-radius: 4px
1413
- -moz-border-radius: 4px
1414
- border-radius: 4px
1415
- th, td
1416
- border-left: 1px solid #dddddd
1417
- caption +
1418
- thead tr:first-child th
1419
- border-top: 0
1420
- tbody tr:first-child
1421
- th, td
1422
- border-top: 0
1423
- colgroup +
1424
- thead tr:first-child th
1425
- border-top: 0
1426
- tbody tr:first-child
1427
- th, td
1428
- border-top: 0
1429
- thead:first-child tr:first-child th
1430
- border-top: 0
1431
- tbody:first-child tr:first-child
1432
- th, td
1433
- border-top: 0
1434
- thead:first-child tr:first-child > th:first-child, tbody:first-child tr:first-child > td:first-child
1435
- -webkit-border-top-left-radius: 4px
1436
- border-top-left-radius: 4px
1437
- -moz-border-radius-topleft: 4px
1438
- thead:first-child tr:first-child > th:last-child, tbody:first-child tr:first-child > td:last-child
1439
- -webkit-border-top-right-radius: 4px
1440
- border-top-right-radius: 4px
1441
- -moz-border-radius-topright: 4px
1442
- thead:last-child tr:last-child > th:first-child, tbody:last-child tr:last-child > td:first-child, tfoot:last-child tr:last-child > td:first-child
1443
- -webkit-border-bottom-left-radius: 4px
1444
- border-bottom-left-radius: 4px
1445
- -moz-border-radius-bottomleft: 4px
1446
- thead:last-child tr:last-child > th:last-child, tbody:last-child tr:last-child > td:last-child
1447
- -webkit-border-bottom-right-radius: 4px
1448
- border-bottom-right-radius: 4px
1449
- -moz-border-radius-bottomright: 4px
1450
- tfoot
1451
- &:last-child tr:last-child > td:last-child
1452
- -webkit-border-bottom-right-radius: 4px
1453
- border-bottom-right-radius: 4px
1454
- -moz-border-radius-bottomright: 4px
1455
- + tbody:last-child tr:last-child td
1456
- &:first-child
1457
- -webkit-border-bottom-left-radius: 0
1458
- border-bottom-left-radius: 0
1459
- -moz-border-radius-bottomleft: 0
1460
- &:last-child
1461
- -webkit-border-bottom-right-radius: 0
1462
- border-bottom-right-radius: 0
1463
- -moz-border-radius-bottomright: 0
1464
- caption +
1465
- thead tr:first-child th:first-child, tbody tr:first-child td:first-child
1466
- -webkit-border-top-left-radius: 4px
1467
- border-top-left-radius: 4px
1468
- -moz-border-radius-topleft: 4px
1469
- colgroup +
1470
- thead tr:first-child th:first-child, tbody tr:first-child td:first-child
1471
- -webkit-border-top-left-radius: 4px
1472
- border-top-left-radius: 4px
1473
- -moz-border-radius-topleft: 4px
1474
- caption +
1475
- thead tr:first-child th:last-child, tbody tr:first-child td:last-child
1476
- -webkit-border-top-right-radius: 4px
1477
- border-top-right-radius: 4px
1478
- -moz-border-radius-topright: 4px
1479
- colgroup +
1480
- thead tr:first-child th:last-child, tbody tr:first-child td:last-child
1481
- -webkit-border-top-right-radius: 4px
1482
- border-top-right-radius: 4px
1483
- -moz-border-radius-topright: 4px
1484
-
1485
- .table-striped tbody > tr:nth-child(odd) >
1486
- td, th
1487
- background-color: #f9f9f9
1488
-
1489
- .table-hover tbody tr:hover
1490
- td, th
1491
- background-color: #f5f5f5
1492
-
1493
- table
1494
- td[class*="span"], th[class*="span"]
1495
- display: table-cell
1496
- float: none
1497
- margin-left: 0
1498
-
1499
- .row-fluid table
1500
- td[class*="span"], th[class*="span"]
1501
- display: table-cell
1502
- float: none
1503
- margin-left: 0
1504
-
1505
- .table
1506
- td.span1, th.span1
1507
- float: none
1508
- width: 44px
1509
- margin-left: 0
1510
- td.span2, th.span2
1511
- float: none
1512
- width: 124px
1513
- margin-left: 0
1514
- td.span3, th.span3
1515
- float: none
1516
- width: 204px
1517
- margin-left: 0
1518
- td.span4, th.span4
1519
- float: none
1520
- width: 284px
1521
- margin-left: 0
1522
- td.span5, th.span5
1523
- float: none
1524
- width: 364px
1525
- margin-left: 0
1526
- td.span6, th.span6
1527
- float: none
1528
- width: 444px
1529
- margin-left: 0
1530
- td.span7, th.span7
1531
- float: none
1532
- width: 524px
1533
- margin-left: 0
1534
- td.span8, th.span8
1535
- float: none
1536
- width: 604px
1537
- margin-left: 0
1538
- td.span9, th.span9
1539
- float: none
1540
- width: 684px
1541
- margin-left: 0
1542
- td.span10, th.span10
1543
- float: none
1544
- width: 764px
1545
- margin-left: 0
1546
- td.span11, th.span11
1547
- float: none
1548
- width: 844px
1549
- margin-left: 0
1550
- td.span12, th.span12
1551
- float: none
1552
- width: 924px
1553
- margin-left: 0
1554
- tbody tr
1555
- &.success td
1556
- background-color: #dff0d8
1557
- &.error td
1558
- background-color: #f2dede
1559
- &.warning td
1560
- background-color: #fcf8e3
1561
- &.info td
1562
- background-color: #d9edf7
1563
-
1564
- .table-hover tbody tr
1565
- &.success:hover td
1566
- background-color: #d0e9c6
1567
- &.error:hover td
1568
- background-color: #ebcccc
1569
- &.warning:hover td
1570
- background-color: #faf2cc
1571
- &.info:hover td
1572
- background-color: #c4e3f3
1573
-
1574
- [class^="icon-"], [class*=" icon-"]
1575
- display: inline-block
1576
- width: 14px
1577
- height: 14px
1578
- margin-top: 1px
1579
- *margin-right: .3em
1580
- line-height: 14px
1581
- vertical-align: text-top
1582
- background-image: url("../img/glyphicons-halflings.png")
1583
- background-position: 14px 14px
1584
- background-repeat: no-repeat
1585
-
1586
- /* White icons with optional class, or on hover/active states of certain elements
1587
-
1588
- .icon-white
1589
- background-image: url("../img/glyphicons-halflings-white.png")
1590
-
1591
- .nav-pills > .active > a >
1592
- [class^="icon-"], [class*=" icon-"]
1593
- background-image: url("../img/glyphicons-halflings-white.png")
1594
-
1595
- .nav-list > .active > a >
1596
- [class^="icon-"], [class*=" icon-"]
1597
- background-image: url("../img/glyphicons-halflings-white.png")
1598
-
1599
- .navbar-inverse .nav > .active > a >
1600
- [class^="icon-"], [class*=" icon-"]
1601
- background-image: url("../img/glyphicons-halflings-white.png")
1602
-
1603
- .dropdown-menu >
1604
- li > a:hover >
1605
- [class^="icon-"], [class*=" icon-"]
1606
- background-image: url("../img/glyphicons-halflings-white.png")
1607
- .active > a >
1608
- [class^="icon-"], [class*=" icon-"]
1609
- background-image: url("../img/glyphicons-halflings-white.png")
1610
-
1611
- .dropdown-submenu:hover > a >
1612
- [class^="icon-"], [class*=" icon-"]
1613
- background-image: url("../img/glyphicons-halflings-white.png")
1614
-
1615
- .icon-glass
1616
- background-position: 0 0
1617
-
1618
- .icon-music
1619
- background-position: -24px 0
1620
-
1621
- .icon-search
1622
- background-position: -48px 0
1623
-
1624
- .icon-envelope
1625
- background-position: -72px 0
1626
-
1627
- .icon-heart
1628
- background-position: -96px 0
1629
-
1630
- .icon-star
1631
- background-position: -120px 0
1632
-
1633
- .icon-star-empty
1634
- background-position: -144px 0
1635
-
1636
- .icon-user
1637
- background-position: -168px 0
1638
-
1639
- .icon-film
1640
- background-position: -192px 0
1641
-
1642
- .icon-th-large
1643
- background-position: -216px 0
1644
-
1645
- .icon-th
1646
- background-position: -240px 0
1647
-
1648
- .icon-th-list
1649
- background-position: -264px 0
1650
-
1651
- .icon-ok
1652
- background-position: -288px 0
1653
-
1654
- .icon-remove
1655
- background-position: -312px 0
1656
-
1657
- .icon-zoom-in
1658
- background-position: -336px 0
1659
-
1660
- .icon-zoom-out
1661
- background-position: -360px 0
1662
-
1663
- .icon-off
1664
- background-position: -384px 0
1665
-
1666
- .icon-signal
1667
- background-position: -408px 0
1668
-
1669
- .icon-cog
1670
- background-position: -432px 0
1671
-
1672
- .icon-trash
1673
- background-position: -456px 0
1674
-
1675
- .icon-home
1676
- background-position: 0 -24px
1677
-
1678
- .icon-file
1679
- background-position: -24px -24px
1680
-
1681
- .icon-time
1682
- background-position: -48px -24px
1683
-
1684
- .icon-road
1685
- background-position: -72px -24px
1686
-
1687
- .icon-download-alt
1688
- background-position: -96px -24px
1689
-
1690
- .icon-download
1691
- background-position: -120px -24px
1692
-
1693
- .icon-upload
1694
- background-position: -144px -24px
1695
-
1696
- .icon-inbox
1697
- background-position: -168px -24px
1698
-
1699
- .icon-play-circle
1700
- background-position: -192px -24px
1701
-
1702
- .icon-repeat
1703
- background-position: -216px -24px
1704
-
1705
- .icon-refresh
1706
- background-position: -240px -24px
1707
-
1708
- .icon-list-alt
1709
- background-position: -264px -24px
1710
-
1711
- .icon-lock
1712
- background-position: -287px -24px
1713
-
1714
- .icon-flag
1715
- background-position: -312px -24px
1716
-
1717
- .icon-headphones
1718
- background-position: -336px -24px
1719
-
1720
- .icon-volume-off
1721
- background-position: -360px -24px
1722
-
1723
- .icon-volume-down
1724
- background-position: -384px -24px
1725
-
1726
- .icon-volume-up
1727
- background-position: -408px -24px
1728
-
1729
- .icon-qrcode
1730
- background-position: -432px -24px
1731
-
1732
- .icon-barcode
1733
- background-position: -456px -24px
1734
-
1735
- .icon-tag
1736
- background-position: 0 -48px
1737
-
1738
- .icon-tags
1739
- background-position: -25px -48px
1740
-
1741
- .icon-book
1742
- background-position: -48px -48px
1743
-
1744
- .icon-bookmark
1745
- background-position: -72px -48px
1746
-
1747
- .icon-print
1748
- background-position: -96px -48px
1749
-
1750
- .icon-camera
1751
- background-position: -120px -48px
1752
-
1753
- .icon-font
1754
- background-position: -144px -48px
1755
-
1756
- .icon-bold
1757
- background-position: -167px -48px
1758
-
1759
- .icon-italic
1760
- background-position: -192px -48px
1761
-
1762
- .icon-text-height
1763
- background-position: -216px -48px
1764
-
1765
- .icon-text-width
1766
- background-position: -240px -48px
1767
-
1768
- .icon-align-left
1769
- background-position: -264px -48px
1770
-
1771
- .icon-align-center
1772
- background-position: -288px -48px
1773
-
1774
- .icon-align-right
1775
- background-position: -312px -48px
1776
-
1777
- .icon-align-justify
1778
- background-position: -336px -48px
1779
-
1780
- .icon-list
1781
- background-position: -360px -48px
1782
-
1783
- .icon-indent-left
1784
- background-position: -384px -48px
1785
-
1786
- .icon-indent-right
1787
- background-position: -408px -48px
1788
-
1789
- .icon-facetime-video
1790
- background-position: -432px -48px
1791
-
1792
- .icon-picture
1793
- background-position: -456px -48px
1794
-
1795
- .icon-pencil
1796
- background-position: 0 -72px
1797
-
1798
- .icon-map-marker
1799
- background-position: -24px -72px
1800
-
1801
- .icon-adjust
1802
- background-position: -48px -72px
1803
-
1804
- .icon-tint
1805
- background-position: -72px -72px
1806
-
1807
- .icon-edit
1808
- background-position: -96px -72px
1809
-
1810
- .icon-share
1811
- background-position: -120px -72px
1812
-
1813
- .icon-check
1814
- background-position: -144px -72px
1815
-
1816
- .icon-move
1817
- background-position: -168px -72px
1818
-
1819
- .icon-step-backward
1820
- background-position: -192px -72px
1821
-
1822
- .icon-fast-backward
1823
- background-position: -216px -72px
1824
-
1825
- .icon-backward
1826
- background-position: -240px -72px
1827
-
1828
- .icon-play
1829
- background-position: -264px -72px
1830
-
1831
- .icon-pause
1832
- background-position: -288px -72px
1833
-
1834
- .icon-stop
1835
- background-position: -312px -72px
1836
-
1837
- .icon-forward
1838
- background-position: -336px -72px
1839
-
1840
- .icon-fast-forward
1841
- background-position: -360px -72px
1842
-
1843
- .icon-step-forward
1844
- background-position: -384px -72px
1845
-
1846
- .icon-eject
1847
- background-position: -408px -72px
1848
-
1849
- .icon-chevron-left
1850
- background-position: -432px -72px
1851
-
1852
- .icon-chevron-right
1853
- background-position: -456px -72px
1854
-
1855
- .icon-plus-sign
1856
- background-position: 0 -96px
1857
-
1858
- .icon-minus-sign
1859
- background-position: -24px -96px
1860
-
1861
- .icon-remove-sign
1862
- background-position: -48px -96px
1863
-
1864
- .icon-ok-sign
1865
- background-position: -72px -96px
1866
-
1867
- .icon-question-sign
1868
- background-position: -96px -96px
1869
-
1870
- .icon-info-sign
1871
- background-position: -120px -96px
1872
-
1873
- .icon-screenshot
1874
- background-position: -144px -96px
1875
-
1876
- .icon-remove-circle
1877
- background-position: -168px -96px
1878
-
1879
- .icon-ok-circle
1880
- background-position: -192px -96px
1881
-
1882
- .icon-ban-circle
1883
- background-position: -216px -96px
1884
-
1885
- .icon-arrow-left
1886
- background-position: -240px -96px
1887
-
1888
- .icon-arrow-right
1889
- background-position: -264px -96px
1890
-
1891
- .icon-arrow-up
1892
- background-position: -289px -96px
1893
-
1894
- .icon-arrow-down
1895
- background-position: -312px -96px
1896
-
1897
- .icon-share-alt
1898
- background-position: -336px -96px
1899
-
1900
- .icon-resize-full
1901
- background-position: -360px -96px
1902
-
1903
- .icon-resize-small
1904
- background-position: -384px -96px
1905
-
1906
- .icon-plus
1907
- background-position: -408px -96px
1908
-
1909
- .icon-minus
1910
- background-position: -433px -96px
1911
-
1912
- .icon-asterisk
1913
- background-position: -456px -96px
1914
-
1915
- .icon-exclamation-sign
1916
- background-position: 0 -120px
1917
-
1918
- .icon-gift
1919
- background-position: -24px -120px
1920
-
1921
- .icon-leaf
1922
- background-position: -48px -120px
1923
-
1924
- .icon-fire
1925
- background-position: -72px -120px
1926
-
1927
- .icon-eye-open
1928
- background-position: -96px -120px
1929
-
1930
- .icon-eye-close
1931
- background-position: -120px -120px
1932
-
1933
- .icon-warning-sign
1934
- background-position: -144px -120px
1935
-
1936
- .icon-plane
1937
- background-position: -168px -120px
1938
-
1939
- .icon-calendar
1940
- background-position: -192px -120px
1941
-
1942
- .icon-random
1943
- width: 16px
1944
- background-position: -216px -120px
1945
-
1946
- .icon-comment
1947
- background-position: -240px -120px
1948
-
1949
- .icon-magnet
1950
- background-position: -264px -120px
1951
-
1952
- .icon-chevron-up
1953
- background-position: -288px -120px
1954
-
1955
- .icon-chevron-down
1956
- background-position: -313px -119px
1957
-
1958
- .icon-retweet
1959
- background-position: -336px -120px
1960
-
1961
- .icon-shopping-cart
1962
- background-position: -360px -120px
1963
-
1964
- .icon-folder-close
1965
- background-position: -384px -120px
1966
-
1967
- .icon-folder-open
1968
- width: 16px
1969
- background-position: -408px -120px
1970
-
1971
- .icon-resize-vertical
1972
- background-position: -432px -119px
1973
-
1974
- .icon-resize-horizontal
1975
- background-position: -456px -118px
1976
-
1977
- .icon-hdd
1978
- background-position: 0 -144px
1979
-
1980
- .icon-bullhorn
1981
- background-position: -24px -144px
1982
-
1983
- .icon-bell
1984
- background-position: -48px -144px
1985
-
1986
- .icon-certificate
1987
- background-position: -72px -144px
1988
-
1989
- .icon-thumbs-up
1990
- background-position: -96px -144px
1991
-
1992
- .icon-thumbs-down
1993
- background-position: -120px -144px
1994
-
1995
- .icon-hand-right
1996
- background-position: -144px -144px
1997
-
1998
- .icon-hand-left
1999
- background-position: -168px -144px
2000
-
2001
- .icon-hand-up
2002
- background-position: -192px -144px
2003
-
2004
- .icon-hand-down
2005
- background-position: -216px -144px
2006
-
2007
- .icon-circle-arrow-right
2008
- background-position: -240px -144px
2009
-
2010
- .icon-circle-arrow-left
2011
- background-position: -264px -144px
2012
-
2013
- .icon-circle-arrow-up
2014
- background-position: -288px -144px
2015
-
2016
- .icon-circle-arrow-down
2017
- background-position: -312px -144px
2018
-
2019
- .icon-globe
2020
- background-position: -336px -144px
2021
-
2022
- .icon-wrench
2023
- background-position: -360px -144px
2024
-
2025
- .icon-tasks
2026
- background-position: -384px -144px
2027
-
2028
- .icon-filter
2029
- background-position: -408px -144px
2030
-
2031
- .icon-briefcase
2032
- background-position: -432px -144px
2033
-
2034
- .icon-fullscreen
2035
- background-position: -456px -144px
2036
-
2037
- .dropup, .dropdown
2038
- position: relative
2039
-
2040
- .dropdown-toggle
2041
- *margin-bottom: -3px
2042
- &:active
2043
- outline: 0
2044
-
2045
- .open .dropdown-toggle
2046
- outline: 0
2047
-
2048
- .caret
2049
- display: inline-block
2050
- width: 0
2051
- height: 0
2052
- vertical-align: top
2053
- border-top: 4px solid #000000
2054
- border-right: 4px solid transparent
2055
- border-left: 4px solid transparent
2056
- content: ""
2057
-
2058
- .dropdown .caret
2059
- margin-top: 8px
2060
- margin-left: 2px
2061
-
2062
- .dropdown-menu
2063
- position: absolute
2064
- top: 100%
2065
- left: 0
2066
- z-index: 1000
2067
- display: none
2068
- float: left
2069
- min-width: 160px
2070
- padding: 5px 0
2071
- margin: 2px 0 0
2072
- list-style: none
2073
- background-color: #ffffff
2074
- border: 1px solid #ccc
2075
- border: 1px solid rgba(0, 0, 0, 0.2)
2076
- *border-right-width: 2px
2077
- *border-bottom-width: 2px
2078
- -webkit-border-radius: 6px
2079
- -moz-border-radius: 6px
2080
- border-radius: 6px
2081
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
2082
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
2083
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
2084
- -webkit-background-clip: padding-box
2085
- -moz-background-clip: padding
2086
- background-clip: padding-box
2087
- &.pull-right
2088
- right: 0
2089
- left: auto
2090
- .divider
2091
- *width: 100%
2092
- height: 1px
2093
- margin: 9px 1px
2094
- *margin: -5px 0 5px
2095
- overflow: hidden
2096
- background-color: #e5e5e5
2097
- border-bottom: 1px solid #ffffff
2098
- li > a
2099
- display: block
2100
- padding: 3px 20px
2101
- clear: both
2102
- font-weight: normal
2103
- line-height: 20px
2104
- color: #333333
2105
- white-space: nowrap
2106
- &:hover, &:focus
2107
- color: #ffffff
2108
- text-decoration: none
2109
- background-color: #0081c2
2110
- background-image: -moz-linear-gradient(top, #0088cc, #0077b3)
2111
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3))
2112
- background-image: -webkit-linear-gradient(top, #0088cc, #0077b3)
2113
- background-image: -o-linear-gradient(top, #0088cc, #0077b3)
2114
- background-image: linear-gradient(to bottom, #0088cc, #0077b3)
2115
- background-repeat: repeat-x
2116
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
2117
-
2118
- .dropdown-submenu:hover > a
2119
- color: #ffffff
2120
- text-decoration: none
2121
- background-color: #0081c2
2122
- background-image: -moz-linear-gradient(top, #0088cc, #0077b3)
2123
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3))
2124
- background-image: -webkit-linear-gradient(top, #0088cc, #0077b3)
2125
- background-image: -o-linear-gradient(top, #0088cc, #0077b3)
2126
- background-image: linear-gradient(to bottom, #0088cc, #0077b3)
2127
- background-repeat: repeat-x
2128
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
2129
-
2130
- .dropdown-menu
2131
- .active > a
2132
- color: #ffffff
2133
- text-decoration: none
2134
- background-color: #0081c2
2135
- background-image: -moz-linear-gradient(top, #0088cc, #0077b3)
2136
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3))
2137
- background-image: -webkit-linear-gradient(top, #0088cc, #0077b3)
2138
- background-image: -o-linear-gradient(top, #0088cc, #0077b3)
2139
- background-image: linear-gradient(to bottom, #0088cc, #0077b3)
2140
- background-repeat: repeat-x
2141
- outline: 0
2142
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
2143
- &:hover
2144
- color: #ffffff
2145
- text-decoration: none
2146
- background-color: #0081c2
2147
- background-image: -moz-linear-gradient(top, #0088cc, #0077b3)
2148
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3))
2149
- background-image: -webkit-linear-gradient(top, #0088cc, #0077b3)
2150
- background-image: -o-linear-gradient(top, #0088cc, #0077b3)
2151
- background-image: linear-gradient(to bottom, #0088cc, #0077b3)
2152
- background-repeat: repeat-x
2153
- outline: 0
2154
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
2155
- .disabled > a
2156
- color: #999999
2157
- &:hover
2158
- color: #999999
2159
- text-decoration: none
2160
- cursor: default
2161
- background-color: transparent
2162
- background-image: none
2163
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2164
-
2165
- .open
2166
- *z-index: 1000
2167
- > .dropdown-menu
2168
- display: block
2169
-
2170
- .pull-right > .dropdown-menu
2171
- right: 0
2172
- left: auto
2173
-
2174
- .dropup .caret, .navbar-fixed-bottom .dropdown .caret
2175
- border-top: 0
2176
- border-bottom: 4px solid #000000
2177
- content: ""
2178
-
2179
- .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu
2180
- top: auto
2181
- bottom: 100%
2182
- margin-bottom: 1px
2183
-
2184
- .dropdown-submenu
2185
- position: relative
2186
- > .dropdown-menu
2187
- top: 0
2188
- left: 100%
2189
- margin-top: -6px
2190
- margin-left: -1px
2191
- -webkit-border-radius: 0 6px 6px 6px
2192
- -moz-border-radius: 0 6px 6px 6px
2193
- border-radius: 0 6px 6px 6px
2194
- &:hover > .dropdown-menu
2195
- display: block
2196
-
2197
- .dropup .dropdown-submenu > .dropdown-menu
2198
- top: auto
2199
- bottom: 0
2200
- margin-top: 0
2201
- margin-bottom: -2px
2202
- -webkit-border-radius: 5px 5px 5px 0
2203
- -moz-border-radius: 5px 5px 5px 0
2204
- border-radius: 5px 5px 5px 0
2205
-
2206
- .dropdown-submenu
2207
- > a:after
2208
- display: block
2209
- float: right
2210
- width: 0
2211
- height: 0
2212
- margin-top: 5px
2213
- margin-right: -10px
2214
- border-color: transparent
2215
- border-left-color: #cccccc
2216
- border-style: solid
2217
- border-width: 5px 0 5px 5px
2218
- content: " "
2219
- &:hover > a:after
2220
- border-left-color: #ffffff
2221
- &.pull-left
2222
- float: none
2223
- > .dropdown-menu
2224
- left: -100%
2225
- margin-left: 10px
2226
- -webkit-border-radius: 6px 0 6px 6px
2227
- -moz-border-radius: 6px 0 6px 6px
2228
- border-radius: 6px 0 6px 6px
2229
-
2230
- .dropdown .dropdown-menu .nav-header
2231
- padding-right: 20px
2232
- padding-left: 20px
2233
-
2234
- .typeahead
2235
- z-index: 1051
2236
- margin-top: 2px
2237
- -webkit-border-radius: 4px
2238
- -moz-border-radius: 4px
2239
- border-radius: 4px
2240
-
2241
- .well
2242
- min-height: 20px
2243
- padding: 19px
2244
- margin-bottom: 20px
2245
- background-color: #f5f5f5
2246
- border: 1px solid #e3e3e3
2247
- -webkit-border-radius: 4px
2248
- -moz-border-radius: 4px
2249
- border-radius: 4px
2250
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
2251
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
2252
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
2253
- blockquote
2254
- border-color: #ddd
2255
- border-color: rgba(0, 0, 0, 0.15)
2256
-
2257
- .well-large
2258
- padding: 24px
2259
- -webkit-border-radius: 6px
2260
- -moz-border-radius: 6px
2261
- border-radius: 6px
2262
-
2263
- .well-small
2264
- padding: 9px
2265
- -webkit-border-radius: 3px
2266
- -moz-border-radius: 3px
2267
- border-radius: 3px
2268
-
2269
- .fade
2270
- opacity: 0
2271
- -webkit-transition: opacity 0.15s linear
2272
- -moz-transition: opacity 0.15s linear
2273
- -o-transition: opacity 0.15s linear
2274
- transition: opacity 0.15s linear
2275
- &.in
2276
- opacity: 1
2277
-
2278
- .collapse
2279
- position: relative
2280
- height: 0
2281
- overflow: hidden
2282
- -webkit-transition: height 0.35s ease
2283
- -moz-transition: height 0.35s ease
2284
- -o-transition: height 0.35s ease
2285
- transition: height 0.35s ease
2286
- &.in
2287
- height: auto
2288
-
2289
- .close
2290
- float: right
2291
- font-size: 20px
2292
- font-weight: bold
2293
- line-height: 20px
2294
- color: #000000
2295
- text-shadow: 0 1px 0 #ffffff
2296
- opacity: 0.2
2297
- filter: alpha(opacity = 20)
2298
- &:hover
2299
- color: #000000
2300
- text-decoration: none
2301
- cursor: pointer
2302
- opacity: 0.4
2303
- filter: alpha(opacity = 40)
2304
-
2305
- button.close
2306
- padding: 0
2307
- cursor: pointer
2308
- background: transparent
2309
- border: 0
2310
- -webkit-appearance: none
2311
-
2312
- .btn
2313
- display: inline-block
2314
- *display: inline
2315
- padding: 4px 12px
2316
- margin-bottom: 0
2317
- *margin-left: .3em
2318
- font-size: 14px
2319
- line-height: 20px
2320
- color: #333333
2321
- text-align: center
2322
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75)
2323
- vertical-align: middle
2324
- cursor: pointer
2325
- background-color: #f5f5f5
2326
- *background-color: #e6e6e6
2327
- background-image: -moz-linear-gradient(top, white, #e6e6e6)
2328
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e6))
2329
- background-image: -webkit-linear-gradient(top, white, #e6e6e6)
2330
- background-image: -o-linear-gradient(top, white, #e6e6e6)
2331
- background-image: linear-gradient(to bottom, white, #e6e6e6)
2332
- background-repeat: repeat-x
2333
- border: 1px solid #bbbbbb
2334
- *border: 0
2335
- border-color: #e6e6e6 #e6e6e6 #bfbfbf
2336
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2337
- border-bottom-color: #a2a2a2
2338
- -webkit-border-radius: 4px
2339
- -moz-border-radius: 4px
2340
- border-radius: 4px
2341
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0)
2342
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2343
- *zoom: 1
2344
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05)
2345
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05)
2346
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05)
2347
- &:hover, &:active, &.active, &.disabled, &[disabled]
2348
- color: #333333
2349
- background-color: #e6e6e6
2350
- *background-color: #d9d9d9
2351
- &:active, &.active
2352
- background-color: #cccccc \9
2353
- &:first-child
2354
- *margin-left: 0
2355
- &:hover
2356
- color: #333333
2357
- text-decoration: none
2358
- background-position: 0 -15px
2359
- -webkit-transition: background-position 0.1s linear
2360
- -moz-transition: background-position 0.1s linear
2361
- -o-transition: background-position 0.1s linear
2362
- transition: background-position 0.1s linear
2363
- &:focus
2364
- outline: thin dotted #333
2365
- outline: 5px auto -webkit-focus-ring-color
2366
- outline-offset: -2px
2367
- &.active, &:active
2368
- background-image: none
2369
- outline: 0
2370
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2371
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2372
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2373
- &.disabled, &[disabled]
2374
- cursor: default
2375
- background-image: none
2376
- opacity: 0.65
2377
- filter: alpha(opacity = 65)
2378
- -webkit-box-shadow: none
2379
- -moz-box-shadow: none
2380
- box-shadow: none
2381
-
2382
- .btn-large
2383
- padding: 11px 19px
2384
- font-size: 17.5px
2385
- -webkit-border-radius: 6px
2386
- -moz-border-radius: 6px
2387
- border-radius: 6px
2388
- [class^="icon-"], [class*=" icon-"]
2389
- margin-top: 4px
2390
-
2391
- .btn-small
2392
- padding: 2px 10px
2393
- font-size: 11.9px
2394
- -webkit-border-radius: 3px
2395
- -moz-border-radius: 3px
2396
- border-radius: 3px
2397
- [class^="icon-"], [class*=" icon-"]
2398
- margin-top: 0
2399
-
2400
- .btn-mini
2401
- [class^="icon-"], [class*=" icon-"]
2402
- margin-top: -1px
2403
- padding: 0 6px
2404
- font-size: 10.5px
2405
- -webkit-border-radius: 3px
2406
- -moz-border-radius: 3px
2407
- border-radius: 3px
2408
-
2409
- .btn-block
2410
- display: block
2411
- width: 100%
2412
- padding-right: 0
2413
- padding-left: 0
2414
- -webkit-box-sizing: border-box
2415
- -moz-box-sizing: border-box
2416
- box-sizing: border-box
2417
- + .btn-block
2418
- margin-top: 5px
2419
-
2420
- input
2421
- &[type="submit"].btn-block, &[type="reset"].btn-block, &[type="button"].btn-block
2422
- width: 100%
2423
-
2424
- .btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active
2425
- color: rgba(255, 255, 255, 0.75)
2426
-
2427
- .btn
2428
- border-color: #c5c5c5
2429
- border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25)
2430
-
2431
- .btn-primary
2432
- color: #ffffff
2433
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
2434
- background-color: #006dcc
2435
- *background-color: #0044cc
2436
- background-image: -moz-linear-gradient(top, #0088cc, #0044cc)
2437
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc))
2438
- background-image: -webkit-linear-gradient(top, #0088cc, #0044cc)
2439
- background-image: -o-linear-gradient(top, #0088cc, #0044cc)
2440
- background-image: linear-gradient(to bottom, #0088cc, #0044cc)
2441
- background-repeat: repeat-x
2442
- border-color: #0044cc #0044cc #002a80
2443
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2444
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0)
2445
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2446
- &:hover, &:active, &.active, &.disabled, &[disabled]
2447
- color: #ffffff
2448
- background-color: #0044cc
2449
- *background-color: #003bb3
2450
- &:active, &.active
2451
- background-color: #003399 \9
2452
-
2453
- .btn-warning
2454
- color: #ffffff
2455
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
2456
- background-color: #faa732
2457
- *background-color: #f89406
2458
- background-image: -moz-linear-gradient(top, #fbb450, #f89406)
2459
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406))
2460
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406)
2461
- background-image: -o-linear-gradient(top, #fbb450, #f89406)
2462
- background-image: linear-gradient(to bottom, #fbb450, #f89406)
2463
- background-repeat: repeat-x
2464
- border-color: #f89406 #f89406 #ad6704
2465
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2466
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)
2467
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2468
- &:hover, &:active, &.active, &.disabled, &[disabled]
2469
- color: #ffffff
2470
- background-color: #f89406
2471
- *background-color: #df8505
2472
- &:active, &.active
2473
- background-color: #c67605 \9
2474
-
2475
- .btn-danger
2476
- color: #ffffff
2477
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
2478
- background-color: #da4f49
2479
- *background-color: #bd362f
2480
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f)
2481
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f))
2482
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f)
2483
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f)
2484
- background-image: linear-gradient(to bottom, #ee5f5b, #bd362f)
2485
- background-repeat: repeat-x
2486
- border-color: #bd362f #bd362f #802420
2487
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2488
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0)
2489
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2490
- &:hover, &:active, &.active, &.disabled, &[disabled]
2491
- color: #ffffff
2492
- background-color: #bd362f
2493
- *background-color: #a9302a
2494
- &:active, &.active
2495
- background-color: #942a25 \9
2496
-
2497
- .btn-success
2498
- color: #ffffff
2499
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
2500
- background-color: #5bb75b
2501
- *background-color: #51a351
2502
- background-image: -moz-linear-gradient(top, #62c462, #51a351)
2503
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351))
2504
- background-image: -webkit-linear-gradient(top, #62c462, #51a351)
2505
- background-image: -o-linear-gradient(top, #62c462, #51a351)
2506
- background-image: linear-gradient(to bottom, #62c462, #51a351)
2507
- background-repeat: repeat-x
2508
- border-color: #51a351 #51a351 #387038
2509
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2510
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0)
2511
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2512
- &:hover, &:active, &.active, &.disabled, &[disabled]
2513
- color: #ffffff
2514
- background-color: #51a351
2515
- *background-color: #499249
2516
- &:active, &.active
2517
- background-color: #408140 \9
2518
-
2519
- .btn-info
2520
- color: #ffffff
2521
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
2522
- background-color: #49afcd
2523
- *background-color: #2f96b4
2524
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4)
2525
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4))
2526
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4)
2527
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4)
2528
- background-image: linear-gradient(to bottom, #5bc0de, #2f96b4)
2529
- background-repeat: repeat-x
2530
- border-color: #2f96b4 #2f96b4 #1f6377
2531
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2532
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0)
2533
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2534
- &:hover, &:active, &.active, &.disabled, &[disabled]
2535
- color: #ffffff
2536
- background-color: #2f96b4
2537
- *background-color: #2a85a0
2538
- &:active, &.active
2539
- background-color: #24748c \9
2540
-
2541
- .btn-inverse
2542
- color: #ffffff
2543
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
2544
- background-color: #363636
2545
- *background-color: #222222
2546
- background-image: -moz-linear-gradient(top, #444444, #222222)
2547
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222))
2548
- background-image: -webkit-linear-gradient(top, #444444, #222222)
2549
- background-image: -o-linear-gradient(top, #444444, #222222)
2550
- background-image: linear-gradient(to bottom, #444444, #222222)
2551
- background-repeat: repeat-x
2552
- border-color: #222222 #222222 #000000
2553
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2554
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0)
2555
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
2556
- &:hover, &:active, &.active, &.disabled, &[disabled]
2557
- color: #ffffff
2558
- background-color: #222222
2559
- *background-color: #151515
2560
- &:active, &.active
2561
- background-color: #080808 \9
2562
-
2563
- button.btn, input[type="submit"].btn
2564
- *padding-top: 3px
2565
- *padding-bottom: 3px
2566
-
2567
- button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner
2568
- padding: 0
2569
- border: 0
2570
-
2571
- button.btn.btn-large, input[type="submit"].btn.btn-large
2572
- *padding-top: 7px
2573
- *padding-bottom: 7px
2574
-
2575
- button.btn.btn-small, input[type="submit"].btn.btn-small
2576
- *padding-top: 3px
2577
- *padding-bottom: 3px
2578
-
2579
- button.btn.btn-mini, input[type="submit"].btn.btn-mini
2580
- *padding-top: 1px
2581
- *padding-bottom: 1px
2582
-
2583
- .btn-link
2584
- background-color: transparent
2585
- background-image: none
2586
- -webkit-box-shadow: none
2587
- -moz-box-shadow: none
2588
- box-shadow: none
2589
- &:active, &[disabled]
2590
- background-color: transparent
2591
- background-image: none
2592
- -webkit-box-shadow: none
2593
- -moz-box-shadow: none
2594
- box-shadow: none
2595
- color: #0088cc
2596
- cursor: pointer
2597
- border-color: transparent
2598
- -webkit-border-radius: 0
2599
- -moz-border-radius: 0
2600
- border-radius: 0
2601
- &:hover
2602
- color: #005580
2603
- text-decoration: underline
2604
- background-color: transparent
2605
- &[disabled]:hover
2606
- color: #333333
2607
- text-decoration: none
2608
-
2609
- .btn-group
2610
- position: relative
2611
- display: inline-block
2612
- *display: inline
2613
- *margin-left: .3em
2614
- font-size: 0
2615
- white-space: nowrap
2616
- vertical-align: middle
2617
- *zoom: 1
2618
- &:first-child
2619
- *margin-left: 0
2620
- + .btn-group
2621
- margin-left: 5px
2622
-
2623
- .btn-toolbar
2624
- margin-top: 10px
2625
- margin-bottom: 10px
2626
- font-size: 0
2627
- >
2628
- .btn + .btn, .btn-group + .btn, .btn + .btn-group
2629
- margin-left: 5px
2630
-
2631
- .btn-group
2632
- >
2633
- .btn
2634
- position: relative
2635
- -webkit-border-radius: 0
2636
- -moz-border-radius: 0
2637
- border-radius: 0
2638
- + .btn
2639
- margin-left: -1px
2640
- font-size: 14px
2641
- .dropdown-menu, .popover
2642
- font-size: 14px
2643
- .btn-mini
2644
- font-size: 10.5px
2645
- .btn-small
2646
- font-size: 11.9px
2647
- .btn-large
2648
- font-size: 17.5px
2649
- .btn
2650
- &:first-child
2651
- margin-left: 0
2652
- -webkit-border-bottom-left-radius: 4px
2653
- border-bottom-left-radius: 4px
2654
- -webkit-border-top-left-radius: 4px
2655
- border-top-left-radius: 4px
2656
- -moz-border-radius-bottomleft: 4px
2657
- -moz-border-radius-topleft: 4px
2658
- &:last-child
2659
- -webkit-border-top-right-radius: 4px
2660
- border-top-right-radius: 4px
2661
- -webkit-border-bottom-right-radius: 4px
2662
- border-bottom-right-radius: 4px
2663
- -moz-border-radius-topright: 4px
2664
- -moz-border-radius-bottomright: 4px
2665
- .dropdown-toggle
2666
- -webkit-border-top-right-radius: 4px
2667
- border-top-right-radius: 4px
2668
- -webkit-border-bottom-right-radius: 4px
2669
- border-bottom-right-radius: 4px
2670
- -moz-border-radius-topright: 4px
2671
- -moz-border-radius-bottomright: 4px
2672
- .btn.large
2673
- &:first-child
2674
- margin-left: 0
2675
- -webkit-border-bottom-left-radius: 6px
2676
- border-bottom-left-radius: 6px
2677
- -webkit-border-top-left-radius: 6px
2678
- border-top-left-radius: 6px
2679
- -moz-border-radius-bottomleft: 6px
2680
- -moz-border-radius-topleft: 6px
2681
- &:last-child
2682
- -webkit-border-top-right-radius: 6px
2683
- border-top-right-radius: 6px
2684
- -webkit-border-bottom-right-radius: 6px
2685
- border-bottom-right-radius: 6px
2686
- -moz-border-radius-topright: 6px
2687
- -moz-border-radius-bottomright: 6px
2688
- .large.dropdown-toggle
2689
- -webkit-border-top-right-radius: 6px
2690
- border-top-right-radius: 6px
2691
- -webkit-border-bottom-right-radius: 6px
2692
- border-bottom-right-radius: 6px
2693
- -moz-border-radius-topright: 6px
2694
- -moz-border-radius-bottomright: 6px
2695
- .btn
2696
- &:hover, &:focus, &:active, &.active
2697
- z-index: 2
2698
- .dropdown-toggle:active
2699
- outline: 0
2700
- &.open
2701
- .dropdown-toggle
2702
- outline: 0
2703
- background-image: none
2704
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2705
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2706
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2707
- .btn.dropdown-toggle
2708
- background-color: #e6e6e6
2709
- .btn-primary.dropdown-toggle
2710
- background-color: #0044cc
2711
- .btn-warning.dropdown-toggle
2712
- background-color: #f89406
2713
- .btn-danger.dropdown-toggle
2714
- background-color: #bd362f
2715
- .btn-success.dropdown-toggle
2716
- background-color: #51a351
2717
- .btn-info.dropdown-toggle
2718
- background-color: #2f96b4
2719
- .btn-inverse.dropdown-toggle
2720
- background-color: #222222
2721
- >
2722
- .btn + .dropdown-toggle
2723
- *padding-top: 5px
2724
- padding-right: 8px
2725
- *padding-bottom: 5px
2726
- padding-left: 8px
2727
- -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)
2728
- -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)
2729
- 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)
2730
- .btn-mini + .dropdown-toggle
2731
- *padding-top: 2px
2732
- padding-right: 5px
2733
- *padding-bottom: 2px
2734
- padding-left: 5px
2735
- .btn-small + .dropdown-toggle
2736
- *padding-top: 5px
2737
- *padding-bottom: 4px
2738
- .btn-large + .dropdown-toggle
2739
- *padding-top: 7px
2740
- padding-right: 12px
2741
- *padding-bottom: 7px
2742
- padding-left: 12px
2743
-
2744
- .btn .caret
2745
- margin-top: 8px
2746
- margin-left: 0
2747
-
2748
- .btn-mini .caret, .btn-small .caret
2749
- margin-top: 6px
2750
-
2751
- .btn-large .caret
2752
- margin-top: 6px
2753
- border-top-width: 5px
2754
- border-right-width: 5px
2755
- border-left-width: 5px
2756
-
2757
- .dropup .btn-large .caret
2758
- border-bottom-width: 5px
2759
-
2760
- .btn-primary .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret, .btn-success .caret, .btn-inverse .caret
2761
- border-top-color: #ffffff
2762
- border-bottom-color: #ffffff
2763
-
2764
- .btn-group-vertical
2765
- display: inline-block
2766
- *display: inline
2767
- /* IE7 inline-block hack
2768
- *zoom: 1
2769
- >
2770
- .btn
2771
- display: block
2772
- float: none
2773
- max-width: 100%
2774
- -webkit-border-radius: 0
2775
- -moz-border-radius: 0
2776
- border-radius: 0
2777
- + .btn
2778
- margin-top: -1px
2779
- margin-left: 0
2780
- &:first-child
2781
- -webkit-border-radius: 4px 4px 0 0
2782
- -moz-border-radius: 4px 4px 0 0
2783
- border-radius: 4px 4px 0 0
2784
- &:last-child
2785
- -webkit-border-radius: 0 0 4px 4px
2786
- -moz-border-radius: 0 0 4px 4px
2787
- border-radius: 0 0 4px 4px
2788
- .btn-large
2789
- &:first-child
2790
- -webkit-border-radius: 6px 6px 0 0
2791
- -moz-border-radius: 6px 6px 0 0
2792
- border-radius: 6px 6px 0 0
2793
- &:last-child
2794
- -webkit-border-radius: 0 0 6px 6px
2795
- -moz-border-radius: 0 0 6px 6px
2796
- border-radius: 0 0 6px 6px
2797
-
2798
- .alert
2799
- padding: 8px 35px 8px 14px
2800
- margin-bottom: 20px
2801
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5)
2802
- background-color: #fcf8e3
2803
- border: 1px solid #fbeed5
2804
- -webkit-border-radius: 4px
2805
- -moz-border-radius: 4px
2806
- border-radius: 4px
2807
- color: #c09853
2808
- h4
2809
- color: #c09853
2810
- margin: 0
2811
- .close
2812
- position: relative
2813
- top: -2px
2814
- right: -21px
2815
- line-height: 20px
2816
-
2817
- .alert-success
2818
- color: #468847
2819
- background-color: #dff0d8
2820
- border-color: #d6e9c6
2821
- h4
2822
- color: #468847
2823
-
2824
- .alert-danger, .alert-error
2825
- color: #b94a48
2826
- background-color: #f2dede
2827
- border-color: #eed3d7
2828
-
2829
- .alert-danger h4, .alert-error h4
2830
- color: #b94a48
2831
-
2832
- .alert-info
2833
- color: #3a87ad
2834
- background-color: #d9edf7
2835
- border-color: #bce8f1
2836
- h4
2837
- color: #3a87ad
2838
-
2839
- .alert-block
2840
- padding-top: 14px
2841
- padding-bottom: 14px
2842
- >
2843
- p, ul
2844
- margin-bottom: 0
2845
- p + p
2846
- margin-top: 5px
2847
-
2848
- .nav
2849
- margin-bottom: 20px
2850
- margin-left: 0
2851
- list-style: none
2852
- >
2853
- li > a
2854
- display: block
2855
- &:hover
2856
- text-decoration: none
2857
- background-color: #eeeeee
2858
- > img
2859
- max-width: none
2860
- .pull-right
2861
- float: right
2862
-
2863
- .nav-header
2864
- display: block
2865
- padding: 3px 15px
2866
- font-size: 11px
2867
- font-weight: bold
2868
- line-height: 20px
2869
- color: #999999
2870
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5)
2871
- text-transform: uppercase
2872
-
2873
- .nav li + .nav-header
2874
- margin-top: 9px
2875
-
2876
- .nav-list
2877
- padding-right: 15px
2878
- padding-left: 15px
2879
- margin-bottom: 0
2880
- > li > a, .nav-header
2881
- margin-right: -15px
2882
- margin-left: -15px
2883
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5)
2884
- >
2885
- li > a
2886
- padding: 3px 15px
2887
- .active > a
2888
- color: #ffffff
2889
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2)
2890
- background-color: #0088cc
2891
- &:hover
2892
- color: #ffffff
2893
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2)
2894
- background-color: #0088cc
2895
- [class^="icon-"], [class*=" icon-"]
2896
- margin-right: 2px
2897
- .divider
2898
- *width: 100%
2899
- height: 1px
2900
- margin: 9px 1px
2901
- *margin: -5px 0 5px
2902
- overflow: hidden
2903
- background-color: #e5e5e5
2904
- border-bottom: 1px solid #ffffff
2905
-
2906
- .nav-tabs, .nav-pills
2907
- *zoom: 1
2908
-
2909
- .nav-tabs:before, .nav-pills:before, .nav-tabs:after, .nav-pills:after
2910
- display: table
2911
- line-height: 0
2912
- content: ""
2913
-
2914
- .nav-tabs:after, .nav-pills:after
2915
- clear: both
2916
-
2917
- .nav-tabs > li, .nav-pills > li
2918
- float: left
2919
-
2920
- .nav-tabs > li > a, .nav-pills > li > a
2921
- padding-right: 12px
2922
- padding-left: 12px
2923
- margin-right: 2px
2924
- line-height: 14px
2925
-
2926
- .nav-tabs
2927
- border-bottom: 1px solid #ddd
2928
- >
2929
- li
2930
- margin-bottom: -1px
2931
- > a
2932
- padding-top: 8px
2933
- padding-bottom: 8px
2934
- line-height: 20px
2935
- border: 1px solid transparent
2936
- -webkit-border-radius: 4px 4px 0 0
2937
- -moz-border-radius: 4px 4px 0 0
2938
- border-radius: 4px 4px 0 0
2939
- &:hover
2940
- border-color: #eeeeee #eeeeee #dddddd
2941
- .active > a
2942
- color: #555555
2943
- cursor: default
2944
- background-color: #ffffff
2945
- border: 1px solid #ddd
2946
- border-bottom-color: transparent
2947
- &:hover
2948
- color: #555555
2949
- cursor: default
2950
- background-color: #ffffff
2951
- border: 1px solid #ddd
2952
- border-bottom-color: transparent
2953
-
2954
- .nav-pills >
2955
- li > a
2956
- padding-top: 8px
2957
- padding-bottom: 8px
2958
- margin-top: 2px
2959
- margin-bottom: 2px
2960
- -webkit-border-radius: 5px
2961
- -moz-border-radius: 5px
2962
- border-radius: 5px
2963
- .active > a
2964
- color: #ffffff
2965
- background-color: #0088cc
2966
- &:hover
2967
- color: #ffffff
2968
- background-color: #0088cc
2969
-
2970
- .nav-stacked > li
2971
- float: none
2972
- > a
2973
- margin-right: 0
2974
-
2975
- .nav-tabs.nav-stacked
2976
- border-bottom: 0
2977
- > li
2978
- > a
2979
- border: 1px solid #ddd
2980
- -webkit-border-radius: 0
2981
- -moz-border-radius: 0
2982
- border-radius: 0
2983
- &:first-child > a
2984
- -webkit-border-top-right-radius: 4px
2985
- border-top-right-radius: 4px
2986
- -webkit-border-top-left-radius: 4px
2987
- border-top-left-radius: 4px
2988
- -moz-border-radius-topright: 4px
2989
- -moz-border-radius-topleft: 4px
2990
- &:last-child > a
2991
- -webkit-border-bottom-right-radius: 4px
2992
- border-bottom-right-radius: 4px
2993
- -webkit-border-bottom-left-radius: 4px
2994
- border-bottom-left-radius: 4px
2995
- -moz-border-radius-bottomright: 4px
2996
- -moz-border-radius-bottomleft: 4px
2997
- > a:hover
2998
- z-index: 2
2999
- border-color: #ddd
3000
-
3001
- .nav-pills.nav-stacked > li
3002
- > a
3003
- margin-bottom: 3px
3004
- &:last-child > a
3005
- margin-bottom: 1px
3006
-
3007
- .nav-tabs .dropdown-menu
3008
- -webkit-border-radius: 0 0 6px 6px
3009
- -moz-border-radius: 0 0 6px 6px
3010
- border-radius: 0 0 6px 6px
3011
-
3012
- .nav-pills .dropdown-menu
3013
- -webkit-border-radius: 6px
3014
- -moz-border-radius: 6px
3015
- border-radius: 6px
3016
-
3017
- .nav .dropdown-toggle
3018
- .caret
3019
- margin-top: 6px
3020
- border-top-color: #0088cc
3021
- border-bottom-color: #0088cc
3022
- &:hover .caret
3023
- border-top-color: #005580
3024
- border-bottom-color: #005580
3025
-
3026
- /* move down carets for tabs
3027
-
3028
- .nav-tabs .dropdown-toggle .caret
3029
- margin-top: 8px
3030
-
3031
- .nav .active .dropdown-toggle .caret
3032
- border-top-color: #fff
3033
- border-bottom-color: #fff
3034
-
3035
- .nav-tabs .active .dropdown-toggle .caret
3036
- border-top-color: #555555
3037
- border-bottom-color: #555555
3038
-
3039
- .nav > .dropdown.active > a:hover
3040
- cursor: pointer
3041
-
3042
- .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle
3043
- color: #ffffff
3044
- background-color: #999999
3045
- border-color: #999999
3046
-
3047
- .nav
3048
- > li.dropdown.open.active > a:hover
3049
- color: #ffffff
3050
- background-color: #999999
3051
- border-color: #999999
3052
- li.dropdown.open
3053
- .caret, &.active .caret, a:hover .caret
3054
- border-top-color: #ffffff
3055
- border-bottom-color: #ffffff
3056
- opacity: 1
3057
- filter: alpha(opacity = 100)
3058
-
3059
- .tabs-stacked .open > a:hover
3060
- border-color: #999999
3061
-
3062
- .tabbable
3063
- *zoom: 1
3064
- &:before
3065
- display: table
3066
- line-height: 0
3067
- content: ""
3068
- &:after
3069
- display: table
3070
- line-height: 0
3071
- content: ""
3072
- clear: both
3073
-
3074
- .tab-content
3075
- overflow: auto
3076
-
3077
- .tabs-below > .nav-tabs, .tabs-right > .nav-tabs, .tabs-left > .nav-tabs
3078
- border-bottom: 0
3079
-
3080
- .tab-content > .tab-pane, .pill-content > .pill-pane
3081
- display: none
3082
-
3083
- .tab-content > .active, .pill-content > .active
3084
- display: block
3085
-
3086
- .tabs-below > .nav-tabs
3087
- border-top: 1px solid #ddd
3088
- >
3089
- li
3090
- margin-top: -1px
3091
- margin-bottom: 0
3092
- > a
3093
- -webkit-border-radius: 0 0 4px 4px
3094
- -moz-border-radius: 0 0 4px 4px
3095
- border-radius: 0 0 4px 4px
3096
- &:hover
3097
- border-top-color: #ddd
3098
- border-bottom-color: transparent
3099
- .active > a
3100
- border-color: transparent #ddd #ddd #ddd
3101
- &:hover
3102
- border-color: transparent #ddd #ddd #ddd
3103
-
3104
- .tabs-left > .nav-tabs > li, .tabs-right > .nav-tabs > li
3105
- float: none
3106
-
3107
- .tabs-left > .nav-tabs > li > a, .tabs-right > .nav-tabs > li > a
3108
- min-width: 74px
3109
- margin-right: 0
3110
- margin-bottom: 3px
3111
-
3112
- .tabs-left > .nav-tabs
3113
- float: left
3114
- margin-right: 19px
3115
- border-right: 1px solid #ddd
3116
- > li > a
3117
- margin-right: -1px
3118
- -webkit-border-radius: 4px 0 0 4px
3119
- -moz-border-radius: 4px 0 0 4px
3120
- border-radius: 4px 0 0 4px
3121
- &:hover
3122
- border-color: #eeeeee #dddddd #eeeeee #eeeeee
3123
- .active > a
3124
- border-color: #ddd transparent #ddd #ddd
3125
- *border-right-color: #ffffff
3126
- &:hover
3127
- border-color: #ddd transparent #ddd #ddd
3128
- *border-right-color: #ffffff
3129
-
3130
- .tabs-right > .nav-tabs
3131
- float: right
3132
- margin-left: 19px
3133
- border-left: 1px solid #ddd
3134
- > li > a
3135
- margin-left: -1px
3136
- -webkit-border-radius: 0 4px 4px 0
3137
- -moz-border-radius: 0 4px 4px 0
3138
- border-radius: 0 4px 4px 0
3139
- &:hover
3140
- border-color: #eeeeee #eeeeee #eeeeee #dddddd
3141
- .active > a
3142
- border-color: #ddd #ddd #ddd transparent
3143
- *border-left-color: #ffffff
3144
- &:hover
3145
- border-color: #ddd #ddd #ddd transparent
3146
- *border-left-color: #ffffff
3147
-
3148
- .nav > .disabled > a
3149
- color: #999999
3150
- &:hover
3151
- text-decoration: none
3152
- cursor: default
3153
- background-color: transparent
3154
-
3155
- .navbar
3156
- *position: relative
3157
- *z-index: 2
3158
- margin-bottom: 20px
3159
- overflow: visible
3160
-
3161
- .navbar-inner
3162
- min-height: 40px
3163
- padding-right: 20px
3164
- padding-left: 20px
3165
- background-color: #fafafa
3166
- background-image: -moz-linear-gradient(top, white, #f2f2f2)
3167
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#f2f2f2))
3168
- background-image: -webkit-linear-gradient(top, white, #f2f2f2)
3169
- background-image: -o-linear-gradient(top, white, #f2f2f2)
3170
- background-image: linear-gradient(to bottom, white, #f2f2f2)
3171
- background-repeat: repeat-x
3172
- border: 1px solid #d4d4d4
3173
- -webkit-border-radius: 4px
3174
- -moz-border-radius: 4px
3175
- border-radius: 4px
3176
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0)
3177
- *zoom: 1
3178
- -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065)
3179
- -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065)
3180
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065)
3181
- &:before
3182
- display: table
3183
- line-height: 0
3184
- content: ""
3185
- &:after
3186
- display: table
3187
- line-height: 0
3188
- content: ""
3189
- clear: both
3190
-
3191
- .navbar .container
3192
- width: auto
3193
-
3194
- .nav-collapse.collapse
3195
- height: auto
3196
- overflow: visible
3197
-
3198
- .navbar .brand
3199
- display: block
3200
- float: left
3201
- padding: 10px 20px 10px
3202
- margin-left: -20px
3203
- font-size: 20px
3204
- font-weight: 200
3205
- color: #777777
3206
- text-shadow: 0 1px 0 #ffffff
3207
- &:hover
3208
- text-decoration: none
3209
-
3210
- .navbar-text
3211
- margin-bottom: 0
3212
- line-height: 40px
3213
- color: #777777
3214
-
3215
- .navbar-link
3216
- color: #777777
3217
- &:hover
3218
- color: #333333
3219
-
3220
- .navbar
3221
- .divider-vertical
3222
- height: 40px
3223
- margin: 0 9px
3224
- border-right: 1px solid #ffffff
3225
- border-left: 1px solid #f2f2f2
3226
- .btn
3227
- margin-top: 5px
3228
- .btn-group
3229
- margin-top: 5px
3230
- .btn
3231
- margin-top: 0
3232
- .input-prepend .btn, .input-append .btn
3233
- margin-top: 0
3234
-
3235
- .navbar-form
3236
- margin-bottom: 0
3237
- *zoom: 1
3238
- &:before
3239
- display: table
3240
- line-height: 0
3241
- content: ""
3242
- &:after
3243
- display: table
3244
- line-height: 0
3245
- content: ""
3246
- clear: both
3247
- input, select, .radio, .checkbox
3248
- margin-top: 5px
3249
- input, select, .btn
3250
- display: inline-block
3251
- margin-bottom: 0
3252
- input
3253
- &[type="image"], &[type="checkbox"], &[type="radio"]
3254
- margin-top: 3px
3255
- .input-append, .input-prepend
3256
- margin-top: 5px
3257
- white-space: nowrap
3258
- .input-append input, .input-prepend input
3259
- margin-top: 0
3260
-
3261
- .navbar-search
3262
- position: relative
3263
- float: left
3264
- margin-top: 5px
3265
- margin-bottom: 0
3266
- .search-query
3267
- padding: 4px 14px
3268
- margin-bottom: 0
3269
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
3270
- font-size: 13px
3271
- font-weight: normal
3272
- line-height: 1
3273
- -webkit-border-radius: 15px
3274
- -moz-border-radius: 15px
3275
- border-radius: 15px
3276
-
3277
- .navbar-static-top
3278
- position: static
3279
- margin-bottom: 0
3280
- .navbar-inner
3281
- -webkit-border-radius: 0
3282
- -moz-border-radius: 0
3283
- border-radius: 0
3284
-
3285
- .navbar-fixed-top, .navbar-fixed-bottom
3286
- position: fixed
3287
- right: 0
3288
- left: 0
3289
- z-index: 1030
3290
- margin-bottom: 0
3291
-
3292
- .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner
3293
- border-width: 0 0 1px
3294
-
3295
- .navbar-fixed-bottom .navbar-inner
3296
- border-width: 1px 0 0
3297
-
3298
- .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner
3299
- padding-right: 0
3300
- padding-left: 0
3301
- -webkit-border-radius: 0
3302
- -moz-border-radius: 0
3303
- border-radius: 0
3304
-
3305
- .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container
3306
- width: 940px
3307
-
3308
- .navbar-fixed-top
3309
- top: 0
3310
- .navbar-inner
3311
- -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1)
3312
- -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1)
3313
- box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1)
3314
-
3315
- .navbar-static-top .navbar-inner
3316
- -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1)
3317
- -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1)
3318
- box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1)
3319
-
3320
- .navbar-fixed-bottom
3321
- bottom: 0
3322
- .navbar-inner
3323
- -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1)
3324
- -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1)
3325
- box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1)
3326
-
3327
- .navbar
3328
- .nav
3329
- position: relative
3330
- left: 0
3331
- display: block
3332
- float: left
3333
- margin: 0 10px 0 0
3334
- &.pull-right
3335
- float: right
3336
- margin-right: 0
3337
- > li
3338
- float: left
3339
- > a
3340
- float: none
3341
- padding: 10px 15px 10px
3342
- color: #777777
3343
- text-decoration: none
3344
- text-shadow: 0 1px 0 #ffffff
3345
- .dropdown-toggle .caret
3346
- margin-top: 8px
3347
- >
3348
- li > a
3349
- &:focus, &:hover
3350
- color: #333333
3351
- text-decoration: none
3352
- background-color: transparent
3353
- .active > a
3354
- color: #555555
3355
- text-decoration: none
3356
- background-color: #e5e5e5
3357
- -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125)
3358
- -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125)
3359
- box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125)
3360
- &:hover, &:focus
3361
- color: #555555
3362
- text-decoration: none
3363
- background-color: #e5e5e5
3364
- -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125)
3365
- -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125)
3366
- box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125)
3367
- .btn-navbar
3368
- display: none
3369
- float: right
3370
- padding: 7px 10px
3371
- margin-right: 5px
3372
- margin-left: 5px
3373
- color: #ffffff
3374
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
3375
- background-color: #ededed
3376
- *background-color: #e5e5e5
3377
- background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5)
3378
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5))
3379
- background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5)
3380
- background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5)
3381
- background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5)
3382
- background-repeat: repeat-x
3383
- border-color: #e5e5e5 #e5e5e5 #bfbfbf
3384
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
3385
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0)
3386
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
3387
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075)
3388
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075)
3389
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075)
3390
- &:hover, &:active, &.active, &.disabled, &[disabled]
3391
- color: #ffffff
3392
- background-color: #e5e5e5
3393
- *background-color: #d9d9d9
3394
- &:active, &.active
3395
- background-color: #cccccc \9
3396
- .icon-bar
3397
- display: block
3398
- width: 18px
3399
- height: 2px
3400
- background-color: #f5f5f5
3401
- -webkit-border-radius: 1px
3402
- -moz-border-radius: 1px
3403
- border-radius: 1px
3404
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25)
3405
- -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25)
3406
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25)
3407
-
3408
- .btn-navbar .icon-bar + .icon-bar
3409
- margin-top: 3px
3410
-
3411
- .navbar .nav > li > .dropdown-menu
3412
- &:before
3413
- position: absolute
3414
- top: -7px
3415
- left: 9px
3416
- display: inline-block
3417
- border-right: 7px solid transparent
3418
- border-bottom: 7px solid #ccc
3419
- border-left: 7px solid transparent
3420
- border-bottom-color: rgba(0, 0, 0, 0.2)
3421
- content: ''
3422
- &:after
3423
- position: absolute
3424
- top: -6px
3425
- left: 10px
3426
- display: inline-block
3427
- border-right: 6px solid transparent
3428
- border-bottom: 6px solid #ffffff
3429
- border-left: 6px solid transparent
3430
- content: ''
3431
-
3432
- .navbar-fixed-bottom .nav > li > .dropdown-menu
3433
- &:before
3434
- top: auto
3435
- bottom: -7px
3436
- border-top: 7px solid #ccc
3437
- border-bottom: 0
3438
- border-top-color: rgba(0, 0, 0, 0.2)
3439
- &:after
3440
- top: auto
3441
- bottom: -6px
3442
- border-top: 6px solid #ffffff
3443
- border-bottom: 0
3444
-
3445
- .navbar
3446
- .nav li.dropdown
3447
- > a:hover .caret
3448
- border-top-color: #555555
3449
- border-bottom-color: #555555
3450
- &.open > .dropdown-toggle, &.active > .dropdown-toggle
3451
- color: #555555
3452
- background-color: #e5e5e5
3453
- &.open
3454
- &.active > .dropdown-toggle
3455
- color: #555555
3456
- background-color: #e5e5e5
3457
- > .dropdown-toggle .caret
3458
- border-top-color: #555555
3459
- border-bottom-color: #555555
3460
- > .dropdown-toggle .caret
3461
- border-top-color: #777777
3462
- border-bottom-color: #777777
3463
- &.active > .dropdown-toggle .caret, &.open.active > .dropdown-toggle .caret
3464
- border-top-color: #555555
3465
- border-bottom-color: #555555
3466
- .pull-right > li > .dropdown-menu, .nav > li > .dropdown-menu.pull-right
3467
- right: 0
3468
- left: auto
3469
- .pull-right > li > .dropdown-menu:before, .nav > li > .dropdown-menu.pull-right:before
3470
- right: 12px
3471
- left: auto
3472
- .pull-right > li > .dropdown-menu:after, .nav > li > .dropdown-menu.pull-right:after
3473
- right: 13px
3474
- left: auto
3475
- .pull-right > li > .dropdown-menu .dropdown-menu, .nav > li > .dropdown-menu.pull-right .dropdown-menu
3476
- right: 100%
3477
- left: auto
3478
- margin-right: -1px
3479
- margin-left: 0
3480
- -webkit-border-radius: 6px 0 6px 6px
3481
- -moz-border-radius: 6px 0 6px 6px
3482
- border-radius: 6px 0 6px 6px
3483
-
3484
- .navbar-inverse
3485
- .navbar-inner
3486
- background-color: #1b1b1b
3487
- background-image: -moz-linear-gradient(top, #222222, #111111)
3488
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111))
3489
- background-image: -webkit-linear-gradient(top, #222222, #111111)
3490
- background-image: -o-linear-gradient(top, #222222, #111111)
3491
- background-image: linear-gradient(to bottom, #222222, #111111)
3492
- background-repeat: repeat-x
3493
- border-color: #252525
3494
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0)
3495
- .brand, .nav > li > a
3496
- color: #999999
3497
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
3498
- .brand:hover, .nav > li > a:hover
3499
- color: #ffffff
3500
- .brand, .navbar-text
3501
- color: #999999
3502
- .nav
3503
- > li > a
3504
- &:focus, &:hover
3505
- color: #ffffff
3506
- background-color: transparent
3507
- .active > a
3508
- color: #ffffff
3509
- background-color: #111111
3510
- &:hover, &:focus
3511
- color: #ffffff
3512
- background-color: #111111
3513
- .navbar-link
3514
- color: #999999
3515
- &:hover
3516
- color: #ffffff
3517
- .divider-vertical
3518
- border-right-color: #222222
3519
- border-left-color: #111111
3520
- .nav li.dropdown
3521
- &.open > .dropdown-toggle, &.active > .dropdown-toggle
3522
- color: #ffffff
3523
- background-color: #111111
3524
- &.open
3525
- &.active > .dropdown-toggle
3526
- color: #ffffff
3527
- background-color: #111111
3528
- > .dropdown-toggle .caret
3529
- border-top-color: #ffffff
3530
- border-bottom-color: #ffffff
3531
- >
3532
- a:hover .caret
3533
- border-top-color: #ffffff
3534
- border-bottom-color: #ffffff
3535
- .dropdown-toggle .caret
3536
- border-top-color: #999999
3537
- border-bottom-color: #999999
3538
- &.active > .dropdown-toggle .caret, &.open.active > .dropdown-toggle .caret
3539
- border-top-color: #ffffff
3540
- border-bottom-color: #ffffff
3541
- .navbar-search .search-query
3542
- color: #ffffff
3543
- background-color: #515151
3544
- border-color: #111111
3545
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15)
3546
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15)
3547
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15)
3548
- -webkit-transition: none
3549
- -moz-transition: none
3550
- -o-transition: none
3551
- transition: none
3552
- &:-moz-placeholder, &:-ms-input-placeholder, &::-webkit-input-placeholder
3553
- color: #cccccc
3554
- &:focus, &.focused
3555
- padding: 5px 15px
3556
- color: #333333
3557
- text-shadow: 0 1px 0 #ffffff
3558
- background-color: #ffffff
3559
- border: 0
3560
- outline: 0
3561
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15)
3562
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15)
3563
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15)
3564
- .btn-navbar
3565
- color: #ffffff
3566
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
3567
- background-color: #0e0e0e
3568
- *background-color: #040404
3569
- background-image: -moz-linear-gradient(top, #151515, #040404)
3570
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404))
3571
- background-image: -webkit-linear-gradient(top, #151515, #040404)
3572
- background-image: -o-linear-gradient(top, #151515, #040404)
3573
- background-image: linear-gradient(to bottom, #151515, #040404)
3574
- background-repeat: repeat-x
3575
- border-color: #040404 #040404 #000000
3576
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
3577
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0)
3578
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
3579
- &:hover, &:active, &.active, &.disabled, &[disabled]
3580
- color: #ffffff
3581
- background-color: #040404
3582
- *background-color: #000000
3583
- &:active, &.active
3584
- background-color: #000000 \9
3585
-
3586
- .breadcrumb
3587
- padding: 8px 15px
3588
- margin: 0 0 20px
3589
- list-style: none
3590
- background-color: #f5f5f5
3591
- -webkit-border-radius: 4px
3592
- -moz-border-radius: 4px
3593
- border-radius: 4px
3594
- >
3595
- li
3596
- display: inline-block
3597
- *display: inline
3598
- text-shadow: 0 1px 0 #ffffff
3599
- *zoom: 1
3600
- > .divider
3601
- padding: 0 5px
3602
- color: #ccc
3603
- .active
3604
- color: #999999
3605
-
3606
- .pagination
3607
- margin: 20px 0
3608
- ul
3609
- display: inline-block
3610
- *display: inline
3611
- margin-bottom: 0
3612
- margin-left: 0
3613
- -webkit-border-radius: 4px
3614
- -moz-border-radius: 4px
3615
- border-radius: 4px
3616
- *zoom: 1
3617
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
3618
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
3619
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
3620
- >
3621
- li
3622
- display: inline
3623
- >
3624
- a, span
3625
- float: left
3626
- padding: 4px 12px
3627
- line-height: 20px
3628
- text-decoration: none
3629
- background-color: #ffffff
3630
- border: 1px solid #dddddd
3631
- border-left-width: 0
3632
- a:hover
3633
- background-color: #f5f5f5
3634
- .active >
3635
- a, span
3636
- background-color: #f5f5f5
3637
- a, span
3638
- color: #999999
3639
- cursor: default
3640
- .disabled >
3641
- span
3642
- color: #999999
3643
- cursor: default
3644
- background-color: transparent
3645
- a
3646
- color: #999999
3647
- cursor: default
3648
- background-color: transparent
3649
- &:hover
3650
- color: #999999
3651
- cursor: default
3652
- background-color: transparent
3653
- li
3654
- &:first-child >
3655
- a, span
3656
- border-left-width: 1px
3657
- -webkit-border-bottom-left-radius: 4px
3658
- border-bottom-left-radius: 4px
3659
- -webkit-border-top-left-radius: 4px
3660
- border-top-left-radius: 4px
3661
- -moz-border-radius-bottomleft: 4px
3662
- -moz-border-radius-topleft: 4px
3663
- &:last-child >
3664
- a, span
3665
- -webkit-border-top-right-radius: 4px
3666
- border-top-right-radius: 4px
3667
- -webkit-border-bottom-right-radius: 4px
3668
- border-bottom-right-radius: 4px
3669
- -moz-border-radius-topright: 4px
3670
- -moz-border-radius-bottomright: 4px
3671
-
3672
- .pagination-centered
3673
- text-align: center
3674
-
3675
- .pagination-right
3676
- text-align: right
3677
-
3678
- .pagination-large ul > li
3679
- >
3680
- a, span
3681
- padding: 11px 19px
3682
- font-size: 17.5px
3683
- &:first-child >
3684
- a, span
3685
- -webkit-border-bottom-left-radius: 6px
3686
- border-bottom-left-radius: 6px
3687
- -webkit-border-top-left-radius: 6px
3688
- border-top-left-radius: 6px
3689
- -moz-border-radius-bottomleft: 6px
3690
- -moz-border-radius-topleft: 6px
3691
- &:last-child >
3692
- a, span
3693
- -webkit-border-top-right-radius: 6px
3694
- border-top-right-radius: 6px
3695
- -webkit-border-bottom-right-radius: 6px
3696
- border-bottom-right-radius: 6px
3697
- -moz-border-radius-topright: 6px
3698
- -moz-border-radius-bottomright: 6px
3699
-
3700
- .pagination-mini ul > li:first-child > a, .pagination-small ul > li:first-child > a, .pagination-mini ul > li:first-child > span, .pagination-small ul > li:first-child > span
3701
- -webkit-border-bottom-left-radius: 3px
3702
- border-bottom-left-radius: 3px
3703
- -webkit-border-top-left-radius: 3px
3704
- border-top-left-radius: 3px
3705
- -moz-border-radius-bottomleft: 3px
3706
- -moz-border-radius-topleft: 3px
3707
-
3708
- .pagination-mini ul > li:last-child > a, .pagination-small ul > li:last-child > a, .pagination-mini ul > li:last-child > span
3709
- -webkit-border-top-right-radius: 3px
3710
- border-top-right-radius: 3px
3711
- -webkit-border-bottom-right-radius: 3px
3712
- border-bottom-right-radius: 3px
3713
- -moz-border-radius-topright: 3px
3714
- -moz-border-radius-bottomright: 3px
3715
-
3716
- .pagination-small ul > li
3717
- &:last-child > span
3718
- -webkit-border-top-right-radius: 3px
3719
- border-top-right-radius: 3px
3720
- -webkit-border-bottom-right-radius: 3px
3721
- border-bottom-right-radius: 3px
3722
- -moz-border-radius-topright: 3px
3723
- -moz-border-radius-bottomright: 3px
3724
- >
3725
- a, span
3726
- padding: 2px 10px
3727
- font-size: 11.9px
3728
-
3729
- .pagination-mini ul > li >
3730
- a, span
3731
- padding: 0 6px
3732
- font-size: 10.5px
3733
-
3734
- .pager
3735
- margin: 20px 0
3736
- text-align: center
3737
- list-style: none
3738
- *zoom: 1
3739
- &:before
3740
- display: table
3741
- line-height: 0
3742
- content: ""
3743
- &:after
3744
- display: table
3745
- line-height: 0
3746
- content: ""
3747
- clear: both
3748
- li
3749
- display: inline
3750
- >
3751
- a, span
3752
- display: inline-block
3753
- padding: 5px 14px
3754
- background-color: #fff
3755
- border: 1px solid #ddd
3756
- -webkit-border-radius: 15px
3757
- -moz-border-radius: 15px
3758
- border-radius: 15px
3759
- a:hover
3760
- text-decoration: none
3761
- background-color: #f5f5f5
3762
- .next >
3763
- a, span
3764
- float: right
3765
- .previous >
3766
- a, span
3767
- float: left
3768
- .disabled >
3769
- a
3770
- color: #999999
3771
- cursor: default
3772
- background-color: #fff
3773
- &:hover
3774
- color: #999999
3775
- cursor: default
3776
- background-color: #fff
3777
- span
3778
- color: #999999
3779
- cursor: default
3780
- background-color: #fff
3781
-
3782
- .modal-backdrop
3783
- position: fixed
3784
- top: 0
3785
- right: 0
3786
- bottom: 0
3787
- left: 0
3788
- z-index: 1040
3789
- background-color: #000000
3790
- &.fade
3791
- opacity: 0
3792
- &.in
3793
- opacity: 0.8
3794
- filter: alpha(opacity = 80)
3795
- opacity: 0.8
3796
- filter: alpha(opacity = 80)
3797
-
3798
- .modal
3799
- position: fixed
3800
- top: 10%
3801
- left: 50%
3802
- z-index: 1050
3803
- width: 560px
3804
- margin-left: -280px
3805
- background-color: #ffffff
3806
- border: 1px solid #999
3807
- border: 1px solid rgba(0, 0, 0, 0.3)
3808
- *border: 1px solid #999
3809
- -webkit-border-radius: 6px
3810
- -moz-border-radius: 6px
3811
- border-radius: 6px
3812
- outline: none
3813
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3814
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3815
- box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3816
- -webkit-background-clip: padding-box
3817
- -moz-background-clip: padding-box
3818
- background-clip: padding-box
3819
- &.fade
3820
- top: -25%
3821
- -webkit-transition: opacity 0.3s linear, top 0.3s ease-out
3822
- -moz-transition: opacity 0.3s linear, top 0.3s ease-out
3823
- -o-transition: opacity 0.3s linear, top 0.3s ease-out
3824
- transition: opacity 0.3s linear, top 0.3s ease-out
3825
- &.in
3826
- top: 10%
3827
-
3828
- .modal-header
3829
- padding: 9px 15px
3830
- border-bottom: 1px solid #eee
3831
- .close
3832
- margin-top: 2px
3833
- h3
3834
- margin: 0
3835
- line-height: 30px
3836
-
3837
- .modal-body
3838
- position: relative
3839
- max-height: 400px
3840
- padding: 15px
3841
- overflow-y: auto
3842
-
3843
- .modal-form
3844
- margin-bottom: 0
3845
-
3846
- .modal-footer
3847
- padding: 14px 15px 15px
3848
- margin-bottom: 0
3849
- text-align: right
3850
- background-color: #f5f5f5
3851
- border-top: 1px solid #ddd
3852
- -webkit-border-radius: 0 0 6px 6px
3853
- -moz-border-radius: 0 0 6px 6px
3854
- border-radius: 0 0 6px 6px
3855
- *zoom: 1
3856
- -webkit-box-shadow: inset 0 1px 0 #ffffff
3857
- -moz-box-shadow: inset 0 1px 0 #ffffff
3858
- box-shadow: inset 0 1px 0 #ffffff
3859
- &:before
3860
- display: table
3861
- line-height: 0
3862
- content: ""
3863
- &:after
3864
- display: table
3865
- line-height: 0
3866
- content: ""
3867
- clear: both
3868
- .btn + .btn
3869
- margin-bottom: 0
3870
- margin-left: 5px
3871
- .btn-group .btn + .btn
3872
- margin-left: -1px
3873
- .btn-block + .btn-block
3874
- margin-left: 0
3875
-
3876
- .tooltip
3877
- position: absolute
3878
- z-index: 1030
3879
- display: block
3880
- padding: 5px
3881
- font-size: 11px
3882
- opacity: 0
3883
- filter: alpha(opacity = 0)
3884
- visibility: visible
3885
- &.in
3886
- opacity: 0.8
3887
- filter: alpha(opacity = 80)
3888
- &.top
3889
- margin-top: -3px
3890
- &.right
3891
- margin-left: 3px
3892
- &.bottom
3893
- margin-top: 3px
3894
- &.left
3895
- margin-left: -3px
3896
-
3897
- .tooltip-inner
3898
- max-width: 200px
3899
- padding: 3px 8px
3900
- color: #ffffff
3901
- text-align: center
3902
- text-decoration: none
3903
- background-color: #000000
3904
- -webkit-border-radius: 4px
3905
- -moz-border-radius: 4px
3906
- border-radius: 4px
3907
-
3908
- .tooltip-arrow
3909
- position: absolute
3910
- width: 0
3911
- height: 0
3912
- border-color: transparent
3913
- border-style: solid
3914
-
3915
- .tooltip
3916
- &.top .tooltip-arrow
3917
- bottom: 0
3918
- left: 50%
3919
- margin-left: -5px
3920
- border-top-color: #000000
3921
- border-width: 5px 5px 0
3922
- &.right .tooltip-arrow
3923
- top: 50%
3924
- left: 0
3925
- margin-top: -5px
3926
- border-right-color: #000000
3927
- border-width: 5px 5px 5px 0
3928
- &.left .tooltip-arrow
3929
- top: 50%
3930
- right: 0
3931
- margin-top: -5px
3932
- border-left-color: #000000
3933
- border-width: 5px 0 5px 5px
3934
- &.bottom .tooltip-arrow
3935
- top: 0
3936
- left: 50%
3937
- margin-left: -5px
3938
- border-bottom-color: #000000
3939
- border-width: 0 5px 5px
3940
-
3941
- .popover
3942
- position: absolute
3943
- top: 0
3944
- left: 0
3945
- z-index: 1010
3946
- display: none
3947
- width: 236px
3948
- padding: 1px
3949
- text-align: left
3950
- white-space: normal
3951
- background-color: #ffffff
3952
- border: 1px solid #ccc
3953
- border: 1px solid rgba(0, 0, 0, 0.2)
3954
- -webkit-border-radius: 6px
3955
- -moz-border-radius: 6px
3956
- border-radius: 6px
3957
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
3958
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
3959
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
3960
- -webkit-background-clip: padding-box
3961
- -moz-background-clip: padding
3962
- background-clip: padding-box
3963
- &.top
3964
- margin-top: -10px
3965
- &.right
3966
- margin-left: 10px
3967
- &.bottom
3968
- margin-top: 10px
3969
- &.left
3970
- margin-left: -10px
3971
-
3972
- .popover-title
3973
- padding: 8px 14px
3974
- margin: 0
3975
- font-size: 14px
3976
- font-weight: normal
3977
- line-height: 18px
3978
- background-color: #f7f7f7
3979
- border-bottom: 1px solid #ebebeb
3980
- -webkit-border-radius: 5px 5px 0 0
3981
- -moz-border-radius: 5px 5px 0 0
3982
- border-radius: 5px 5px 0 0
3983
-
3984
- .popover-content
3985
- padding: 9px 14px
3986
-
3987
- .popover
3988
- .arrow
3989
- position: absolute
3990
- display: block
3991
- width: 0
3992
- height: 0
3993
- border-color: transparent
3994
- border-style: solid
3995
- &:after
3996
- position: absolute
3997
- display: block
3998
- width: 0
3999
- height: 0
4000
- border-color: transparent
4001
- border-style: solid
4002
- border-width: 10px
4003
- content: ""
4004
- border-width: 11px
4005
- &.top .arrow
4006
- bottom: -11px
4007
- left: 50%
4008
- margin-left: -11px
4009
- border-top-color: #999
4010
- border-top-color: rgba(0, 0, 0, 0.25)
4011
- border-bottom-width: 0
4012
- &:after
4013
- bottom: 1px
4014
- margin-left: -10px
4015
- border-top-color: #ffffff
4016
- border-bottom-width: 0
4017
- &.right .arrow
4018
- top: 50%
4019
- left: -11px
4020
- margin-top: -11px
4021
- border-right-color: #999
4022
- border-right-color: rgba(0, 0, 0, 0.25)
4023
- border-left-width: 0
4024
- &:after
4025
- bottom: -10px
4026
- left: 1px
4027
- border-right-color: #ffffff
4028
- border-left-width: 0
4029
- &.bottom .arrow
4030
- top: -11px
4031
- left: 50%
4032
- margin-left: -11px
4033
- border-bottom-color: #999
4034
- border-bottom-color: rgba(0, 0, 0, 0.25)
4035
- border-top-width: 0
4036
- &:after
4037
- top: 1px
4038
- margin-left: -10px
4039
- border-bottom-color: #ffffff
4040
- border-top-width: 0
4041
- &.left .arrow
4042
- top: 50%
4043
- right: -11px
4044
- margin-top: -11px
4045
- border-left-color: #999
4046
- border-left-color: rgba(0, 0, 0, 0.25)
4047
- border-right-width: 0
4048
- &:after
4049
- right: 1px
4050
- bottom: -10px
4051
- border-left-color: #ffffff
4052
- border-right-width: 0
4053
-
4054
- .thumbnails
4055
- margin-left: -20px
4056
- list-style: none
4057
- *zoom: 1
4058
- &:before
4059
- display: table
4060
- line-height: 0
4061
- content: ""
4062
- &:after
4063
- display: table
4064
- line-height: 0
4065
- content: ""
4066
- clear: both
4067
-
4068
- .row-fluid .thumbnails
4069
- margin-left: 0
4070
-
4071
- .thumbnails > li
4072
- float: left
4073
- margin-bottom: 20px
4074
- margin-left: 20px
4075
-
4076
- .thumbnail
4077
- display: block
4078
- padding: 4px
4079
- line-height: 20px
4080
- border: 1px solid #ddd
4081
- -webkit-border-radius: 4px
4082
- -moz-border-radius: 4px
4083
- border-radius: 4px
4084
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055)
4085
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055)
4086
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055)
4087
- -webkit-transition: all 0.2s ease-in-out
4088
- -moz-transition: all 0.2s ease-in-out
4089
- -o-transition: all 0.2s ease-in-out
4090
- transition: all 0.2s ease-in-out
4091
-
4092
- a.thumbnail:hover
4093
- border-color: #0088cc
4094
- -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
4095
- -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
4096
- box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
4097
-
4098
- .thumbnail
4099
- > img
4100
- display: block
4101
- max-width: 100%
4102
- margin-right: auto
4103
- margin-left: auto
4104
- .caption
4105
- padding: 9px
4106
- color: #555555
4107
-
4108
- .media, .media-body
4109
- overflow: hidden
4110
- *overflow: visible
4111
- zoom: 1
4112
-
4113
- .media
4114
- margin-top: 15px
4115
- .media
4116
- margin-top: 15px
4117
- &:first-child
4118
- margin-top: 0
4119
-
4120
- .media-object
4121
- display: block
4122
-
4123
- .media-heading
4124
- margin: 0 0 5px
4125
-
4126
- .media
4127
- .pull-left
4128
- margin-right: 10px
4129
- .pull-right
4130
- margin-left: 10px
4131
-
4132
- .media-list
4133
- margin-left: 0
4134
- list-style: none
4135
-
4136
- .label, .badge
4137
- display: inline-block
4138
- padding: 2px 4px
4139
- font-size: 11.844px
4140
- font-weight: bold
4141
- line-height: 14px
4142
- color: #ffffff
4143
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
4144
- white-space: nowrap
4145
- vertical-align: baseline
4146
- background-color: #999999
4147
-
4148
- .label
4149
- -webkit-border-radius: 3px
4150
- -moz-border-radius: 3px
4151
- border-radius: 3px
4152
-
4153
- .badge
4154
- padding-right: 9px
4155
- padding-left: 9px
4156
- -webkit-border-radius: 9px
4157
- -moz-border-radius: 9px
4158
- border-radius: 9px
4159
-
4160
- .label:empty, .badge:empty
4161
- display: none
4162
-
4163
- a
4164
- &.label:hover, &.badge:hover
4165
- color: #ffffff
4166
- text-decoration: none
4167
- cursor: pointer
4168
-
4169
- .label-important, .badge-important
4170
- background-color: #b94a48
4171
-
4172
- .label-important[href], .badge-important[href]
4173
- background-color: #953b39
4174
-
4175
- .label-warning, .badge-warning
4176
- background-color: #f89406
4177
-
4178
- .label-warning[href], .badge-warning[href]
4179
- background-color: #c67605
4180
-
4181
- .label-success, .badge-success
4182
- background-color: #468847
4183
-
4184
- .label-success[href], .badge-success[href]
4185
- background-color: #356635
4186
-
4187
- .label-info, .badge-info
4188
- background-color: #3a87ad
4189
-
4190
- .label-info[href], .badge-info[href]
4191
- background-color: #2d6987
4192
-
4193
- .label-inverse, .badge-inverse
4194
- background-color: #333333
4195
-
4196
- .label-inverse[href], .badge-inverse[href]
4197
- background-color: #1a1a1a
4198
-
4199
- .btn
4200
- .label, .badge
4201
- position: relative
4202
- top: -1px
4203
-
4204
- .btn-mini
4205
- .label, .badge
4206
- top: 0
4207
-
4208
- @-webkit-keyframes progress-bar-stripes
4209
- from
4210
- background-position: 40px 0
4211
- to
4212
- background-position: 0 0
4213
-
4214
-
4215
- @-moz-keyframes progress-bar-stripes
4216
- from
4217
- background-position: 40px 0
4218
- to
4219
- background-position: 0 0
4220
-
4221
-
4222
- @-ms-keyframes progress-bar-stripes
4223
- from
4224
- background-position: 40px 0
4225
- to
4226
- background-position: 0 0
4227
-
4228
-
4229
- @-o-keyframes progress-bar-stripes
4230
- from
4231
- background-position: 0 0
4232
- to
4233
- background-position: 40px 0
4234
-
4235
-
4236
- @keyframes progress-bar-stripes
4237
- from
4238
- background-position: 40px 0
4239
- to
4240
- background-position: 0 0
4241
-
4242
-
4243
- .progress
4244
- height: 20px
4245
- margin-bottom: 20px
4246
- overflow: hidden
4247
- background-color: #f7f7f7
4248
- background-image: -moz-linear-gradient(top, whitesmoke, #f9f9f9)
4249
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(whitesmoke), to(#f9f9f9))
4250
- background-image: -webkit-linear-gradient(top, whitesmoke, #f9f9f9)
4251
- background-image: -o-linear-gradient(top, whitesmoke, #f9f9f9)
4252
- background-image: linear-gradient(to bottom, whitesmoke, #f9f9f9)
4253
- background-repeat: repeat-x
4254
- -webkit-border-radius: 4px
4255
- -moz-border-radius: 4px
4256
- border-radius: 4px
4257
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0)
4258
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
4259
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
4260
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
4261
- .bar
4262
- float: left
4263
- width: 0
4264
- height: 100%
4265
- font-size: 12px
4266
- color: #ffffff
4267
- text-align: center
4268
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
4269
- background-color: #0e90d2
4270
- background-image: -moz-linear-gradient(top, #149bdf, #0480be)
4271
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be))
4272
- background-image: -webkit-linear-gradient(top, #149bdf, #0480be)
4273
- background-image: -o-linear-gradient(top, #149bdf, #0480be)
4274
- background-image: linear-gradient(to bottom, #149bdf, #0480be)
4275
- background-repeat: repeat-x
4276
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0)
4277
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15)
4278
- -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15)
4279
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15)
4280
- -webkit-box-sizing: border-box
4281
- -moz-box-sizing: border-box
4282
- box-sizing: border-box
4283
- -webkit-transition: width 0.6s ease
4284
- -moz-transition: width 0.6s ease
4285
- -o-transition: width 0.6s ease
4286
- transition: width 0.6s ease
4287
- + .bar
4288
- -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15)
4289
- -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15)
4290
- box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15)
4291
-
4292
- .progress-striped .bar
4293
- background-color: #149bdf
4294
- 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))
4295
- 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)
4296
- 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)
4297
- 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)
4298
- 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)
4299
- -webkit-background-size: 40px 40px
4300
- -moz-background-size: 40px 40px
4301
- -o-background-size: 40px 40px
4302
- background-size: 40px 40px
4303
-
4304
- .progress.active .bar
4305
- -webkit-animation: progress-bar-stripes 2s linear infinite
4306
- -moz-animation: progress-bar-stripes 2s linear infinite
4307
- -ms-animation: progress-bar-stripes 2s linear infinite
4308
- -o-animation: progress-bar-stripes 2s linear infinite
4309
- animation: progress-bar-stripes 2s linear infinite
4310
-
4311
- .progress-danger .bar, .progress .bar-danger
4312
- background-color: #dd514c
4313
- background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35)
4314
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35))
4315
- background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35)
4316
- background-image: -o-linear-gradient(top, #ee5f5b, #c43c35)
4317
- background-image: linear-gradient(to bottom, #ee5f5b, #c43c35)
4318
- background-repeat: repeat-x
4319
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0)
4320
-
4321
- .progress-danger.progress-striped .bar, .progress-striped .bar-danger
4322
- background-color: #ee5f5b
4323
- 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))
4324
- 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)
4325
- 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)
4326
- 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)
4327
- 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)
4328
-
4329
- .progress-success .bar, .progress .bar-success
4330
- background-color: #5eb95e
4331
- background-image: -moz-linear-gradient(top, #62c462, #57a957)
4332
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957))
4333
- background-image: -webkit-linear-gradient(top, #62c462, #57a957)
4334
- background-image: -o-linear-gradient(top, #62c462, #57a957)
4335
- background-image: linear-gradient(to bottom, #62c462, #57a957)
4336
- background-repeat: repeat-x
4337
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0)
4338
-
4339
- .progress-success.progress-striped .bar, .progress-striped .bar-success
4340
- background-color: #62c462
4341
- 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))
4342
- 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)
4343
- 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)
4344
- 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)
4345
- 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)
4346
-
4347
- .progress-info .bar, .progress .bar-info
4348
- background-color: #4bb1cf
4349
- background-image: -moz-linear-gradient(top, #5bc0de, #339bb9)
4350
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9))
4351
- background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9)
4352
- background-image: -o-linear-gradient(top, #5bc0de, #339bb9)
4353
- background-image: linear-gradient(to bottom, #5bc0de, #339bb9)
4354
- background-repeat: repeat-x
4355
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0)
4356
-
4357
- .progress-info.progress-striped .bar, .progress-striped .bar-info
4358
- background-color: #5bc0de
4359
- 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))
4360
- 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)
4361
- 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)
4362
- 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)
4363
- 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)
4364
-
4365
- .progress-warning .bar, .progress .bar-warning
4366
- background-color: #faa732
4367
- background-image: -moz-linear-gradient(top, #fbb450, #f89406)
4368
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406))
4369
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406)
4370
- background-image: -o-linear-gradient(top, #fbb450, #f89406)
4371
- background-image: linear-gradient(to bottom, #fbb450, #f89406)
4372
- background-repeat: repeat-x
4373
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0)
4374
-
4375
- .progress-warning.progress-striped .bar, .progress-striped .bar-warning
4376
- background-color: #fbb450
4377
- 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))
4378
- 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)
4379
- 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)
4380
- 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)
4381
- 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)
4382
-
4383
- .accordion
4384
- margin-bottom: 20px
4385
-
4386
- .accordion-group
4387
- margin-bottom: 2px
4388
- border: 1px solid #e5e5e5
4389
- -webkit-border-radius: 4px
4390
- -moz-border-radius: 4px
4391
- border-radius: 4px
4392
-
4393
- .accordion-heading
4394
- border-bottom: 0
4395
- .accordion-toggle
4396
- display: block
4397
- padding: 8px 15px
4398
-
4399
- .accordion-toggle
4400
- cursor: pointer
4401
-
4402
- .accordion-inner
4403
- padding: 9px 15px
4404
- border-top: 1px solid #e5e5e5
4405
-
4406
- .carousel
4407
- position: relative
4408
- margin-bottom: 20px
4409
- line-height: 1
4410
-
4411
- .carousel-inner
4412
- position: relative
4413
- width: 100%
4414
- overflow: hidden
4415
- >
4416
- .item
4417
- position: relative
4418
- display: none
4419
- -webkit-transition: 0.6s ease-in-out left
4420
- -moz-transition: 0.6s ease-in-out left
4421
- -o-transition: 0.6s ease-in-out left
4422
- transition: 0.6s ease-in-out left
4423
- > img
4424
- display: block
4425
- line-height: 1
4426
- .active, .next, .prev
4427
- display: block
4428
- .active
4429
- left: 0
4430
- .next, .prev
4431
- position: absolute
4432
- top: 0
4433
- width: 100%
4434
- .next
4435
- left: 100%
4436
- .prev
4437
- left: -100%
4438
- .next.left, .prev.right
4439
- left: 0
4440
- .active
4441
- &.left
4442
- left: -100%
4443
- &.right
4444
- left: 100%
4445
-
4446
- .carousel-control
4447
- position: absolute
4448
- top: 40%
4449
- left: 15px
4450
- width: 40px
4451
- height: 40px
4452
- margin-top: -20px
4453
- font-size: 60px
4454
- font-weight: 100
4455
- line-height: 30px
4456
- color: #ffffff
4457
- text-align: center
4458
- background: #222222
4459
- border: 3px solid #ffffff
4460
- -webkit-border-radius: 23px
4461
- -moz-border-radius: 23px
4462
- border-radius: 23px
4463
- opacity: 0.5
4464
- filter: alpha(opacity = 50)
4465
- &.right
4466
- right: 15px
4467
- left: auto
4468
- &:hover
4469
- color: #ffffff
4470
- text-decoration: none
4471
- opacity: 0.9
4472
- filter: alpha(opacity = 90)
4473
-
4474
- .carousel-caption
4475
- position: absolute
4476
- right: 0
4477
- bottom: 0
4478
- left: 0
4479
- padding: 15px
4480
- background: #333333
4481
- background: rgba(0, 0, 0, 0.75)
4482
- h4, p
4483
- line-height: 20px
4484
- color: #ffffff
4485
- h4
4486
- margin: 0 0 5px
4487
- p
4488
- margin-bottom: 0
4489
-
4490
- .hero-unit
4491
- padding: 60px
4492
- margin-bottom: 30px
4493
- font-size: 18px
4494
- font-weight: 200
4495
- line-height: 30px
4496
- color: inherit
4497
- background-color: #eeeeee
4498
- -webkit-border-radius: 6px
4499
- -moz-border-radius: 6px
4500
- border-radius: 6px
4501
- h1
4502
- margin-bottom: 0
4503
- font-size: 60px
4504
- line-height: 1
4505
- letter-spacing: -1px
4506
- color: inherit
4507
- li
4508
- line-height: 30px
4509
-
4510
- .pull-right
4511
- float: right
4512
-
4513
- .pull-left
4514
- float: left
4515
-
4516
- .hide
4517
- display: none
4518
-
4519
- .show
4520
- display: block
4521
-
4522
- .invisible
4523
- visibility: hidden
4524
-
4525
- .affix
4526
- position: fixed