kickstrap_rails 0.9.0RC

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +165 -0
  4. data/README.md +23 -0
  5. data/Rakefile +2 -0
  6. data/kickstrap_rails.gemspec +20 -0
  7. data/lib/kickstrap_rails/version.rb +3 -0
  8. data/lib/kickstrap_rails.rb +6 -0
  9. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  10. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.svg +175 -0
  11. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.svgz +0 -0
  12. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
  13. data/vendor/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  14. data/vendor/assets/fonts/icomoon/full-webfont.eot +0 -0
  15. data/vendor/assets/fonts/icomoon/full-webfont.svg +157 -0
  16. data/vendor/assets/fonts/icomoon/full-webfont.ttf +0 -0
  17. data/vendor/assets/fonts/icomoon/full-webfont.woff +0 -0
  18. data/vendor/assets/images/chosen/chosen-sprite.png +0 -0
  19. data/vendor/assets/javascripts/bootstrap/bootstrap-alert.js +94 -0
  20. data/vendor/assets/javascripts/bootstrap/bootstrap-button.js +100 -0
  21. data/vendor/assets/javascripts/bootstrap/bootstrap-carousel.js +161 -0
  22. data/vendor/assets/javascripts/bootstrap/bootstrap-collapse.js +138 -0
  23. data/vendor/assets/javascripts/bootstrap/bootstrap-dropdown.js +92 -0
  24. data/vendor/assets/javascripts/bootstrap/bootstrap-modal.js +210 -0
  25. data/vendor/assets/javascripts/bootstrap/bootstrap-popover.js +95 -0
  26. data/vendor/assets/javascripts/bootstrap/bootstrap-scrollspy.js +125 -0
  27. data/vendor/assets/javascripts/bootstrap/bootstrap-tab.js +130 -0
  28. data/vendor/assets/javascripts/bootstrap/bootstrap-tooltip.js +270 -0
  29. data/vendor/assets/javascripts/bootstrap/bootstrap-transition.js +51 -0
  30. data/vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js +271 -0
  31. data/vendor/assets/javascripts/bootstrap.js +12 -0
  32. data/vendor/assets/javascripts/kickstrap/chosen/chosen.jquery.js +952 -0
  33. data/vendor/assets/javascripts/kickstrap/jgrowl/jquery.jgrowl.js +330 -0
  34. data/vendor/assets/javascripts/kickstrap.js +3 -0
  35. data/vendor/assets/stylesheets/bootstrap/accordion.less +28 -0
  36. data/vendor/assets/stylesheets/bootstrap/alerts.less +70 -0
  37. data/vendor/assets/stylesheets/bootstrap/bootstrap.less +65 -0
  38. data/vendor/assets/stylesheets/bootstrap/breadcrumbs.less +22 -0
  39. data/vendor/assets/stylesheets/bootstrap/button-groups.less +148 -0
  40. data/vendor/assets/stylesheets/bootstrap/buttons.less +183 -0
  41. data/vendor/assets/stylesheets/bootstrap/carousel.less +121 -0
  42. data/vendor/assets/stylesheets/bootstrap/close.less +18 -0
  43. data/vendor/assets/stylesheets/bootstrap/code.less +57 -0
  44. data/vendor/assets/stylesheets/bootstrap/component-animations.less +18 -0
  45. data/vendor/assets/stylesheets/bootstrap/dropdowns.less +130 -0
  46. data/vendor/assets/stylesheets/bootstrap/forms.less +522 -0
  47. data/vendor/assets/stylesheets/bootstrap/grid.less +8 -0
  48. data/vendor/assets/stylesheets/bootstrap/hero-unit.less +20 -0
  49. data/vendor/assets/stylesheets/bootstrap/labels.less +32 -0
  50. data/vendor/assets/stylesheets/bootstrap/layouts.less +17 -0
  51. data/vendor/assets/stylesheets/bootstrap/mixins.less +590 -0
  52. data/vendor/assets/stylesheets/bootstrap/modals.less +83 -0
  53. data/vendor/assets/stylesheets/bootstrap/navbar.less +299 -0
  54. data/vendor/assets/stylesheets/bootstrap/navs.less +353 -0
  55. data/vendor/assets/stylesheets/bootstrap/pager.less +30 -0
  56. data/vendor/assets/stylesheets/bootstrap/pagination.less +55 -0
  57. data/vendor/assets/stylesheets/bootstrap/popovers.less +49 -0
  58. data/vendor/assets/stylesheets/bootstrap/progress-bars.less +95 -0
  59. data/vendor/assets/stylesheets/bootstrap/reset.less +126 -0
  60. data/vendor/assets/stylesheets/bootstrap/scaffolding.less +29 -0
  61. data/vendor/assets/stylesheets/bootstrap/sprites.less +158 -0
  62. data/vendor/assets/stylesheets/bootstrap/tables.less +150 -0
  63. data/vendor/assets/stylesheets/bootstrap/thumbnails.less +35 -0
  64. data/vendor/assets/stylesheets/bootstrap/tooltip.less +35 -0
  65. data/vendor/assets/stylesheets/bootstrap/type.less +218 -0
  66. data/vendor/assets/stylesheets/bootstrap/utilities.less +23 -0
  67. data/vendor/assets/stylesheets/bootstrap/variables.less +107 -0
  68. data/vendor/assets/stylesheets/bootstrap/wells.less +17 -0
  69. data/vendor/assets/stylesheets/kickstrap/animate/animate.css +3813 -0
  70. data/vendor/assets/stylesheets/kickstrap/chosen/chosen.less +392 -0
  71. data/vendor/assets/stylesheets/kickstrap/fontawesome/font-awesome.less +218 -0
  72. data/vendor/assets/stylesheets/kickstrap/icomoon/icomoon.less +123 -0
  73. data/vendor/assets/stylesheets/kickstrap/jgrowl/jquery.jgrowl.less +105 -0
  74. data/vendor/assets/stylesheets/kickstrap/overrides.less +271 -0
  75. data/vendor/assets/stylesheets/kickstrap/themes/amelia/amelia.less +647 -0
  76. data/vendor/assets/stylesheets/kickstrap/themes/amelia/variables.less +112 -0
  77. data/vendor/assets/stylesheets/kickstrap/themes/amelia.css.less +2 -0
  78. data/vendor/assets/stylesheets/kickstrap/themes/cerulean/cerulean.less +122 -0
  79. data/vendor/assets/stylesheets/kickstrap/themes/cerulean/variables.less +108 -0
  80. data/vendor/assets/stylesheets/kickstrap/themes/cerulean.css.less +2 -0
  81. data/vendor/assets/stylesheets/kickstrap/themes/cyborg/cyborg.less +511 -0
  82. data/vendor/assets/stylesheets/kickstrap/themes/cyborg/variables.less +110 -0
  83. data/vendor/assets/stylesheets/kickstrap/themes/cyborg.css.less +2 -0
  84. data/vendor/assets/stylesheets/kickstrap/themes/journal/journal.less +139 -0
  85. data/vendor/assets/stylesheets/kickstrap/themes/journal/variables.less +114 -0
  86. data/vendor/assets/stylesheets/kickstrap/themes/journal.css.less +2 -0
  87. data/vendor/assets/stylesheets/kickstrap/themes/readable/readable.less +454 -0
  88. data/vendor/assets/stylesheets/kickstrap/themes/readable/variables.less +108 -0
  89. data/vendor/assets/stylesheets/kickstrap/themes/readable.css.less +2 -0
  90. data/vendor/assets/stylesheets/kickstrap/themes/sandra/sandra.less +115 -0
  91. data/vendor/assets/stylesheets/kickstrap/themes/sandra/variables.less +110 -0
  92. data/vendor/assets/stylesheets/kickstrap/themes/sandra.css.less +2 -0
  93. data/vendor/assets/stylesheets/kickstrap/themes/simplex/simplex.less +107 -0
  94. data/vendor/assets/stylesheets/kickstrap/themes/simplex/variables.less +108 -0
  95. data/vendor/assets/stylesheets/kickstrap/themes/simplex.css.less +2 -0
  96. data/vendor/assets/stylesheets/kickstrap/themes/slate/slate.less +417 -0
  97. data/vendor/assets/stylesheets/kickstrap/themes/slate/variables.less +203 -0
  98. data/vendor/assets/stylesheets/kickstrap/themes/slate.css.less +2 -0
  99. data/vendor/assets/stylesheets/kickstrap/themes/spacelab/spacelab.less +174 -0
  100. data/vendor/assets/stylesheets/kickstrap/themes/spacelab/variables.less +107 -0
  101. data/vendor/assets/stylesheets/kickstrap/themes/spacelab.css.less +2 -0
  102. data/vendor/assets/stylesheets/kickstrap/themes/spruce/spruce.less +474 -0
  103. data/vendor/assets/stylesheets/kickstrap/themes/spruce/variables.less +108 -0
  104. data/vendor/assets/stylesheets/kickstrap/themes/spruce.css.less +2 -0
  105. data/vendor/assets/stylesheets/kickstrap/themes/superhero/superhero.less +634 -0
  106. data/vendor/assets/stylesheets/kickstrap/themes/superhero/variables.less +108 -0
  107. data/vendor/assets/stylesheets/kickstrap/themes/superhero.css.less +2 -0
  108. data/vendor/assets/stylesheets/kickstrap/themes/united/united.less +101 -0
  109. data/vendor/assets/stylesheets/kickstrap/themes/united/variables.less +110 -0
  110. data/vendor/assets/stylesheets/kickstrap/themes/united.css.less +2 -0
  111. data/vendor/assets/stylesheets/kickstrap.css.less +1 -0
  112. metadata +189 -0
@@ -0,0 +1,647 @@
1
+ // Bootswatch.less
2
+ // Swatch: Amelia
3
+ // -----------------------------------------------------
4
+
5
+ // TYPOGRAPHY
6
+ // -----------------------------------------------------
7
+
8
+ @import url('http://fonts.googleapis.com/css?family=Lobster');
9
+ @import url('http://fonts.googleapis.com/css?family=Cabin:400,700');
10
+ @import "variables.less";
11
+
12
+ h1, h2, h3, h4, h5, h6,
13
+ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
14
+ color: @textColor;
15
+ font-weight: normal;
16
+ }
17
+
18
+ input, button, select, textarea,
19
+ .navbar-search .search-query,
20
+ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
21
+ font-family: @baseFontFamily;
22
+ }
23
+
24
+ .muted {
25
+ color: rgba(256, 256, 256, 0.5);
26
+ }
27
+
28
+ .navbar .brand, h1, h2, h3, h4, h5, legend {
29
+ font-family: 'Lobster', cursive;
30
+ }
31
+
32
+ .hero-unit {
33
+ color: #4397A2;
34
+ h1,h2,h3,h4,h5 {color: #4397A2;}
35
+ }
36
+
37
+
38
+ // SCAFFOLDING
39
+ // -----------------------------------------------------
40
+
41
+ body {
42
+ background-color: #4397A2;
43
+ #gradient > .radial(lighten(#0F8790, 7%), #0F8790);
44
+ }
45
+
46
+ hr {
47
+ border-bottom: 1px solid rgba(256, 256, 256, 0.3);
48
+ }
49
+
50
+ .page-header {
51
+ border-bottom: 0px solid transparent;
52
+ }
53
+
54
+ footer.footer {
55
+ border-top: 1px solid rgba(256, 256, 256, 0.3);
56
+ }
57
+
58
+ footer.footer p {
59
+ color: @textColor;
60
+ }
61
+
62
+ // NAVBAR
63
+ // -----------------------------------------------------
64
+
65
+ .navbar {
66
+ .navbar-inner {
67
+ .border-radius(0);
68
+ }
69
+
70
+ .brand {
71
+ padding-top: 12px;
72
+ font-size: 24px;
73
+ font-weight: normal;
74
+ }
75
+
76
+ .nav > li > a {
77
+ padding-top: 17px;
78
+ padding-bottom: 14px;
79
+ text-shadow: none;
80
+ color: @textColor;
81
+ }
82
+
83
+ .nav > li.active > a {
84
+ color: @white;
85
+ background-color: lighten(@navbarBackground, 10%);
86
+ }
87
+
88
+ .nav > li > a:hover,
89
+ .nav > li.active > a:hover {
90
+ background-color: lighten(@navbarBackground, 10%);
91
+ }
92
+
93
+ .navbar-search {
94
+ margin-top: 10px;
95
+ }
96
+
97
+ .navbar-search .search-query {
98
+ border: 2px solid lighten(@navbarBackground, 10%);
99
+ background-color: transparent;
100
+ .border-radius(0);
101
+ .box-shadow(none);
102
+
103
+ &:focus, &.focus {
104
+ background-color: @grayLighter;
105
+ border-color: @grayLighter;
106
+ text-shadow: none;
107
+ padding: 4px 9px;
108
+ .box-shadow(none);
109
+ }
110
+
111
+ }
112
+ }
113
+
114
+ .navbar .nav > li.dropdown.open > .dropdown-menu a:hover,
115
+ div.subnav .nav > li.dropdown.open > .dropdown-menu a:hover,
116
+ .dropdown-menu > li > a:hover,
117
+ .nav .dropdown.open > .dropdown-menu > li > a:hover {
118
+ background-color: rgba(0, 57, 59, 0.9);
119
+ }
120
+
121
+ div.subnav {
122
+ background-color: rgba(42, 99, 105, 0.9);
123
+ background-image: none;
124
+ border: 0px solid transparent;
125
+ .border-radius(0);
126
+ .box-shadow(none);
127
+
128
+ .nav > li.dropdown.open > a {
129
+ border-color: transparent;
130
+ background-color: rgba(256, 256, 256, 0.4);
131
+ }
132
+
133
+ .nav > li > a {
134
+ color: @textColor;
135
+ border-color: transparent;
136
+ }
137
+
138
+ .nav > li:first-child > a,
139
+ .nav > li:first-child > a:hover {
140
+ .border-radius(0);
141
+ }
142
+
143
+ .nav > .active > a {
144
+ background-color: transparent;
145
+ border-color: transparent;
146
+ color: @textColor;
147
+ .box-shadow(none);
148
+ }
149
+
150
+ .nav > .active > a:hover,
151
+ .nav > li > a:hover,
152
+ .nav > li.active > a:hover, {
153
+ border-right-color: transparent;
154
+ background-color: rgba(256, 256, 256, 0.4);
155
+ color: @textColor;
156
+ }
157
+ }
158
+
159
+ div.subnav .nav > li:first-child > a:hover {
160
+ border-left-color: rgba(256, 256, 256, 0.4);
161
+ border-left-width: 1px;
162
+ }
163
+
164
+ div.subnav-fixed {
165
+ top: 50px;
166
+ }
167
+
168
+ .navbar .nav-collapse.collapse {
169
+
170
+ li > a {
171
+ color: @textColor;
172
+ .border-radius(0);
173
+ }
174
+
175
+ li > a:hover {
176
+ background-color: lighten(@navbarBackground, 10%);
177
+ }
178
+
179
+ .navbar-form, .navbar-search {
180
+ .box-shadow(none);
181
+ border-color: lighten(@navbarBackground, 10%);
182
+ }
183
+
184
+ .navbar-search .search-query {
185
+ border: 2px solid @textColor;
186
+ }
187
+ }
188
+
189
+ // BUTTONS
190
+ // -----------------------------------------------------
191
+
192
+ .buttonBackgroundCustom(@color) {
193
+
194
+ background-image: none;
195
+ background-color: @color;
196
+
197
+ &:hover, &:active, &.active, &.disabled, &[disabled] {
198
+ background-color: darken(@color, 5%);
199
+ text-shadow: none;
200
+ }
201
+
202
+ &:active, &.active {
203
+ background-color: darken(@color, 15%);
204
+ .box-shadow(none);
205
+ }
206
+
207
+ // IE 7 + 8 can't handle box-shadow to show active, so we darken a bit ourselves
208
+ &:active,
209
+ &.active {
210
+ background-color: darken(@color, 15%) e("\9");
211
+ }
212
+ }
213
+
214
+ .btn {
215
+ padding: 12px 16px;
216
+ .border-radius(0);
217
+ border: 0px solid transparent;
218
+ text-shadow: none;
219
+ .box-shadow(none);
220
+ .buttonBackgroundCustom(@grayLighter);
221
+ }
222
+
223
+ .btn-group .btn:first-child {
224
+ margin-left: 0;
225
+ -webkit-border-top-left-radius: 0;
226
+ -moz-border-radius-topleft: 0;
227
+ border-top-left-radius: 0;
228
+ -webkit-border-bottom-left-radius: 0;
229
+ -moz-border-radius-bottomleft: 0;
230
+ border-bottom-left-radius: 0;
231
+ }
232
+
233
+ .btn-group .btn:last-child,
234
+ .btn-group .dropdown-toggle {
235
+ -webkit-border-top-right-radius: 0;
236
+ -moz-border-radius-topright: 0;
237
+ border-top-right-radius: 0;
238
+ -webkit-border-bottom-right-radius: 0;
239
+ -moz-border-radius-bottomright: 0;
240
+ border-bottom-right-radius: 0;
241
+ }
242
+
243
+ .btn-group .dropdown-toggle,
244
+ .btn-group.open .dropdown-toggle,
245
+ .btn.open .dropdown-toggle {
246
+ .box-shadow(none);
247
+ }
248
+
249
+
250
+ .btn-warning .caret {
251
+ opacity: 0.75;
252
+ border-top-color: @white;
253
+ }
254
+
255
+ .btn-primary {
256
+ .buttonBackgroundCustom(#AD1D28);
257
+ }
258
+
259
+ .btn-warning {
260
+ .buttonBackgroundCustom(@orange);
261
+ }
262
+
263
+ .btn-danger {
264
+ .buttonBackgroundCustom(darken(@yellow, 3%));
265
+ }
266
+
267
+ .btn-success {
268
+ .buttonBackgroundCustom(@green);
269
+ }
270
+
271
+ .btn-info {
272
+ .buttonBackgroundCustom(@purple);
273
+ }
274
+
275
+ .btn-inverse {
276
+ .buttonBackgroundCustom(#27666D);
277
+ }
278
+
279
+ .btn-small {
280
+ padding: 13px 16px 12px;
281
+ }
282
+
283
+ [class^="icon-"], [class*=" icon-"] {
284
+ margin-top: 2px;
285
+ margin-right: 8px;
286
+ }
287
+
288
+ .btn-small [class^="icon-"] {
289
+ margin-top: 1px;
290
+ }
291
+
292
+ .add-on [class^="icon-"] {
293
+ margin-left: 5px;
294
+ }
295
+
296
+ // TABLES
297
+ // -----------------------------------------------------
298
+
299
+ .table {
300
+ background-color: lighten(#147E88, 10%);
301
+ }
302
+
303
+ .table th, .table td,
304
+ .table tbody + tbody {
305
+ border-top: 0px solid transparent;
306
+ }
307
+
308
+ .table-bordered {
309
+ .border-radius(0);
310
+ border: 1px solid lighten(#147E88, 12%);
311
+
312
+ th, td {
313
+ border-top: 1px solid lighten(#147E88, 12%);
314
+ }
315
+
316
+ th + th,
317
+ td + td,
318
+ th + td,
319
+ td + th {
320
+ border-left: 1px solid lighten(#147E88, 12%);
321
+ }
322
+
323
+ }
324
+
325
+ .table-striped {
326
+ tbody {
327
+ tr:nth-child(odd) td,
328
+ tr:nth-child(odd) th {
329
+ background-color: lighten(#147E88, 15%);
330
+ }
331
+ }
332
+ }
333
+
334
+ .table {
335
+ tbody tr:hover td,
336
+ tbody tr:hover th {
337
+ background-color: rgba(256, 256, 256, 0.4);
338
+ }
339
+ }
340
+
341
+
342
+ // FORMS
343
+ // -----------------------------------------------------
344
+
345
+ legend, label, .help-block, .input-file {
346
+ color: @textColor;
347
+ border: 0px solid transparent;
348
+ }
349
+
350
+ input, textarea, .uneditable-input {
351
+ border: 0px solid transparent;
352
+ padding: 10px;
353
+ }
354
+
355
+ select {
356
+ border: 0px solid transparent;
357
+ }
358
+
359
+ button {
360
+ margin-left: 12px;
361
+ }
362
+
363
+ input, textarea, .search-query, .uneditable-input,
364
+ .input-append input, .input-append .uneditable-input,
365
+ .input-prepend input, .input-prepend .uneditable-input {
366
+ border-color: transparent;
367
+ .border-radius(0);
368
+ .box-shadow(none);
369
+ }
370
+
371
+ .form-actions {
372
+ background-color: transparent;
373
+ border-top: 0px solid transparent;
374
+ }
375
+
376
+ .control-group.warning > label,
377
+ .control-group.warning .help-inline {
378
+ color: lighten(@orange, 30%);
379
+ }
380
+
381
+ .control-group.error > label,
382
+ .control-group.error .help-inline {
383
+ color: lighten(@linkColor, 10%);
384
+ }
385
+
386
+ .control-group.success > label,
387
+ .control-group.success .help-inline {
388
+ color: lighten(@green, 20%);
389
+ }
390
+
391
+ .input-prepend .add-on, .input-append .add-on {
392
+ height: 25px;
393
+ padding-top: 9px;
394
+ text-shadow: none;
395
+ border-color: transparent;
396
+ .border-radius(0);
397
+ background-color: @grayLighter;
398
+ }
399
+
400
+ // NAVIGATION
401
+ // -----------------------------------------------------
402
+
403
+ .breadcrumb, .pager > li > a {
404
+ border-color: transparent;
405
+ .border-radius(0);
406
+ .box-shadow(none);
407
+ text-shadow: none;
408
+ }
409
+
410
+ .breadcrumb {
411
+ background-color: #3CB9C6;
412
+ background-image: none;
413
+
414
+ li {
415
+ text-shadow: none;
416
+ }
417
+
418
+ .divider {
419
+ color: @linkColor;
420
+ }
421
+ }
422
+
423
+ .pager > li > a {
424
+ background-color: #3CB9C6;
425
+
426
+ &:hover {
427
+ background-color: #8AD5DC;
428
+ }
429
+ }
430
+
431
+ .pagination {
432
+
433
+ ul {
434
+ background-color: #3CB9C6;
435
+ background-image: none;
436
+ }
437
+
438
+ li a {
439
+ border: 0px solid transparent;
440
+ }
441
+
442
+ .disabled a, .disabled a:hover {
443
+ color: @textColor;
444
+ }
445
+
446
+ li a:hover {
447
+ background-color: rgba(256, 256, 256, 0.4);
448
+ color: @linkColor;
449
+ }
450
+
451
+ .active a, .active a:hover {
452
+ background-color: rgba(256, 256, 256, 0.4);
453
+ color: @textColor;
454
+ }
455
+
456
+ ul,
457
+ li:first-child a,
458
+ li:last-child a {
459
+ .border-radius(0);
460
+ }
461
+
462
+ }
463
+
464
+ .nav-tabs .dropdown.open > .dropdown-toggle,
465
+ .nav-pills .dropdown.open > .dropdown-toggle {
466
+ background-color: #8AD5DC;
467
+ color: @linkColor;
468
+ border-color: transparent;
469
+ }
470
+
471
+ .nav-tabs, .nav-pills {
472
+ border-color: transparent;
473
+
474
+ li > a {
475
+ border-color: transparent;
476
+ .border-radius(0);
477
+ .box-shadow(0);
478
+ }
479
+
480
+ li.active > a,
481
+ li:active > a,
482
+ li.active > a:hover,
483
+ li:active > a:hover {
484
+ color: @textColor;
485
+ }
486
+
487
+ li.active > a,
488
+ li:active > a,
489
+ li > a:hover,
490
+ li.active > a:hover,
491
+ li:active > a:hover {
492
+ background-color: #8AD5DC;
493
+ border-color: transparent;
494
+ text-shadow: none;
495
+ }
496
+ }
497
+
498
+ .nav-tabs, .nav-tabs > li > a {
499
+ border-bottom: 1px solid rgba(256, 256, 256, 0.5);
500
+ }
501
+
502
+ .nav-tabs > li > a {
503
+ background-color: #3CB9C6;
504
+ }
505
+
506
+ .nav-tabs.nav-stacked {
507
+
508
+ li > a:first-child,
509
+ li > a:last-child {
510
+ .border-radius(0);
511
+ }
512
+
513
+ li > a,
514
+ li > a:hover,
515
+ li.active > a,
516
+ li:active > a,
517
+ li.active > a:hover,
518
+ li:active > a:hover {
519
+ border-color: transparent;
520
+ }
521
+ }
522
+
523
+ .nav-list {
524
+ .nav-header {
525
+ text-shadow: none;
526
+ color: @textColor;
527
+ }
528
+
529
+ li > a {
530
+ text-shadow: none;
531
+ }
532
+
533
+ li.active > a,
534
+ li:active > a,
535
+ li > a:hover,
536
+ li.active > a:hover,
537
+ li:active > a:hover {
538
+ background-color: #8AD5DC;
539
+ text-shadow: none;
540
+ }
541
+ }
542
+
543
+
544
+
545
+ // MISCELLANEOUS
546
+ // -----------------------------------------------------
547
+
548
+ .alert, .label, .progress, .well, pre, code {
549
+ border-color: transparent;
550
+ .border-radius(0);
551
+ .box-shadow(none);
552
+ text-shadow: none;
553
+ }
554
+
555
+ code, pre {
556
+ background-color: rgba(256, 256, 256, 0.3);
557
+ padding: 2px;
558
+ }
559
+
560
+ .well {
561
+ background-color: #3CB9C6;
562
+ background-image: none;
563
+ }
564
+
565
+ .label, .label:hover {
566
+ background-color: @grayLighter;
567
+ text-shadow: none;
568
+ color: @grayDark;
569
+ }
570
+
571
+ .label-warning, .label-warning:hover, .alert {
572
+ background-color: @orange;
573
+ color: @textColor;
574
+ }
575
+
576
+ .label-important, .label-important:hover, .alert-error {
577
+ background-color: darken(@yellow, 3%);
578
+ color: @textColor;
579
+ }
580
+
581
+ .label-success, .label-success:hover, .alert-success {
582
+ background-color: @green;
583
+ color: @textColor;
584
+ }
585
+
586
+ .label-info, .label-info:hover, .alert-info {
587
+ background-color: @purple;
588
+ color: @textColor;
589
+ }
590
+
591
+ .alert-heading {
592
+ color: @textColor;
593
+ }
594
+
595
+ .progress {
596
+ background-image: none;
597
+ background-color: #27666D;
598
+
599
+ .bar {
600
+ .box-shadow(none);
601
+ background-image: none;
602
+ background-color: @orange;
603
+ }
604
+ }
605
+
606
+ .progress-danger .bar {
607
+ background-image: none;
608
+ background-color: #AD1D28;
609
+ }
610
+ .progress-danger.progress-striped .bar {
611
+ #gradient > .striped(#AD1D28);
612
+ }
613
+
614
+ .progress-success .bar {
615
+ background-image: none;
616
+ background-color: @green;
617
+ }
618
+ .progress-success.progress-striped .bar {
619
+ #gradient > .striped(@green);
620
+ }
621
+
622
+ .progress-info .bar {
623
+ background-image: none;
624
+ background-color: @blue;
625
+ }
626
+ .progress-info.progress-striped .bar {
627
+ #gradient > .striped(@blue);
628
+ }
629
+
630
+ .thumbnail {
631
+ border: 0px solid transparent;
632
+ .border-radius(0);
633
+ .box-shadow(none);
634
+ }
635
+
636
+ blockquote {
637
+
638
+ border-left-color: lighten(#147E88, 12%);
639
+
640
+ &.pull-right {
641
+ border-right-color: lighten(#147E88, 12%);
642
+ }
643
+
644
+ small {
645
+ color: rgba(256, 256, 256, 0.6);
646
+ }
647
+ }