bootstrap_sass_rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +17 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +44 -0
- data/Rakefile +1 -0
- data/app/assets/javascripts/bootstrap.js +12 -0
- data/app/assets/javascripts/bootstrap/affix.js +126 -0
- data/app/assets/javascripts/bootstrap/alert.js +98 -0
- data/app/assets/javascripts/bootstrap/button.js +109 -0
- data/app/assets/javascripts/bootstrap/carousel.js +217 -0
- data/app/assets/javascripts/bootstrap/collapse.js +179 -0
- data/app/assets/javascripts/bootstrap/dropdown.js +154 -0
- data/app/assets/javascripts/bootstrap/modal.js +246 -0
- data/app/assets/javascripts/bootstrap/popover.js +117 -0
- data/app/assets/javascripts/bootstrap/scrollspy.js +158 -0
- data/app/assets/javascripts/bootstrap/tab.js +135 -0
- data/app/assets/javascripts/bootstrap/tooltip.js +386 -0
- data/app/assets/javascripts/bootstrap/transition.js +56 -0
- data/app/assets/stylesheets/bootstrap.css.sass +59 -0
- data/app/assets/stylesheets/bootstrap/_alerts.css.sass +55 -0
- data/app/assets/stylesheets/bootstrap/_badges.css.sass +50 -0
- data/app/assets/stylesheets/bootstrap/_breadcrumbs.css.sass +19 -0
- data/app/assets/stylesheets/bootstrap/_button-groups.css.sass +210 -0
- data/app/assets/stylesheets/bootstrap/_buttons.css.sass +135 -0
- data/app/assets/stylesheets/bootstrap/_carousel.css.sass +165 -0
- data/app/assets/stylesheets/bootstrap/_close.css.sass +28 -0
- data/app/assets/stylesheets/bootstrap/_code.css.sass +49 -0
- data/app/assets/stylesheets/bootstrap/_component-animations.css.sass +25 -0
- data/app/assets/stylesheets/bootstrap/_dropdowns.css.sass +166 -0
- data/app/assets/stylesheets/bootstrap/_forms.css.sass +309 -0
- data/app/assets/stylesheets/bootstrap/_glyphicons.css.sass +827 -0
- data/app/assets/stylesheets/bootstrap/_grid.css.sass +483 -0
- data/app/assets/stylesheets/bootstrap/_input-groups.css.sass +117 -0
- data/app/assets/stylesheets/bootstrap/_jumbotron.css.sass +28 -0
- data/app/assets/stylesheets/bootstrap/_labels.css.sass +46 -0
- data/app/assets/stylesheets/bootstrap/_list-group.css.sass +71 -0
- data/app/assets/stylesheets/bootstrap/_media.css.sass +47 -0
- data/app/assets/stylesheets/bootstrap/_mixins.css.sass +754 -0
- data/app/assets/stylesheets/bootstrap/_modals.css.sass +127 -0
- data/app/assets/stylesheets/bootstrap/_navbar.css.sass +457 -0
- data/app/assets/stylesheets/bootstrap/_navs.css.sass +171 -0
- data/app/assets/stylesheets/bootstrap/_normalize.css.sass +375 -0
- data/app/assets/stylesheets/bootstrap/_pager.css.sass +39 -0
- data/app/assets/stylesheets/bootstrap/_pagination.css.sass +66 -0
- data/app/assets/stylesheets/bootstrap/_panels.css.sass +114 -0
- data/app/assets/stylesheets/bootstrap/_popovers.css.sass +124 -0
- data/app/assets/stylesheets/bootstrap/_print.css.sass +66 -0
- data/app/assets/stylesheets/bootstrap/_progress-bars.css.sass +90 -0
- data/app/assets/stylesheets/bootstrap/_responsive-utilities.css.sass +152 -0
- data/app/assets/stylesheets/bootstrap/_scaffolding.css.sass +108 -0
- data/app/assets/stylesheets/bootstrap/_tables.css.sass +176 -0
- data/app/assets/stylesheets/bootstrap/_theme.css.sass +228 -0
- data/app/assets/stylesheets/bootstrap/_thumbnails.css.sass +26 -0
- data/app/assets/stylesheets/bootstrap/_tooltip.css.sass +91 -0
- data/app/assets/stylesheets/bootstrap/_type.css.sass +251 -0
- data/app/assets/stylesheets/bootstrap/_utilities.css.sass +36 -0
- data/app/assets/stylesheets/bootstrap/_variables.css.sass +614 -0
- data/app/assets/stylesheets/bootstrap/_wells.css.sass +25 -0
- data/bin/convert-sass.sh +3 -0
- data/bootstrap_sass_rails.gemspec +25 -0
- data/lib/bootstrap_sass_rails.rb +13 -0
- data/lib/bootstrap_sass_rails/engine.rb +4 -0
- data/lib/bootstrap_sass_rails/version.rb +3 -0
- metadata +152 -0
@@ -0,0 +1,309 @@
|
|
1
|
+
//
|
2
|
+
// Forms
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Normalize non-controls
|
6
|
+
//
|
7
|
+
// Restyle and baseline non-control form elements.
|
8
|
+
|
9
|
+
fieldset
|
10
|
+
padding: 0
|
11
|
+
margin: 0
|
12
|
+
border: 0
|
13
|
+
|
14
|
+
legend
|
15
|
+
display: block
|
16
|
+
width: 100%
|
17
|
+
padding: 0
|
18
|
+
margin-bottom: $line-height-computed
|
19
|
+
font-size: $font-size-base * 1.5
|
20
|
+
line-height: inherit
|
21
|
+
color: $legend-color
|
22
|
+
border: 0
|
23
|
+
border-bottom: 1px solid $legend-border-color
|
24
|
+
|
25
|
+
label
|
26
|
+
display: inline-block
|
27
|
+
margin-bottom: 5px
|
28
|
+
font-weight: bold
|
29
|
+
|
30
|
+
// Normalize form controls
|
31
|
+
|
32
|
+
// Override content-box in Normalize (* isn't specific enough)
|
33
|
+
input[type="search"]
|
34
|
+
+box-sizing(border-box)
|
35
|
+
|
36
|
+
// Position radios and checkboxes better
|
37
|
+
|
38
|
+
input[type="radio"],
|
39
|
+
input[type="checkbox"]
|
40
|
+
margin: 4px 0 0
|
41
|
+
margin-top: 1px \9
|
42
|
+
/* IE8-9
|
43
|
+
line-height: normal
|
44
|
+
|
45
|
+
// Set the height of select and file controls to match text inputs
|
46
|
+
input[type="file"]
|
47
|
+
display: block
|
48
|
+
|
49
|
+
// Make multiple select elements height not fixed
|
50
|
+
|
51
|
+
select[multiple],
|
52
|
+
select[size]
|
53
|
+
height: auto
|
54
|
+
|
55
|
+
// Fix optgroup Firefox bug per https://github.com/twbs/bootstrap/issues/7611
|
56
|
+
select optgroup
|
57
|
+
font-size: inherit
|
58
|
+
font-style: inherit
|
59
|
+
font-family: inherit
|
60
|
+
|
61
|
+
// Focus for select, file, radio, and checkbox
|
62
|
+
|
63
|
+
input[type="file"]:focus,
|
64
|
+
input[type="radio"]:focus,
|
65
|
+
input[type="checkbox"]:focus
|
66
|
+
+tab-focus
|
67
|
+
|
68
|
+
// Fix for Chrome number input
|
69
|
+
// Setting certain font-sizes causes the `I` bar to appear on hover of the bottom increment button.
|
70
|
+
// See https://github.com/twbs/bootstrap/issues/8350 for more.
|
71
|
+
input[type="number"]
|
72
|
+
&::-webkit-outer-spin-button,
|
73
|
+
&::-webkit-inner-spin-button
|
74
|
+
height: auto
|
75
|
+
|
76
|
+
// Placeholder
|
77
|
+
//
|
78
|
+
// Placeholder text gets special styles because when browsers invalidate entire
|
79
|
+
// lines if it doesn't understand a selector/
|
80
|
+
.form-control
|
81
|
+
+placeholder
|
82
|
+
|
83
|
+
// Common form controls
|
84
|
+
//
|
85
|
+
// Shared size and type resets for form controls. Apply `.form-control` to any
|
86
|
+
// of the following form controls:
|
87
|
+
//
|
88
|
+
// select
|
89
|
+
// textarea
|
90
|
+
// input[type="text"]
|
91
|
+
// input[type="password"]
|
92
|
+
// input[type="datetime"]
|
93
|
+
// input[type="datetime-local"]
|
94
|
+
// input[type="date"]
|
95
|
+
// input[type="month"]
|
96
|
+
// input[type="time"]
|
97
|
+
// input[type="week"]
|
98
|
+
// input[type="number"]
|
99
|
+
// input[type="email"]
|
100
|
+
// input[type="url"]
|
101
|
+
// input[type="search"]
|
102
|
+
// input[type="tel"]
|
103
|
+
// input[type="color"]
|
104
|
+
|
105
|
+
.form-control
|
106
|
+
display: block
|
107
|
+
width: 100%
|
108
|
+
height: $input-height-base
|
109
|
+
// Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
110
|
+
padding: $padding-base-vertical $padding-base-horizontal
|
111
|
+
font-size: $font-size-base
|
112
|
+
line-height: $line-height-base
|
113
|
+
color: $input-color
|
114
|
+
vertical-align: middle
|
115
|
+
background-color: $input-bg
|
116
|
+
border: 1px solid $input-border
|
117
|
+
border-radius: $input-border-radius
|
118
|
+
+box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.075))
|
119
|
+
+transition(border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s)
|
120
|
+
// Customize the `:focus` state to imitate native WebKit styles.
|
121
|
+
+form-control-focus
|
122
|
+
// Disabled and read-only inputs
|
123
|
+
// Note: HTML5 says that controls under a fieldset > legend:first-child won't
|
124
|
+
// be disabled if the fieldset is disabled. Due to implementation difficulty,
|
125
|
+
// we don't honor that edge case; we style them as disabled anyway.
|
126
|
+
&[disabled],
|
127
|
+
&[readonly],
|
128
|
+
fieldset[disabled] &
|
129
|
+
cursor: not-allowed
|
130
|
+
background-color: $input-bg-disabled
|
131
|
+
|
132
|
+
// Reset height for `textarea`s
|
133
|
+
textarea.form-control
|
134
|
+
height: auto
|
135
|
+
|
136
|
+
// Form groups
|
137
|
+
//
|
138
|
+
// Designed to help with the organization and spacing of vertical forms. For
|
139
|
+
// horizontal forms, use the predefined grid classes.
|
140
|
+
|
141
|
+
.form-group
|
142
|
+
margin-bottom: 15px
|
143
|
+
|
144
|
+
// Checkboxes and radios
|
145
|
+
//
|
146
|
+
// Indent the labels to position radios/checkboxes as hanging controls.
|
147
|
+
|
148
|
+
.radio,
|
149
|
+
.checkbox
|
150
|
+
display: block
|
151
|
+
min-height: $line-height-computed
|
152
|
+
// clear the floating input if there is no label text
|
153
|
+
margin-top: 10px
|
154
|
+
margin-bottom: 10px
|
155
|
+
padding-left: 20px
|
156
|
+
vertical-align: middle
|
157
|
+
label
|
158
|
+
display: inline
|
159
|
+
margin-bottom: 0
|
160
|
+
font-weight: normal
|
161
|
+
cursor: pointer
|
162
|
+
|
163
|
+
.radio input[type="radio"],
|
164
|
+
.radio-inline input[type="radio"],
|
165
|
+
.checkbox input[type="checkbox"],
|
166
|
+
.checkbox-inline input[type="checkbox"]
|
167
|
+
float: left
|
168
|
+
margin-left: -20px
|
169
|
+
|
170
|
+
.radio + .radio,
|
171
|
+
.checkbox + .checkbox
|
172
|
+
margin-top: -5px
|
173
|
+
// Move up sibling radios or checkboxes for tighter spacing
|
174
|
+
|
175
|
+
// Radios and checkboxes on same line
|
176
|
+
|
177
|
+
.radio-inline,
|
178
|
+
.checkbox-inline
|
179
|
+
display: inline-block
|
180
|
+
padding-left: 20px
|
181
|
+
margin-bottom: 0
|
182
|
+
vertical-align: middle
|
183
|
+
font-weight: normal
|
184
|
+
cursor: pointer
|
185
|
+
|
186
|
+
.radio-inline + .radio-inline,
|
187
|
+
.checkbox-inline + .checkbox-inline
|
188
|
+
margin-top: 0
|
189
|
+
margin-left: 10px
|
190
|
+
// space out consecutive inline controls
|
191
|
+
|
192
|
+
// Apply same disabled cursor tweak as for inputs
|
193
|
+
//
|
194
|
+
// Note: Neither radios nor checkboxes can be readonly.
|
195
|
+
|
196
|
+
input[type="radio"],
|
197
|
+
input[type="checkbox"],
|
198
|
+
.radio,
|
199
|
+
.radio-inline,
|
200
|
+
.checkbox,
|
201
|
+
.checkbox-inline
|
202
|
+
&[disabled],
|
203
|
+
fieldset[disabled] &
|
204
|
+
cursor: not-allowed
|
205
|
+
|
206
|
+
// Form control sizing
|
207
|
+
|
208
|
+
+input-size(".input-sm", $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small)
|
209
|
+
|
210
|
+
+input-size(".input-lg", $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large)
|
211
|
+
|
212
|
+
// Form control feedback states
|
213
|
+
//
|
214
|
+
// Apply contextual and semantic states to individual form controls.
|
215
|
+
|
216
|
+
// Warning
|
217
|
+
.has-warning
|
218
|
+
+form-control-validation($state-warning-text, $state-warning-text, $state-warning-bg)
|
219
|
+
|
220
|
+
// Error
|
221
|
+
.has-error
|
222
|
+
+form-control-validation($state-danger-text, $state-danger-text, $state-danger-bg)
|
223
|
+
|
224
|
+
// Success
|
225
|
+
.has-success
|
226
|
+
+form-control-validation($state-success-text, $state-success-text, $state-success-bg)
|
227
|
+
|
228
|
+
// Static form control text
|
229
|
+
//
|
230
|
+
// Apply class to a `p` element to make any string of text align with labels in
|
231
|
+
// a horizontal form layout.
|
232
|
+
|
233
|
+
.form-control-static
|
234
|
+
margin-bottom: 0
|
235
|
+
// Remove default margin from `p`
|
236
|
+
padding-top: $padding-base-vertical + 1
|
237
|
+
|
238
|
+
// Help text
|
239
|
+
//
|
240
|
+
// Apply to any element you wish to create light text for placement immediately
|
241
|
+
// below a form control. Use for general help, formatting, or instructional text.
|
242
|
+
|
243
|
+
.help-block
|
244
|
+
display: block
|
245
|
+
// account for any element using help-block
|
246
|
+
margin-top: 5px
|
247
|
+
margin-bottom: 10px
|
248
|
+
color: lighten($text-color, 25%)
|
249
|
+
// lighten the text some for contrast
|
250
|
+
|
251
|
+
// Inline forms
|
252
|
+
//
|
253
|
+
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
|
254
|
+
// forms begin stacked on extra small (mobile) devices and then go inline when
|
255
|
+
// viewports reach <768px.
|
256
|
+
//
|
257
|
+
// Requires wrapping inputs and labels with `.form-group` for proper display of
|
258
|
+
// default HTML form controls and our custom form controls (e.g., input groups).
|
259
|
+
//
|
260
|
+
// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
|
261
|
+
|
262
|
+
.form-inline
|
263
|
+
// Kick in the inline
|
264
|
+
@media (min-width: $screen-tablet)
|
265
|
+
// Inline-block all the things for "inline"
|
266
|
+
.form-group
|
267
|
+
display: inline-block
|
268
|
+
margin-bottom: 0
|
269
|
+
vertical-align: middle
|
270
|
+
// In navbar-form, allow folks to *not* use `.form-group`
|
271
|
+
.form-control
|
272
|
+
display: inline-block
|
273
|
+
// Remove default margin on radios/checkboxes that were used for stacking, and
|
274
|
+
// then undo the floating of radios and checkboxes to match (which also avoids
|
275
|
+
// a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
|
276
|
+
.radio,
|
277
|
+
.checkbox
|
278
|
+
display: inline-block
|
279
|
+
margin-top: 0
|
280
|
+
margin-bottom: 0
|
281
|
+
padding-left: 0
|
282
|
+
.radio input[type="radio"],
|
283
|
+
.checkbox input[type="checkbox"]
|
284
|
+
float: none
|
285
|
+
margin-left: 0
|
286
|
+
|
287
|
+
// Horizontal forms
|
288
|
+
//
|
289
|
+
// Horizontal forms are built on grid classes and allow you to create forms with
|
290
|
+
// labels on the left and inputs on the right.
|
291
|
+
|
292
|
+
.form-horizontal
|
293
|
+
// Consistent vertical alignment of labels, radios, and checkboxes
|
294
|
+
.control-label,
|
295
|
+
.radio,
|
296
|
+
.checkbox,
|
297
|
+
.radio-inline,
|
298
|
+
.checkbox-inline
|
299
|
+
margin-top: 0
|
300
|
+
margin-bottom: 0
|
301
|
+
padding-top: $padding-base-vertical + 1
|
302
|
+
// Default padding plus a border
|
303
|
+
// Make form groups behave like rows
|
304
|
+
.form-group
|
305
|
+
+make-row
|
306
|
+
// Only right align form labels here when the columns stop stacking
|
307
|
+
@media (min-width: $screen-tablet)
|
308
|
+
.control-label
|
309
|
+
text-align: right
|
@@ -0,0 +1,827 @@
|
|
1
|
+
//
|
2
|
+
// Glyphicons for Bootstrap
|
3
|
+
//
|
4
|
+
// Since icons are fonts, they can be placed anywhere text is placed and are
|
5
|
+
// thus automatically sized to match the surrounding child. To use, create an
|
6
|
+
// inline element with the appropriate classes, like so:
|
7
|
+
//
|
8
|
+
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
|
9
|
+
|
10
|
+
// Import the fonts
|
11
|
+
@font-face
|
12
|
+
font-family: 'Glyphicons Halflings'
|
13
|
+
src: font-url("#{$icon-font-path}#{$icon-font-name}.eot")
|
14
|
+
src: font-url("#{$icon-font-path}#{$icon-font-name}.eot?#iefix") format("embedded-opentype"), font-url("#{$icon-font-path}#{$icon-font-name}.woff") format("woff"), font-url("#{$icon-font-path}#{$icon-font-name}.ttf") format("truetype"), font-url("#{$icon-font-path}#{$icon-font-name}.svg#glyphicons-halflingsregular") format("svg")
|
15
|
+
|
16
|
+
|
17
|
+
// Catchall baseclass
|
18
|
+
.glyphicon
|
19
|
+
position: relative
|
20
|
+
top: 1px
|
21
|
+
display: inline-block
|
22
|
+
font-family: 'Glyphicons Halflings'
|
23
|
+
font-style: normal
|
24
|
+
font-weight: normal
|
25
|
+
line-height: 1
|
26
|
+
-webkit-font-smoothing: antialiased
|
27
|
+
|
28
|
+
// Individual icons
|
29
|
+
.glyphicon-asterisk
|
30
|
+
&:before
|
31
|
+
content: "\2a"
|
32
|
+
|
33
|
+
.glyphicon-plus
|
34
|
+
&:before
|
35
|
+
content: "\2b"
|
36
|
+
|
37
|
+
.glyphicon-euro
|
38
|
+
&:before
|
39
|
+
content: "\20ac"
|
40
|
+
|
41
|
+
.glyphicon-minus
|
42
|
+
&:before
|
43
|
+
content: "\2212"
|
44
|
+
|
45
|
+
.glyphicon-cloud
|
46
|
+
&:before
|
47
|
+
content: "\2601"
|
48
|
+
|
49
|
+
.glyphicon-envelope
|
50
|
+
&:before
|
51
|
+
content: "\2709"
|
52
|
+
|
53
|
+
.glyphicon-pencil
|
54
|
+
&:before
|
55
|
+
content: "\270f"
|
56
|
+
|
57
|
+
.glyphicon-glass
|
58
|
+
&:before
|
59
|
+
content: "\e001"
|
60
|
+
|
61
|
+
.glyphicon-music
|
62
|
+
&:before
|
63
|
+
content: "\e002"
|
64
|
+
|
65
|
+
.glyphicon-search
|
66
|
+
&:before
|
67
|
+
content: "\e003"
|
68
|
+
|
69
|
+
.glyphicon-heart
|
70
|
+
&:before
|
71
|
+
content: "\e005"
|
72
|
+
|
73
|
+
.glyphicon-star
|
74
|
+
&:before
|
75
|
+
content: "\e006"
|
76
|
+
|
77
|
+
.glyphicon-star-empty
|
78
|
+
&:before
|
79
|
+
content: "\e007"
|
80
|
+
|
81
|
+
.glyphicon-user
|
82
|
+
&:before
|
83
|
+
content: "\e008"
|
84
|
+
|
85
|
+
.glyphicon-film
|
86
|
+
&:before
|
87
|
+
content: "\e009"
|
88
|
+
|
89
|
+
.glyphicon-th-large
|
90
|
+
&:before
|
91
|
+
content: "\e010"
|
92
|
+
|
93
|
+
.glyphicon-th
|
94
|
+
&:before
|
95
|
+
content: "\e011"
|
96
|
+
|
97
|
+
.glyphicon-th-list
|
98
|
+
&:before
|
99
|
+
content: "\e012"
|
100
|
+
|
101
|
+
.glyphicon-ok
|
102
|
+
&:before
|
103
|
+
content: "\e013"
|
104
|
+
|
105
|
+
.glyphicon-remove
|
106
|
+
&:before
|
107
|
+
content: "\e014"
|
108
|
+
|
109
|
+
.glyphicon-zoom-in
|
110
|
+
&:before
|
111
|
+
content: "\e015"
|
112
|
+
|
113
|
+
.glyphicon-zoom-out
|
114
|
+
&:before
|
115
|
+
content: "\e016"
|
116
|
+
|
117
|
+
.glyphicon-off
|
118
|
+
&:before
|
119
|
+
content: "\e017"
|
120
|
+
|
121
|
+
.glyphicon-signal
|
122
|
+
&:before
|
123
|
+
content: "\e018"
|
124
|
+
|
125
|
+
.glyphicon-cog
|
126
|
+
&:before
|
127
|
+
content: "\e019"
|
128
|
+
|
129
|
+
.glyphicon-trash
|
130
|
+
&:before
|
131
|
+
content: "\e020"
|
132
|
+
|
133
|
+
.glyphicon-home
|
134
|
+
&:before
|
135
|
+
content: "\e021"
|
136
|
+
|
137
|
+
.glyphicon-file
|
138
|
+
&:before
|
139
|
+
content: "\e022"
|
140
|
+
|
141
|
+
.glyphicon-time
|
142
|
+
&:before
|
143
|
+
content: "\e023"
|
144
|
+
|
145
|
+
.glyphicon-road
|
146
|
+
&:before
|
147
|
+
content: "\e024"
|
148
|
+
|
149
|
+
.glyphicon-download-alt
|
150
|
+
&:before
|
151
|
+
content: "\e025"
|
152
|
+
|
153
|
+
.glyphicon-download
|
154
|
+
&:before
|
155
|
+
content: "\e026"
|
156
|
+
|
157
|
+
.glyphicon-upload
|
158
|
+
&:before
|
159
|
+
content: "\e027"
|
160
|
+
|
161
|
+
.glyphicon-inbox
|
162
|
+
&:before
|
163
|
+
content: "\e028"
|
164
|
+
|
165
|
+
.glyphicon-play-circle
|
166
|
+
&:before
|
167
|
+
content: "\e029"
|
168
|
+
|
169
|
+
.glyphicon-repeat
|
170
|
+
&:before
|
171
|
+
content: "\e030"
|
172
|
+
|
173
|
+
.glyphicon-refresh
|
174
|
+
&:before
|
175
|
+
content: "\e031"
|
176
|
+
|
177
|
+
.glyphicon-list-alt
|
178
|
+
&:before
|
179
|
+
content: "\e032"
|
180
|
+
|
181
|
+
.glyphicon-flag
|
182
|
+
&:before
|
183
|
+
content: "\e034"
|
184
|
+
|
185
|
+
.glyphicon-headphones
|
186
|
+
&:before
|
187
|
+
content: "\e035"
|
188
|
+
|
189
|
+
.glyphicon-volume-off
|
190
|
+
&:before
|
191
|
+
content: "\e036"
|
192
|
+
|
193
|
+
.glyphicon-volume-down
|
194
|
+
&:before
|
195
|
+
content: "\e037"
|
196
|
+
|
197
|
+
.glyphicon-volume-up
|
198
|
+
&:before
|
199
|
+
content: "\e038"
|
200
|
+
|
201
|
+
.glyphicon-qrcode
|
202
|
+
&:before
|
203
|
+
content: "\e039"
|
204
|
+
|
205
|
+
.glyphicon-barcode
|
206
|
+
&:before
|
207
|
+
content: "\e040"
|
208
|
+
|
209
|
+
.glyphicon-tag
|
210
|
+
&:before
|
211
|
+
content: "\e041"
|
212
|
+
|
213
|
+
.glyphicon-tags
|
214
|
+
&:before
|
215
|
+
content: "\e042"
|
216
|
+
|
217
|
+
.glyphicon-book
|
218
|
+
&:before
|
219
|
+
content: "\e043"
|
220
|
+
|
221
|
+
.glyphicon-print
|
222
|
+
&:before
|
223
|
+
content: "\e045"
|
224
|
+
|
225
|
+
.glyphicon-font
|
226
|
+
&:before
|
227
|
+
content: "\e047"
|
228
|
+
|
229
|
+
.glyphicon-bold
|
230
|
+
&:before
|
231
|
+
content: "\e048"
|
232
|
+
|
233
|
+
.glyphicon-italic
|
234
|
+
&:before
|
235
|
+
content: "\e049"
|
236
|
+
|
237
|
+
.glyphicon-text-height
|
238
|
+
&:before
|
239
|
+
content: "\e050"
|
240
|
+
|
241
|
+
.glyphicon-text-width
|
242
|
+
&:before
|
243
|
+
content: "\e051"
|
244
|
+
|
245
|
+
.glyphicon-align-left
|
246
|
+
&:before
|
247
|
+
content: "\e052"
|
248
|
+
|
249
|
+
.glyphicon-align-center
|
250
|
+
&:before
|
251
|
+
content: "\e053"
|
252
|
+
|
253
|
+
.glyphicon-align-right
|
254
|
+
&:before
|
255
|
+
content: "\e054"
|
256
|
+
|
257
|
+
.glyphicon-align-justify
|
258
|
+
&:before
|
259
|
+
content: "\e055"
|
260
|
+
|
261
|
+
.glyphicon-list
|
262
|
+
&:before
|
263
|
+
content: "\e056"
|
264
|
+
|
265
|
+
.glyphicon-indent-left
|
266
|
+
&:before
|
267
|
+
content: "\e057"
|
268
|
+
|
269
|
+
.glyphicon-indent-right
|
270
|
+
&:before
|
271
|
+
content: "\e058"
|
272
|
+
|
273
|
+
.glyphicon-facetime-video
|
274
|
+
&:before
|
275
|
+
content: "\e059"
|
276
|
+
|
277
|
+
.glyphicon-picture
|
278
|
+
&:before
|
279
|
+
content: "\e060"
|
280
|
+
|
281
|
+
.glyphicon-map-marker
|
282
|
+
&:before
|
283
|
+
content: "\e062"
|
284
|
+
|
285
|
+
.glyphicon-adjust
|
286
|
+
&:before
|
287
|
+
content: "\e063"
|
288
|
+
|
289
|
+
.glyphicon-tint
|
290
|
+
&:before
|
291
|
+
content: "\e064"
|
292
|
+
|
293
|
+
.glyphicon-edit
|
294
|
+
&:before
|
295
|
+
content: "\e065"
|
296
|
+
|
297
|
+
.glyphicon-share
|
298
|
+
&:before
|
299
|
+
content: "\e066"
|
300
|
+
|
301
|
+
.glyphicon-check
|
302
|
+
&:before
|
303
|
+
content: "\e067"
|
304
|
+
|
305
|
+
.glyphicon-move
|
306
|
+
&:before
|
307
|
+
content: "\e068"
|
308
|
+
|
309
|
+
.glyphicon-step-backward
|
310
|
+
&:before
|
311
|
+
content: "\e069"
|
312
|
+
|
313
|
+
.glyphicon-fast-backward
|
314
|
+
&:before
|
315
|
+
content: "\e070"
|
316
|
+
|
317
|
+
.glyphicon-backward
|
318
|
+
&:before
|
319
|
+
content: "\e071"
|
320
|
+
|
321
|
+
.glyphicon-play
|
322
|
+
&:before
|
323
|
+
content: "\e072"
|
324
|
+
|
325
|
+
.glyphicon-pause
|
326
|
+
&:before
|
327
|
+
content: "\e073"
|
328
|
+
|
329
|
+
.glyphicon-stop
|
330
|
+
&:before
|
331
|
+
content: "\e074"
|
332
|
+
|
333
|
+
.glyphicon-forward
|
334
|
+
&:before
|
335
|
+
content: "\e075"
|
336
|
+
|
337
|
+
.glyphicon-fast-forward
|
338
|
+
&:before
|
339
|
+
content: "\e076"
|
340
|
+
|
341
|
+
.glyphicon-step-forward
|
342
|
+
&:before
|
343
|
+
content: "\e077"
|
344
|
+
|
345
|
+
.glyphicon-eject
|
346
|
+
&:before
|
347
|
+
content: "\e078"
|
348
|
+
|
349
|
+
.glyphicon-chevron-left
|
350
|
+
&:before
|
351
|
+
content: "\e079"
|
352
|
+
|
353
|
+
.glyphicon-chevron-right
|
354
|
+
&:before
|
355
|
+
content: "\e080"
|
356
|
+
|
357
|
+
.glyphicon-plus-sign
|
358
|
+
&:before
|
359
|
+
content: "\e081"
|
360
|
+
|
361
|
+
.glyphicon-minus-sign
|
362
|
+
&:before
|
363
|
+
content: "\e082"
|
364
|
+
|
365
|
+
.glyphicon-remove-sign
|
366
|
+
&:before
|
367
|
+
content: "\e083"
|
368
|
+
|
369
|
+
.glyphicon-ok-sign
|
370
|
+
&:before
|
371
|
+
content: "\e084"
|
372
|
+
|
373
|
+
.glyphicon-question-sign
|
374
|
+
&:before
|
375
|
+
content: "\e085"
|
376
|
+
|
377
|
+
.glyphicon-info-sign
|
378
|
+
&:before
|
379
|
+
content: "\e086"
|
380
|
+
|
381
|
+
.glyphicon-screenshot
|
382
|
+
&:before
|
383
|
+
content: "\e087"
|
384
|
+
|
385
|
+
.glyphicon-remove-circle
|
386
|
+
&:before
|
387
|
+
content: "\e088"
|
388
|
+
|
389
|
+
.glyphicon-ok-circle
|
390
|
+
&:before
|
391
|
+
content: "\e089"
|
392
|
+
|
393
|
+
.glyphicon-ban-circle
|
394
|
+
&:before
|
395
|
+
content: "\e090"
|
396
|
+
|
397
|
+
.glyphicon-arrow-left
|
398
|
+
&:before
|
399
|
+
content: "\e091"
|
400
|
+
|
401
|
+
.glyphicon-arrow-right
|
402
|
+
&:before
|
403
|
+
content: "\e092"
|
404
|
+
|
405
|
+
.glyphicon-arrow-up
|
406
|
+
&:before
|
407
|
+
content: "\e093"
|
408
|
+
|
409
|
+
.glyphicon-arrow-down
|
410
|
+
&:before
|
411
|
+
content: "\e094"
|
412
|
+
|
413
|
+
.glyphicon-share-alt
|
414
|
+
&:before
|
415
|
+
content: "\e095"
|
416
|
+
|
417
|
+
.glyphicon-resize-full
|
418
|
+
&:before
|
419
|
+
content: "\e096"
|
420
|
+
|
421
|
+
.glyphicon-resize-small
|
422
|
+
&:before
|
423
|
+
content: "\e097"
|
424
|
+
|
425
|
+
.glyphicon-exclamation-sign
|
426
|
+
&:before
|
427
|
+
content: "\e101"
|
428
|
+
|
429
|
+
.glyphicon-gift
|
430
|
+
&:before
|
431
|
+
content: "\e102"
|
432
|
+
|
433
|
+
.glyphicon-leaf
|
434
|
+
&:before
|
435
|
+
content: "\e103"
|
436
|
+
|
437
|
+
.glyphicon-eye-open
|
438
|
+
&:before
|
439
|
+
content: "\e105"
|
440
|
+
|
441
|
+
.glyphicon-eye-close
|
442
|
+
&:before
|
443
|
+
content: "\e106"
|
444
|
+
|
445
|
+
.glyphicon-warning-sign
|
446
|
+
&:before
|
447
|
+
content: "\e107"
|
448
|
+
|
449
|
+
.glyphicon-plane
|
450
|
+
&:before
|
451
|
+
content: "\e108"
|
452
|
+
|
453
|
+
.glyphicon-random
|
454
|
+
&:before
|
455
|
+
content: "\e110"
|
456
|
+
|
457
|
+
.glyphicon-comment
|
458
|
+
&:before
|
459
|
+
content: "\e111"
|
460
|
+
|
461
|
+
.glyphicon-magnet
|
462
|
+
&:before
|
463
|
+
content: "\e112"
|
464
|
+
|
465
|
+
.glyphicon-chevron-up
|
466
|
+
&:before
|
467
|
+
content: "\e113"
|
468
|
+
|
469
|
+
.glyphicon-chevron-down
|
470
|
+
&:before
|
471
|
+
content: "\e114"
|
472
|
+
|
473
|
+
.glyphicon-retweet
|
474
|
+
&:before
|
475
|
+
content: "\e115"
|
476
|
+
|
477
|
+
.glyphicon-shopping-cart
|
478
|
+
&:before
|
479
|
+
content: "\e116"
|
480
|
+
|
481
|
+
.glyphicon-folder-close
|
482
|
+
&:before
|
483
|
+
content: "\e117"
|
484
|
+
|
485
|
+
.glyphicon-folder-open
|
486
|
+
&:before
|
487
|
+
content: "\e118"
|
488
|
+
|
489
|
+
.glyphicon-resize-vertical
|
490
|
+
&:before
|
491
|
+
content: "\e119"
|
492
|
+
|
493
|
+
.glyphicon-resize-horizontal
|
494
|
+
&:before
|
495
|
+
content: "\e120"
|
496
|
+
|
497
|
+
.glyphicon-hdd
|
498
|
+
&:before
|
499
|
+
content: "\e121"
|
500
|
+
|
501
|
+
.glyphicon-bullhorn
|
502
|
+
&:before
|
503
|
+
content: "\e122"
|
504
|
+
|
505
|
+
.glyphicon-certificate
|
506
|
+
&:before
|
507
|
+
content: "\e124"
|
508
|
+
|
509
|
+
.glyphicon-thumbs-up
|
510
|
+
&:before
|
511
|
+
content: "\e125"
|
512
|
+
|
513
|
+
.glyphicon-thumbs-down
|
514
|
+
&:before
|
515
|
+
content: "\e126"
|
516
|
+
|
517
|
+
.glyphicon-hand-right
|
518
|
+
&:before
|
519
|
+
content: "\e127"
|
520
|
+
|
521
|
+
.glyphicon-hand-left
|
522
|
+
&:before
|
523
|
+
content: "\e128"
|
524
|
+
|
525
|
+
.glyphicon-hand-up
|
526
|
+
&:before
|
527
|
+
content: "\e129"
|
528
|
+
|
529
|
+
.glyphicon-hand-down
|
530
|
+
&:before
|
531
|
+
content: "\e130"
|
532
|
+
|
533
|
+
.glyphicon-circle-arrow-right
|
534
|
+
&:before
|
535
|
+
content: "\e131"
|
536
|
+
|
537
|
+
.glyphicon-circle-arrow-left
|
538
|
+
&:before
|
539
|
+
content: "\e132"
|
540
|
+
|
541
|
+
.glyphicon-circle-arrow-up
|
542
|
+
&:before
|
543
|
+
content: "\e133"
|
544
|
+
|
545
|
+
.glyphicon-circle-arrow-down
|
546
|
+
&:before
|
547
|
+
content: "\e134"
|
548
|
+
|
549
|
+
.glyphicon-globe
|
550
|
+
&:before
|
551
|
+
content: "\e135"
|
552
|
+
|
553
|
+
.glyphicon-tasks
|
554
|
+
&:before
|
555
|
+
content: "\e137"
|
556
|
+
|
557
|
+
.glyphicon-filter
|
558
|
+
&:before
|
559
|
+
content: "\e138"
|
560
|
+
|
561
|
+
.glyphicon-fullscreen
|
562
|
+
&:before
|
563
|
+
content: "\e140"
|
564
|
+
|
565
|
+
.glyphicon-dashboard
|
566
|
+
&:before
|
567
|
+
content: "\e141"
|
568
|
+
|
569
|
+
.glyphicon-heart-empty
|
570
|
+
&:before
|
571
|
+
content: "\e143"
|
572
|
+
|
573
|
+
.glyphicon-link
|
574
|
+
&:before
|
575
|
+
content: "\e144"
|
576
|
+
|
577
|
+
.glyphicon-phone
|
578
|
+
&:before
|
579
|
+
content: "\e145"
|
580
|
+
|
581
|
+
.glyphicon-usd
|
582
|
+
&:before
|
583
|
+
content: "\e148"
|
584
|
+
|
585
|
+
.glyphicon-gbp
|
586
|
+
&:before
|
587
|
+
content: "\e149"
|
588
|
+
|
589
|
+
.glyphicon-sort
|
590
|
+
&:before
|
591
|
+
content: "\e150"
|
592
|
+
|
593
|
+
.glyphicon-sort-by-alphabet
|
594
|
+
&:before
|
595
|
+
content: "\e151"
|
596
|
+
|
597
|
+
.glyphicon-sort-by-alphabet-alt
|
598
|
+
&:before
|
599
|
+
content: "\e152"
|
600
|
+
|
601
|
+
.glyphicon-sort-by-order
|
602
|
+
&:before
|
603
|
+
content: "\e153"
|
604
|
+
|
605
|
+
.glyphicon-sort-by-order-alt
|
606
|
+
&:before
|
607
|
+
content: "\e154"
|
608
|
+
|
609
|
+
.glyphicon-sort-by-attributes
|
610
|
+
&:before
|
611
|
+
content: "\e155"
|
612
|
+
|
613
|
+
.glyphicon-sort-by-attributes-alt
|
614
|
+
&:before
|
615
|
+
content: "\e156"
|
616
|
+
|
617
|
+
.glyphicon-unchecked
|
618
|
+
&:before
|
619
|
+
content: "\e157"
|
620
|
+
|
621
|
+
.glyphicon-expand
|
622
|
+
&:before
|
623
|
+
content: "\e158"
|
624
|
+
|
625
|
+
.glyphicon-collapse-down
|
626
|
+
&:before
|
627
|
+
content: "\e159"
|
628
|
+
|
629
|
+
.glyphicon-collapse-up
|
630
|
+
&:before
|
631
|
+
content: "\e160"
|
632
|
+
|
633
|
+
.glyphicon-log-in
|
634
|
+
&:before
|
635
|
+
content: "\e161"
|
636
|
+
|
637
|
+
.glyphicon-flash
|
638
|
+
&:before
|
639
|
+
content: "\e162"
|
640
|
+
|
641
|
+
.glyphicon-log-out
|
642
|
+
&:before
|
643
|
+
content: "\e163"
|
644
|
+
|
645
|
+
.glyphicon-new-window
|
646
|
+
&:before
|
647
|
+
content: "\e164"
|
648
|
+
|
649
|
+
.glyphicon-record
|
650
|
+
&:before
|
651
|
+
content: "\e165"
|
652
|
+
|
653
|
+
.glyphicon-save
|
654
|
+
&:before
|
655
|
+
content: "\e166"
|
656
|
+
|
657
|
+
.glyphicon-open
|
658
|
+
&:before
|
659
|
+
content: "\e167"
|
660
|
+
|
661
|
+
.glyphicon-saved
|
662
|
+
&:before
|
663
|
+
content: "\e168"
|
664
|
+
|
665
|
+
.glyphicon-import
|
666
|
+
&:before
|
667
|
+
content: "\e169"
|
668
|
+
|
669
|
+
.glyphicon-export
|
670
|
+
&:before
|
671
|
+
content: "\e170"
|
672
|
+
|
673
|
+
.glyphicon-send
|
674
|
+
&:before
|
675
|
+
content: "\e171"
|
676
|
+
|
677
|
+
.glyphicon-floppy-disk
|
678
|
+
&:before
|
679
|
+
content: "\e172"
|
680
|
+
|
681
|
+
.glyphicon-floppy-saved
|
682
|
+
&:before
|
683
|
+
content: "\e173"
|
684
|
+
|
685
|
+
.glyphicon-floppy-remove
|
686
|
+
&:before
|
687
|
+
content: "\e174"
|
688
|
+
|
689
|
+
.glyphicon-floppy-save
|
690
|
+
&:before
|
691
|
+
content: "\e175"
|
692
|
+
|
693
|
+
.glyphicon-floppy-open
|
694
|
+
&:before
|
695
|
+
content: "\e176"
|
696
|
+
|
697
|
+
.glyphicon-credit-card
|
698
|
+
&:before
|
699
|
+
content: "\e177"
|
700
|
+
|
701
|
+
.glyphicon-transfer
|
702
|
+
&:before
|
703
|
+
content: "\e178"
|
704
|
+
|
705
|
+
.glyphicon-cutlery
|
706
|
+
&:before
|
707
|
+
content: "\e179"
|
708
|
+
|
709
|
+
.glyphicon-header
|
710
|
+
&:before
|
711
|
+
content: "\e180"
|
712
|
+
|
713
|
+
.glyphicon-compressed
|
714
|
+
&:before
|
715
|
+
content: "\e181"
|
716
|
+
|
717
|
+
.glyphicon-earphone
|
718
|
+
&:before
|
719
|
+
content: "\e182"
|
720
|
+
|
721
|
+
.glyphicon-phone-alt
|
722
|
+
&:before
|
723
|
+
content: "\e183"
|
724
|
+
|
725
|
+
.glyphicon-tower
|
726
|
+
&:before
|
727
|
+
content: "\e184"
|
728
|
+
|
729
|
+
.glyphicon-stats
|
730
|
+
&:before
|
731
|
+
content: "\e185"
|
732
|
+
|
733
|
+
.glyphicon-sd-video
|
734
|
+
&:before
|
735
|
+
content: "\e186"
|
736
|
+
|
737
|
+
.glyphicon-hd-video
|
738
|
+
&:before
|
739
|
+
content: "\e187"
|
740
|
+
|
741
|
+
.glyphicon-subtitles
|
742
|
+
&:before
|
743
|
+
content: "\e188"
|
744
|
+
|
745
|
+
.glyphicon-sound-stereo
|
746
|
+
&:before
|
747
|
+
content: "\e189"
|
748
|
+
|
749
|
+
.glyphicon-sound-dolby
|
750
|
+
&:before
|
751
|
+
content: "\e190"
|
752
|
+
|
753
|
+
.glyphicon-sound-5-1
|
754
|
+
&:before
|
755
|
+
content: "\e191"
|
756
|
+
|
757
|
+
.glyphicon-sound-6-1
|
758
|
+
&:before
|
759
|
+
content: "\e192"
|
760
|
+
|
761
|
+
.glyphicon-sound-7-1
|
762
|
+
&:before
|
763
|
+
content: "\e193"
|
764
|
+
|
765
|
+
.glyphicon-copyright-mark
|
766
|
+
&:before
|
767
|
+
content: "\e194"
|
768
|
+
|
769
|
+
.glyphicon-registration-mark
|
770
|
+
&:before
|
771
|
+
content: "\e195"
|
772
|
+
|
773
|
+
.glyphicon-cloud-download
|
774
|
+
&:before
|
775
|
+
content: "\e197"
|
776
|
+
|
777
|
+
.glyphicon-cloud-upload
|
778
|
+
&:before
|
779
|
+
content: "\e198"
|
780
|
+
|
781
|
+
.glyphicon-tree-conifer
|
782
|
+
&:before
|
783
|
+
content: "\e199"
|
784
|
+
|
785
|
+
.glyphicon-tree-deciduous
|
786
|
+
&:before
|
787
|
+
content: "\e200"
|
788
|
+
|
789
|
+
.glyphicon-briefcase
|
790
|
+
&:before
|
791
|
+
content: "\1f4bc"
|
792
|
+
|
793
|
+
.glyphicon-calendar
|
794
|
+
&:before
|
795
|
+
content: "\1f4c5"
|
796
|
+
|
797
|
+
.glyphicon-pushpin
|
798
|
+
&:before
|
799
|
+
content: "\1f4cc"
|
800
|
+
|
801
|
+
.glyphicon-paperclip
|
802
|
+
&:before
|
803
|
+
content: "\1f4ce"
|
804
|
+
|
805
|
+
.glyphicon-camera
|
806
|
+
&:before
|
807
|
+
content: "\1f4f7"
|
808
|
+
|
809
|
+
.glyphicon-lock
|
810
|
+
&:before
|
811
|
+
content: "\1f512"
|
812
|
+
|
813
|
+
.glyphicon-bell
|
814
|
+
&:before
|
815
|
+
content: "\1f514"
|
816
|
+
|
817
|
+
.glyphicon-bookmark
|
818
|
+
&:before
|
819
|
+
content: "\1f516"
|
820
|
+
|
821
|
+
.glyphicon-fire
|
822
|
+
&:before
|
823
|
+
content: "\1f525"
|
824
|
+
|
825
|
+
.glyphicon-wrench
|
826
|
+
&:before
|
827
|
+
content: "\1f527"
|