kickstrap_rails 0.9.0RC

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,139 @@
1
+ // Bootswatch.less
2
+ // Swatch: Journal
3
+ // -----------------------------------------------------
4
+
5
+ // SCAFFOLDING
6
+ // -----------------------------------------------------
7
+
8
+ @import "variables.less";
9
+
10
+ body {
11
+ background-color: @baseBackgroundColor !important;
12
+ }
13
+
14
+ a {
15
+ text-decoration: underline;
16
+ }
17
+
18
+ .nav a, .navbar .brand, .subnav a, a.btn {
19
+ text-decoration: none;
20
+ }
21
+
22
+ // TYPOGRAPHY
23
+ // -----------------------------------------------------
24
+
25
+ @import url('http://fonts.googleapis.com/css?family=Open+Sans:400,700');
26
+
27
+ h1, h2, h3, h4, h5, h6, .brand, .navbar, .subnav a, blockquote > p {
28
+ font-family: 'Open Sans', sans-serif;
29
+ color: @textColor;
30
+ }
31
+
32
+ h1, h2, h3, h4, h5, h6, .brand {
33
+ font-weight: 700;
34
+ }
35
+
36
+ // NAVBAR
37
+ // -----------------------------------------------------
38
+
39
+ .navbar .brand {
40
+ color: @navbarLinkColor;
41
+ text-shadow: none;
42
+ font-weight: bold;
43
+
44
+ &:hover {
45
+ background-color: #EEEEEE;
46
+ }
47
+ }
48
+
49
+ .navbar-inner {
50
+ border-top: 1px solid #E5E5E5;
51
+ @shadow: 0 2px 4px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
52
+ .box-shadow(@shadow);
53
+ }
54
+
55
+ .navbar-inner, .navbar .dropdown-menu, div.subnav, .table-bordered, .well, .prettyprint,
56
+ div.subnav .nav > li:first-child > a, div.subnav .nav > li:first-child > a:hover {
57
+ .border-radius(0);
58
+ }
59
+
60
+ .navbar .nav > li > a {
61
+ text-shadow: none;
62
+ }
63
+
64
+ .navbar .nav .active > a,
65
+ .navbar .nav .active > a:hover {
66
+ color: @navbarLinkColor;
67
+ background-color: rgba(0, 0, 0, 0);
68
+ }
69
+
70
+ .navbar .nav .active > a:hover,
71
+ .navbar .nav > li > a:hover,
72
+ .navbar .nav-collapse .nav li > a:hover {
73
+ background-color: #EEEEEE;
74
+ }
75
+
76
+ .navbar .nav .dropdown-toggle .caret,
77
+ .navbar .nav .open.dropdown .caret {
78
+ border-top-color: @navbarLinkColor;
79
+ opacity: 1;
80
+ }
81
+
82
+ form.navbar-form, form.navbar-search {
83
+ border-top: 0px solid #eee;
84
+ border-bottom: 0px solid #eee;
85
+ }
86
+
87
+ .navbar-search .search-query,
88
+ .navbar-search .search-query:hover {
89
+ border: 1px solid @grayLighter;
90
+ color: @textColor;
91
+ .placeholder(@gray);
92
+ }
93
+
94
+ .dropdown-menu {
95
+ background-color: @baseBackgroundColor;
96
+
97
+ a {
98
+ color: @textColor;
99
+ }
100
+
101
+ li:hover > a {
102
+ background-color: #eee;
103
+ color: @textColor;
104
+ }
105
+ }
106
+
107
+ div.subnav {
108
+ background-color: @baseBackgroundColor;
109
+ background-image: none;
110
+ @shadow: 0 1px 2px rgba(0,0,0,.25);
111
+ .box-shadow(@shadow);
112
+ }
113
+
114
+ .navbar .nav-collapse .nav li > a,
115
+ div.subnav .nav > li > a:hover,
116
+ div.subnav .nav > .active > a,
117
+ div.subnav .nav > .active > a:hover {
118
+ color: @textColor;
119
+ text-decoration: none;
120
+ font-weight: normal;
121
+ }
122
+
123
+ // BUTTONS
124
+ // -----------------------------------------------------
125
+
126
+ .btn-primary {
127
+ .buttonBackground(lighten(@linkColor, 5%), @linkColor);
128
+ }
129
+
130
+
131
+ // MISC
132
+ // -----------------------------------------------------
133
+
134
+ // make shaded elements lightGray
135
+ code, pre, pre.prettyprint, .well, .form-actions,
136
+ .table-striped tbody tr:nth-child(odd) td,
137
+ .table-striped tbody tr:nth-child(odd) th {
138
+ background-color: @grayLighter;
139
+ }
@@ -0,0 +1,114 @@
1
+ // Variables.less
2
+ // Variables to customize the look and feel of Bootstrap
3
+ // Swatch: Journal
4
+ // -----------------------------------------------------
5
+
6
+
7
+ // CUSTOM VALUES
8
+ // -----------------------------------------------------
9
+
10
+ @baseBackgroundColor: #FCFBFD;
11
+
12
+
13
+
14
+ // GLOBAL VALUES
15
+ // --------------------------------------------------
16
+
17
+ // Links
18
+ @linkColor: @textColor;
19
+ @linkColorHover: @gray;
20
+
21
+ // Grays
22
+ @black: #000;
23
+ @grayDarker: #222;
24
+ @grayDark: #333;
25
+ @gray: #888;
26
+ @grayLight: #999;
27
+ @grayLighter: #eee;
28
+ @white: #fff;
29
+
30
+ // Accent colors
31
+ @blue: #369;
32
+ @blueDark: darken(@blue, 15%);
33
+ @green: #22B24C;
34
+ @red: #C00;
35
+ @yellow: #FCFADB;
36
+ @orange: #FF7F00;
37
+ @pink: #CC99CC;
38
+ @purple: #7a43b6;
39
+
40
+ // Typography
41
+ @baseFontSize: 14px;
42
+ @baseFontFamily: 'Open Sans', sans-serif;
43
+ @baseLineHeight: 18px;
44
+ @textColor: @grayDarker;
45
+
46
+ // Buttons
47
+ @primaryButtonBackground: @linkColor;
48
+
49
+
50
+
51
+ // COMPONENT VARIABLES
52
+ // --------------------------------------------------
53
+
54
+ // Z-index master list
55
+ // Used for a bird's eye view of components dependent on the z-axis
56
+ // Try to avoid customizing these :)
57
+ @zindexDropdown: 1000;
58
+ @zindexPopover: 1010;
59
+ @zindexTooltip: 1020;
60
+ @zindexFixedNavbar: 1030;
61
+ @zindexModalBackdrop: 1040;
62
+ @zindexModal: 1050;
63
+
64
+ // Sprite icons path
65
+ @iconSpritePath: "../img/glyphicons-halflings.png";
66
+ @iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
67
+
68
+ // Input placeholder text color
69
+ @placeholderText: @grayLight;
70
+
71
+ // Hr border color
72
+ @hrBorder: @grayLighter;
73
+
74
+ // Navbar
75
+ @navbarHeight: 40px;
76
+ @navbarBackground: @baseBackgroundColor;
77
+ @navbarBackgroundHighlight: @navbarBackground;
78
+ @navbarLinkBackgroundHover: transparent;
79
+
80
+ @navbarText: @textColor;
81
+ @navbarLinkColor: @linkColor;
82
+ @navbarLinkColorHover: @linkColor;
83
+
84
+ // Form states and alerts
85
+ @warningText: #c09853;
86
+ @warningBackground: #fcf8e3;
87
+ @warningBorder: darken(spin(@warningBackground, -10), 3%);
88
+
89
+ @errorText: #b94a48;
90
+ @errorBackground: #f2dede;
91
+ @errorBorder: darken(spin(@errorBackground, -10), 3%);
92
+
93
+ @successText: #468847;
94
+ @successBackground: #dff0d8;
95
+ @successBorder: darken(spin(@successBackground, -10), 5%);
96
+
97
+ @infoText: #3a87ad;
98
+ @infoBackground: #d9edf7;
99
+ @infoBorder: darken(spin(@infoBackground, -10), 7%);
100
+
101
+
102
+
103
+ // GRID
104
+ // --------------------------------------------------
105
+
106
+ // Default 940px grid
107
+ @gridColumns: 12;
108
+ @gridColumnWidth: 60px;
109
+ @gridGutterWidth: 20px;
110
+ @gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
111
+
112
+ // Fluid grid
113
+ @fluidGridColumnWidth: 6.382978723%;
114
+ @fluidGridGutterWidth: 2.127659574%;
@@ -0,0 +1,2 @@
1
+ @import "bootstrap/mixins.less";
2
+ @import "kickstrap/themes/journal/journal.less";
@@ -0,0 +1,454 @@
1
+ // Bootswatch.less
2
+ // Swatch: Readable
3
+ // -----------------------------------------------------
4
+
5
+ // CUSTOM VALUES
6
+ // --------------------------------------------------
7
+
8
+ @import "variables.less";
9
+ @bodyBackgroundColor: #FDFDFA;
10
+
11
+
12
+ // TYPOGRAPHY
13
+ // -----------------------------------------------------
14
+
15
+ h1 {
16
+ font-size: 2em;
17
+ line-height: 2em;
18
+ color: @textColor;
19
+ }
20
+
21
+ h2 {
22
+ font-size: 1.5em;
23
+ line-height: 2em;
24
+ color: @textColor;
25
+ }
26
+
27
+ h3, h4, h5, h6 {
28
+ font-size: 1em;
29
+ line-height: 2em;
30
+ text-transform: none;
31
+ color: @textColor;
32
+ }
33
+
34
+ input, button, select, textarea {
35
+ font-family: @baseFontFamily;
36
+ }
37
+
38
+ input, textarea, select {
39
+ color: @textColor;
40
+ }
41
+
42
+ .muted, .help-block, .uneditable-input, blockquote, small {
43
+ color: @grayLight;
44
+ }
45
+
46
+ small {
47
+ font-size: 13px;
48
+ }
49
+
50
+ // SCAFFOLDING
51
+ // -----------------------------------------------------
52
+
53
+ body {
54
+ background-color: @bodyBackgroundColor;
55
+ padding-top: 20px !important;
56
+ }
57
+
58
+
59
+ // NAVBAR
60
+ // -----------------------------------------------------
61
+
62
+ .navbar {
63
+
64
+ margin-left: 16px;
65
+
66
+ .navbar-inner {
67
+ .box-shadow(none);
68
+ }
69
+
70
+ .brand {
71
+ color: @linkColor;
72
+ font-size: @baseFontSize;
73
+ font-weight: bold;
74
+ line-height: 1em;
75
+ padding: 10px 10px 11px;
76
+
77
+ &:hover {
78
+ color: @linkColorHover;
79
+ }
80
+ }
81
+
82
+ .nav > li > a {
83
+ text-shadow: none;
84
+ padding: 10px;
85
+ }
86
+
87
+ .nav > li.active > a,
88
+ .nav > li:active > a,
89
+ .dropdown.open .dropdown-toggle {
90
+ color: @linkColor;
91
+ }
92
+
93
+ .search-query {
94
+ border: 1px solid #D4D4D4;
95
+ .border-radius(0);
96
+ color: @textColor;
97
+ background-color: @white;
98
+ }
99
+
100
+ .nav .dropdown-toggle .caret,
101
+ .nav .open.dropdown .caret {
102
+ border-top-color: @linkColor;
103
+ opacity: 1;
104
+ }
105
+
106
+ }
107
+
108
+ @media (max-width: 980px) {
109
+ form.navbar-form, form.navbar-search {
110
+ border-top: 1px solid #D4D4D4;
111
+ border-bottom: 1px solid #D4D4D4;
112
+ }
113
+ }
114
+
115
+ .navbar-fixed-top {
116
+ position: static;
117
+ }
118
+
119
+ div.subnav {
120
+ .box-shadow(none);
121
+ .border-radius(0);
122
+ background-color: @white;
123
+ background-image: none;
124
+
125
+ .nav {
126
+ padding: 0;
127
+ }
128
+
129
+ .nav > li.active > a,
130
+ .nav > li:active > a {
131
+ color: @linkColor;
132
+ .box-shadow(none);
133
+ background-color: transparent;
134
+ }
135
+
136
+ .nav > li > a:hover,
137
+ .nav > li.active > a:hover,
138
+ .nav > li:active > a:hover {
139
+ color: @linkColorHover;
140
+ .box-shadow(none);
141
+ background-color: transparent;
142
+ }
143
+ }
144
+
145
+ div.subnav-fixed {
146
+ position: static;
147
+ left: auto;
148
+ width: 100%;
149
+ margin: 0;
150
+ .box-shadow(none);
151
+ .border-radius(4px);
152
+ border: 1px solid #E5E5E5;
153
+
154
+ .nav {
155
+ width: auto;
156
+ padding: 0;
157
+ }
158
+ }
159
+
160
+ .dropdown-menu {
161
+ background-color: @white;
162
+ border: 1px solid #D4D4D4;
163
+ .border-radius(0);
164
+ .box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
165
+
166
+ li > a {
167
+ color: @linkColor;
168
+ }
169
+
170
+ li > a:hover {
171
+ color: @linkColorHover;
172
+ background-color: transparent;
173
+ }
174
+ }
175
+
176
+ .navbar .nav-collapse.collapse {
177
+
178
+ .nav > li > a:last-child {
179
+ margin-bottom: 10px;
180
+ }
181
+
182
+ li > a {
183
+ color: @linkColor;
184
+ .border-radius(0);
185
+ font-weight: normal;
186
+
187
+ &:hover {
188
+ color: @linkColorHover;
189
+ }
190
+ }
191
+
192
+ li > a:hover {
193
+ background: transparent;
194
+ }
195
+
196
+ }
197
+
198
+ // NAV
199
+ // -----------------------------------------------------
200
+
201
+ .nav .dropdown .caret {
202
+ opacity: 1;
203
+ }
204
+
205
+ .nav-tabs {
206
+
207
+ li > a {
208
+ .border-radius(0);
209
+ }
210
+
211
+ li > a:hover {
212
+ background-color: @bodyBackgroundColor;
213
+ }
214
+
215
+ li.active > a,
216
+ li.active > a:hover {
217
+ color: @textColor;
218
+ background-color: @bodyBackgroundColor;
219
+ }
220
+ }
221
+
222
+ .nav-tabs.nav-stacked {
223
+
224
+ li > a {
225
+ background-color: @white;
226
+ }
227
+
228
+
229
+ li.active > a,
230
+ li.active > a:hover,
231
+ li > a:hover {
232
+ background-color: #F5F5F5;
233
+ }
234
+
235
+ li:first-child > a,
236
+ li:last-child > a {
237
+ .border-radius(0);
238
+ }
239
+ }
240
+
241
+ .nav-pills {
242
+
243
+ li > a {
244
+ .border-radius(0);
245
+ }
246
+
247
+ li > a:hover {
248
+ background-color: @bodyBackgroundColor;
249
+ }
250
+
251
+ li.active > a,
252
+ li.active > a:hover {
253
+ color: @textColor;
254
+ background-color: @bodyBackgroundColor;
255
+ }
256
+ }
257
+
258
+ .nav-list {
259
+
260
+ li > a:hover,
261
+ li.active > a,
262
+ li.active > a:hover {
263
+ background-color: transparent;
264
+ text-shadow: none;
265
+ }
266
+
267
+ li.active > a,
268
+ li.active > a:hover {
269
+ color: @textColor;
270
+ }
271
+
272
+ [class^="icon-"] {
273
+ margin-top: 3px;
274
+ opacity: 0.8;
275
+ }
276
+ }
277
+
278
+ .breadcrumb {
279
+ .border-radius(0);
280
+ background-color: @white;
281
+ background-image: none;
282
+ }
283
+
284
+ .pagination {
285
+
286
+ ul {
287
+ .box-shadow(none);
288
+ }
289
+
290
+ li > a {
291
+ padding: 10px 14px;
292
+ }
293
+
294
+
295
+ li.active > a,
296
+ li.active > a:hover {
297
+ color: @textColor;
298
+ background-color: #F5F5F5;
299
+ }
300
+
301
+ li > a,
302
+ li.disabled > a,
303
+ li.disabled > a:hover {
304
+ background-color: @white;
305
+ }
306
+
307
+ li:first-child > a,
308
+ li:last-child > a {
309
+ .border-radius(0);
310
+ }
311
+ }
312
+
313
+ .pager {
314
+
315
+ a {
316
+ .border-radius(0);
317
+ }
318
+ }
319
+
320
+ // BUTTONS
321
+ // -----------------------------------------------------
322
+
323
+ .btn-primary {
324
+ .buttonBackground(lighten(@primaryButtonBackground, 10%), @primaryButtonBackground);
325
+ }
326
+
327
+ .btn [class^="icon-"],
328
+ .btn [class*=" icon-"] {
329
+ margin-top: 4px;
330
+ }
331
+
332
+ .btn-large [class^="icon-"],
333
+ .btn-large [class*=" icon-"] {
334
+ margin-top: 6px;
335
+ margin-right: 2px;
336
+ }
337
+
338
+ .btn-small [class^="icon-"],
339
+ .btn-small [class*=" icon-"] {
340
+ margin-top: 3px;
341
+ }
342
+
343
+ .btn .caret {
344
+ margin-top: 13px;
345
+ }
346
+
347
+ // FORMS
348
+ // -----------------------------------------------------
349
+
350
+
351
+ // TABLES
352
+ // -----------------------------------------------------
353
+
354
+ .table-bordered {
355
+ .border-radius(0);
356
+ }
357
+
358
+ .table-striped {
359
+ tbody {
360
+ tr:nth-child(odd) td,
361
+ tr:nth-child(odd) th {
362
+ background-color: darken(@bodyBackgroundColor, 2%);
363
+ }
364
+ }
365
+ }
366
+
367
+ .table {
368
+ tbody tr:hover td,
369
+ tbody tr:hover th {
370
+ background-color: darken(@bodyBackgroundColor, 4%);
371
+ }
372
+ }
373
+
374
+ // MISCELLANEOUS
375
+ // -----------------------------------------------------
376
+
377
+ .alert,
378
+ .label, .label:hover {
379
+ .border-radius(0);
380
+ border: 1px solid #D4D4D4;
381
+ color: @textColor;
382
+ text-shadow: none;
383
+ }
384
+
385
+ .alert-heading {
386
+ color: @textColor;
387
+ text-shadow: none;
388
+ }
389
+
390
+ .label, .label:hover {
391
+ background-color: @white;
392
+ font-weight: normal;
393
+ font-size: @baseFontSize;
394
+ padding: 4px;
395
+ }
396
+
397
+ .label-important, .label-important:hover { background-color: @errorBackground; }
398
+
399
+ .label-warning, .label-warning:hover { background-color: @warningBackground; }
400
+
401
+ .label-success, .label-success:hover { background-color: @successBackground; }
402
+
403
+ .label-info, .label-info:hover { background-color: @infoBackground; }
404
+
405
+ .well {
406
+ .box-shadow(none);
407
+ border: 1px solid #D4D4D4;
408
+ .border-radius(0);
409
+ background-color: @white;
410
+ }
411
+
412
+ blockquote {
413
+ border-left: 6px solid @grayLighter;
414
+
415
+ &.pull-right {
416
+ border-right: 6px solid @grayLighter;
417
+ }
418
+
419
+ p {
420
+ font-size: 1em;
421
+ line-height: 1.2em;
422
+ }
423
+ }
424
+
425
+ .thumbnail {
426
+ background-color: @white;
427
+ }
428
+
429
+ .thumbnail, .thumbnail > img {
430
+ .border-radius(0);
431
+ .box-shadow(none);
432
+ }
433
+
434
+ code, pre {
435
+ .border-radius(0);
436
+ background-color: @white;
437
+ }
438
+
439
+ .page-header {
440
+ padding-bottom: 1em;
441
+ border-bottom: 2px solid @grayLighter;
442
+ }
443
+
444
+ .form-actions {
445
+ background-color: transparent;
446
+ border-top: 1px solid #D4D4D4;
447
+ padding-top: 2em;
448
+ }
449
+
450
+ footer.footer {
451
+ padding-top: 2em;
452
+ padding-bottom: 3em;
453
+ border-top: 2px solid @grayLighter;
454
+ }