bootstrap-sass-rails 3.0.0.0.rc2 → 3.0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +0 -20
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +228 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +3 -3
- data/app/assets/javascripts/twitter/bootstrap/modal.js +5 -3
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +9 -5
- data/app/assets/javascripts/twitter/bootstrap/transition.js +1 -1
- data/app/assets/stylesheets/twitter/bootstrap.css.scss +17 -21
- data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +7 -11
- data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +14 -10
- data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +9 -20
- data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +7 -2
- data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +23 -5
- data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +36 -15
- data/app/assets/stylesheets/twitter/bootstrap/_glyphicons.scss +209 -179
- data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +9 -3
- data/app/assets/stylesheets/twitter/bootstrap/_input-groups.scss +1 -1
- data/app/assets/stylesheets/twitter/bootstrap/_jumbotron.scss +16 -5
- data/app/assets/stylesheets/twitter/bootstrap/_labels.scss +9 -5
- data/app/assets/stylesheets/twitter/bootstrap/_list-group.scss +5 -5
- data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +86 -59
- data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +8 -0
- data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +253 -191
- data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +13 -12
- data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +1 -1
- data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +20 -9
- data/app/assets/stylesheets/twitter/bootstrap/_panels.scss +28 -8
- data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +6 -10
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +69 -45
- data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +37 -18
- data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +84 -59
- data/app/assets/stylesheets/twitter/bootstrap/_theme.scss +232 -0
- data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +8 -19
- data/app/assets/stylesheets/twitter/bootstrap/_type.scss +2 -2
- data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +63 -50
- data/lib/bootstrap/sass/rails/version.rb +1 -1
- data/test/cases/usage_css_spec.rb +6 -4
- metadata +14 -11
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.eot +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.otf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.svg +0 -175
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.ttf +0 -0
- data/app/assets/fonts/twitter/bootstrap/glyphiconshalflings-regular.woff +0 -0
@@ -18,16 +18,18 @@
|
|
18
18
|
border-top-color: #fff;
|
19
19
|
}
|
20
20
|
}
|
21
|
-
.dropup
|
22
|
-
.btn-default
|
21
|
+
.dropup {
|
22
|
+
& .btn-default .caret {
|
23
23
|
border-bottom-color: $btn-default-color;
|
24
24
|
}
|
25
|
-
.btn-primary
|
26
|
-
.btn-success
|
27
|
-
.btn-warning
|
28
|
-
.btn-danger
|
29
|
-
.btn-info
|
30
|
-
|
25
|
+
.btn-primary,
|
26
|
+
.btn-success,
|
27
|
+
.btn-warning,
|
28
|
+
.btn-danger,
|
29
|
+
.btn-info {
|
30
|
+
.caret {
|
31
|
+
border-bottom-color: #fff;
|
32
|
+
}
|
31
33
|
}
|
32
34
|
}
|
33
35
|
|
@@ -157,11 +159,12 @@
|
|
157
159
|
}
|
158
160
|
// Carets in other button sizes
|
159
161
|
.btn-lg .caret {
|
160
|
-
border-width: $caret-width-large;
|
162
|
+
border-width: $caret-width-large $caret-width-large 0;
|
163
|
+
border-bottom-width: 0;
|
161
164
|
}
|
162
165
|
// Upside down carets for .dropup
|
163
166
|
.dropup .btn-lg .caret {
|
164
|
-
border-
|
167
|
+
border-width: 0 $caret-width-large $caret-width-large;
|
165
168
|
}
|
166
169
|
|
167
170
|
|
@@ -229,6 +232,7 @@
|
|
229
232
|
display: table;
|
230
233
|
width: 100%;
|
231
234
|
table-layout: fixed;
|
235
|
+
border-collapse: separate;
|
232
236
|
.btn {
|
233
237
|
float: none;
|
234
238
|
display: table-cell;
|
@@ -35,13 +35,14 @@
|
|
35
35
|
&:active,
|
36
36
|
&.active {
|
37
37
|
outline: 0;
|
38
|
+
background-image: none;
|
38
39
|
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
39
40
|
}
|
40
41
|
|
41
42
|
&.disabled,
|
42
43
|
&[disabled],
|
43
44
|
fieldset[disabled] & {
|
44
|
-
cursor:
|
45
|
+
cursor: not-allowed;
|
45
46
|
pointer-events: none; // Future-proof disabling of clicks
|
46
47
|
@include opacity(.65);
|
47
48
|
@include box-shadow(none);
|
@@ -53,28 +54,16 @@
|
|
53
54
|
// Alternate buttons
|
54
55
|
// --------------------------------------------------
|
55
56
|
|
56
|
-
.btn-default
|
57
|
-
|
58
|
-
}
|
59
|
-
.btn-primary {
|
60
|
-
@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
|
61
|
-
}
|
57
|
+
@include button-variant('.btn-default', $btn-default-color, $btn-default-bg, $btn-default-border);
|
58
|
+
@include button-variant('.btn-primary', $btn-primary-color, $btn-primary-bg, $btn-primary-border);
|
62
59
|
// Warning appears as orange
|
63
|
-
.btn-warning
|
64
|
-
@include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border);
|
65
|
-
}
|
60
|
+
@include button-variant('.btn-warning', $btn-warning-color, $btn-warning-bg, $btn-warning-border);
|
66
61
|
// Danger and error appear as red
|
67
|
-
.btn-danger
|
68
|
-
@include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border);
|
69
|
-
}
|
62
|
+
@include button-variant('.btn-danger', $btn-danger-color, $btn-danger-bg, $btn-danger-border);
|
70
63
|
// Success appears as green
|
71
|
-
.btn-success
|
72
|
-
@include button-variant($btn-success-color, $btn-success-bg, $btn-success-border);
|
73
|
-
}
|
64
|
+
@include button-variant('.btn-success', $btn-success-color, $btn-success-bg, $btn-success-border);
|
74
65
|
// Info appears as blue-green
|
75
|
-
.btn-info
|
76
|
-
@include button-variant($btn-info-color, $btn-info-bg, $btn-info-border);
|
77
|
-
}
|
66
|
+
@include button-variant('.btn-info', $btn-info-color, $btn-info-bg, $btn-info-border);
|
78
67
|
|
79
68
|
|
80
69
|
// Link buttons
|
@@ -130,7 +119,7 @@
|
|
130
119
|
@include button-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
|
131
120
|
}
|
132
121
|
.btn-xs {
|
133
|
-
padding:
|
122
|
+
padding: 1px 5px;
|
134
123
|
}
|
135
124
|
|
136
125
|
|
@@ -21,7 +21,7 @@
|
|
21
21
|
// Account for jankitude on images
|
22
22
|
> img,
|
23
23
|
> a > img {
|
24
|
-
@
|
24
|
+
@include img-responsive();
|
25
25
|
line-height: 1;
|
26
26
|
}
|
27
27
|
}
|
@@ -98,12 +98,17 @@
|
|
98
98
|
|
99
99
|
// Toggles
|
100
100
|
.icon-prev,
|
101
|
-
.icon-next
|
101
|
+
.icon-next,
|
102
|
+
.glyphicon-chevron-left,
|
103
|
+
.glyphicon-chevron-right {
|
102
104
|
position: absolute;
|
103
105
|
top: 50%;
|
104
106
|
left: 50%;
|
105
107
|
z-index: 5;
|
106
108
|
display: inline-block;
|
109
|
+
}
|
110
|
+
.icon-prev,
|
111
|
+
.icon-next {
|
107
112
|
width: 20px;
|
108
113
|
height: 20px;
|
109
114
|
margin-top: -10px;
|
@@ -13,6 +13,9 @@
|
|
13
13
|
border-top: $caret-width-base solid $dropdown-caret-color;
|
14
14
|
border-right: $caret-width-base solid transparent;
|
15
15
|
border-left: $caret-width-base solid transparent;
|
16
|
+
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once fixed,
|
17
|
+
// we can just straight up remove this.
|
18
|
+
border-bottom: 0 dotted;
|
16
19
|
content: "";
|
17
20
|
}
|
18
21
|
|
@@ -75,8 +78,7 @@
|
|
75
78
|
&:focus {
|
76
79
|
text-decoration: none;
|
77
80
|
color: $dropdown-link-hover-color;
|
78
|
-
|
79
|
-
background-color: darken($dropdown-link-hover-bg, 5%);
|
81
|
+
background-color: $dropdown-link-hover-bg;
|
80
82
|
}
|
81
83
|
}
|
82
84
|
|
@@ -88,8 +90,7 @@
|
|
88
90
|
color: $dropdown-link-active-color;
|
89
91
|
text-decoration: none;
|
90
92
|
outline: 0;
|
91
|
-
|
92
|
-
background-color: darken($dropdown-link-active-bg, 5%);
|
93
|
+
background-color: $dropdown-link-active-bg;
|
93
94
|
}
|
94
95
|
}
|
95
96
|
|
@@ -163,7 +164,9 @@
|
|
163
164
|
.navbar-fixed-bottom .dropdown {
|
164
165
|
// Reverse the caret
|
165
166
|
.caret {
|
166
|
-
|
167
|
+
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once this
|
168
|
+
// gets fixed, restore `border-top: 0;`.
|
169
|
+
border-top: 0 dotted;
|
167
170
|
border-bottom: 4px solid $dropdown-caret-color;
|
168
171
|
content: "";
|
169
172
|
}
|
@@ -174,3 +177,18 @@
|
|
174
177
|
margin-bottom: 1px;
|
175
178
|
}
|
176
179
|
}
|
180
|
+
|
181
|
+
|
182
|
+
// Component alignment
|
183
|
+
//
|
184
|
+
// Reiterate per navbar.less and the modified component alignment there.
|
185
|
+
|
186
|
+
@media (min-width: $grid-float-breakpoint) {
|
187
|
+
.navbar-right {
|
188
|
+
.dropdown-menu {
|
189
|
+
right: 0;
|
190
|
+
left: auto;
|
191
|
+
}
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
@@ -133,9 +133,9 @@ input[type="number"] {
|
|
133
133
|
@include form-control-focus();
|
134
134
|
|
135
135
|
// Disabled and read-only inputs
|
136
|
-
// Note: HTML5 says that
|
137
|
-
//
|
138
|
-
//
|
136
|
+
// Note: HTML5 says that controls under a fieldset > legend:first-child won't
|
137
|
+
// be disabled if the fieldset is disabled. Due to implementation difficulty,
|
138
|
+
// we don't honor that edge case; we style them as disabled anyway.
|
139
139
|
&[disabled],
|
140
140
|
&[readonly],
|
141
141
|
fieldset[disabled] & {
|
@@ -207,6 +207,20 @@ textarea.form-control {
|
|
207
207
|
margin-left: 10px; // space out consecutive inline controls
|
208
208
|
}
|
209
209
|
|
210
|
+
// Apply same disabled cursor tweak as for inputs
|
211
|
+
//
|
212
|
+
// Note: Neither radios nor checkboxes can be readonly.
|
213
|
+
input[type="radio"],
|
214
|
+
input[type="checkbox"],
|
215
|
+
.radio,
|
216
|
+
.radio-inline,
|
217
|
+
.checkbox,
|
218
|
+
.checkbox-inline {
|
219
|
+
&[disabled],
|
220
|
+
fieldset[disabled] & {
|
221
|
+
cursor: not-allowed;
|
222
|
+
}
|
223
|
+
}
|
210
224
|
|
211
225
|
// Form control sizing
|
212
226
|
@include input-size('.input-sm', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
|
@@ -239,7 +253,7 @@ textarea.form-control {
|
|
239
253
|
|
240
254
|
.form-control-static {
|
241
255
|
margin-bottom: 0; // Remove default margin from `p`
|
242
|
-
padding-top: $padding-base-vertical;
|
256
|
+
padding-top: ($padding-base-vertical + 1);
|
243
257
|
}
|
244
258
|
|
245
259
|
|
@@ -308,21 +322,28 @@ textarea.form-control {
|
|
308
322
|
// Horizontal forms are built on grid classes and allow you to create forms with
|
309
323
|
// labels on the left and inputs on the right.
|
310
324
|
|
311
|
-
.form-horizontal .control-label,
|
312
|
-
.form-horizontal .radio-inline,
|
313
|
-
.form-horizontal .checkbox-inline {
|
314
|
-
padding-top: $padding-base-vertical;
|
315
|
-
}
|
316
|
-
|
317
325
|
.form-horizontal {
|
326
|
+
|
327
|
+
// Consistent vertical alignment of labels, radios, and checkboxes
|
328
|
+
.control-label,
|
329
|
+
.radio,
|
330
|
+
.checkbox,
|
331
|
+
.radio-inline,
|
332
|
+
.checkbox-inline {
|
333
|
+
margin-top: 0;
|
334
|
+
margin-bottom: 0;
|
335
|
+
padding-top: ($padding-base-vertical + 1); // Default padding plus a border
|
336
|
+
}
|
337
|
+
|
338
|
+
// Make form groups behave like rows
|
318
339
|
.form-group {
|
319
340
|
@include make-row();
|
320
341
|
}
|
321
|
-
}
|
322
342
|
|
323
|
-
// Only right align form labels here when the columns stop stacking
|
324
|
-
@media (min-width: $screen-tablet) {
|
325
|
-
|
326
|
-
|
343
|
+
// Only right align form labels here when the columns stop stacking
|
344
|
+
@media (min-width: $screen-tablet) {
|
345
|
+
.control-label {
|
346
|
+
text-align: right;
|
347
|
+
}
|
327
348
|
}
|
328
349
|
}
|
@@ -1,36 +1,27 @@
|
|
1
1
|
//
|
2
2
|
// Glyphicons for Bootstrap
|
3
|
-
// -----------------------------------------------------------------------------
|
4
|
-
|
5
|
-
// About
|
6
|
-
//
|
7
|
-
// Glyphicons font-based icons require you to include all relevant font files,
|
8
|
-
// found in this project under the /fonts/ directory. Files are referenced relative
|
9
|
-
// to the compiled CSS.
|
10
|
-
//
|
11
|
-
// Basic usage
|
12
3
|
//
|
13
4
|
// Since icons are fonts, they can be placed anywhere text is placed and are
|
14
5
|
// thus automatically sized to match the surrounding child. To use, create an
|
15
6
|
// inline element with the appropriate classes, like so:
|
16
7
|
//
|
17
8
|
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
|
18
|
-
//
|
19
|
-
// Use them in links, buttons, headings, and more.
|
20
|
-
|
21
9
|
|
22
10
|
// Import the fonts
|
23
11
|
@font-face {
|
24
12
|
font-family: 'Glyphicons Halflings';
|
25
|
-
src: font-url(
|
26
|
-
src: font-url(
|
27
|
-
font-url(
|
28
|
-
font-url(
|
29
|
-
font-url(
|
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'),
|
15
|
+
font-url("#{$icon-font-path}#{$icon-font-name}.woff") format('woff'),
|
16
|
+
font-url("#{$icon-font-path}#{$icon-font-name}.ttf") format('truetype'),
|
17
|
+
font-url("#{$icon-font-path}#{$icon-font-name}.svg#glyphicons-halflingsregular") format('svg');
|
30
18
|
}
|
31
19
|
|
32
20
|
// Catchall baseclass
|
33
|
-
.glyphicon
|
21
|
+
.glyphicon {
|
22
|
+
position: relative;
|
23
|
+
top: 1px;
|
24
|
+
display: inline-block;
|
34
25
|
font-family: 'Glyphicons Halflings';
|
35
26
|
font-style: normal;
|
36
27
|
font-weight: normal;
|
@@ -39,164 +30,203 @@
|
|
39
30
|
}
|
40
31
|
|
41
32
|
// Individual icons
|
42
|
-
.glyphicon-
|
43
|
-
.glyphicon-
|
44
|
-
.glyphicon-
|
45
|
-
.glyphicon-
|
46
|
-
.glyphicon-
|
47
|
-
.glyphicon-
|
48
|
-
.glyphicon-
|
49
|
-
.glyphicon-
|
50
|
-
.glyphicon-
|
51
|
-
.glyphicon-
|
52
|
-
.glyphicon-
|
53
|
-
.glyphicon-
|
54
|
-
.glyphicon-
|
55
|
-
.glyphicon-
|
56
|
-
.glyphicon-
|
57
|
-
.glyphicon-
|
58
|
-
.glyphicon-
|
59
|
-
.glyphicon-
|
60
|
-
.glyphicon-
|
61
|
-
.glyphicon-
|
62
|
-
.glyphicon-
|
63
|
-
.glyphicon-
|
64
|
-
.glyphicon-
|
65
|
-
.glyphicon-
|
66
|
-
.glyphicon-
|
67
|
-
.glyphicon-
|
68
|
-
.glyphicon-
|
69
|
-
.glyphicon-
|
70
|
-
.glyphicon-
|
71
|
-
.glyphicon-
|
72
|
-
.glyphicon-
|
73
|
-
.glyphicon-
|
74
|
-
.glyphicon-
|
75
|
-
.glyphicon-
|
76
|
-
.glyphicon-
|
77
|
-
.glyphicon-
|
78
|
-
.glyphicon-
|
79
|
-
.glyphicon-
|
80
|
-
.glyphicon-
|
81
|
-
.glyphicon-
|
82
|
-
.glyphicon-
|
83
|
-
.glyphicon-
|
84
|
-
.glyphicon-
|
85
|
-
.glyphicon-
|
86
|
-
.glyphicon-
|
87
|
-
.glyphicon-
|
88
|
-
.glyphicon-
|
89
|
-
.glyphicon-
|
90
|
-
.glyphicon-
|
91
|
-
.glyphicon-
|
92
|
-
.glyphicon-
|
93
|
-
.glyphicon-
|
94
|
-
.glyphicon-
|
95
|
-
.glyphicon-
|
96
|
-
.glyphicon-align-
|
97
|
-
.glyphicon-
|
98
|
-
.glyphicon-
|
99
|
-
.glyphicon-
|
100
|
-
.glyphicon-
|
101
|
-
.glyphicon-
|
102
|
-
.glyphicon-
|
103
|
-
.glyphicon-
|
104
|
-
.glyphicon-
|
105
|
-
.glyphicon-
|
106
|
-
.glyphicon-
|
107
|
-
.glyphicon-
|
108
|
-
.glyphicon-
|
109
|
-
.glyphicon-
|
110
|
-
.glyphicon-
|
111
|
-
.glyphicon-
|
112
|
-
.glyphicon-backward
|
113
|
-
.glyphicon-
|
114
|
-
.glyphicon-
|
115
|
-
.glyphicon-
|
116
|
-
.glyphicon-
|
117
|
-
.glyphicon-
|
118
|
-
.glyphicon-
|
119
|
-
.glyphicon-
|
120
|
-
.glyphicon-
|
121
|
-
.glyphicon-
|
122
|
-
.glyphicon-
|
123
|
-
.glyphicon-
|
124
|
-
.glyphicon-
|
125
|
-
.glyphicon-
|
126
|
-
.glyphicon-
|
127
|
-
.glyphicon-
|
128
|
-
.glyphicon-
|
129
|
-
.glyphicon-
|
130
|
-
.glyphicon-
|
131
|
-
.glyphicon-
|
132
|
-
.glyphicon-
|
133
|
-
.glyphicon-
|
134
|
-
.glyphicon-arrow-
|
135
|
-
.glyphicon-arrow-
|
136
|
-
.glyphicon-
|
137
|
-
.glyphicon-
|
138
|
-
.glyphicon-
|
139
|
-
.glyphicon-
|
140
|
-
.glyphicon-
|
141
|
-
.glyphicon-
|
142
|
-
.glyphicon-
|
143
|
-
.glyphicon-
|
144
|
-
.glyphicon-
|
145
|
-
.glyphicon-
|
146
|
-
.glyphicon-
|
147
|
-
.glyphicon-
|
148
|
-
.glyphicon-
|
149
|
-
.glyphicon-
|
150
|
-
.glyphicon-
|
151
|
-
.glyphicon-
|
152
|
-
.glyphicon-
|
153
|
-
.glyphicon-
|
154
|
-
.glyphicon-
|
155
|
-
.glyphicon-
|
156
|
-
.glyphicon-
|
157
|
-
.glyphicon-
|
158
|
-
.glyphicon-
|
159
|
-
.glyphicon-
|
160
|
-
.glyphicon-
|
161
|
-
.glyphicon-
|
162
|
-
.glyphicon-
|
163
|
-
.glyphicon-
|
164
|
-
.glyphicon-
|
165
|
-
.glyphicon-
|
166
|
-
.glyphicon-
|
167
|
-
.glyphicon-
|
168
|
-
.glyphicon-
|
169
|
-
.glyphicon-
|
170
|
-
.glyphicon-
|
171
|
-
.glyphicon-
|
172
|
-
.glyphicon-
|
173
|
-
.glyphicon-
|
174
|
-
.glyphicon-
|
175
|
-
.glyphicon-
|
176
|
-
.glyphicon-
|
177
|
-
.glyphicon-
|
178
|
-
.glyphicon-
|
179
|
-
.glyphicon-
|
180
|
-
.glyphicon-
|
181
|
-
.glyphicon-
|
182
|
-
.glyphicon-
|
183
|
-
.glyphicon-
|
184
|
-
.glyphicon-
|
185
|
-
.glyphicon-
|
186
|
-
.glyphicon-
|
187
|
-
.glyphicon-
|
188
|
-
.glyphicon-
|
189
|
-
.glyphicon-
|
190
|
-
.glyphicon-
|
191
|
-
.glyphicon-
|
192
|
-
.glyphicon-
|
193
|
-
.glyphicon-
|
194
|
-
.glyphicon-
|
195
|
-
.glyphicon-
|
196
|
-
.glyphicon-
|
197
|
-
.glyphicon-
|
198
|
-
.glyphicon-
|
199
|
-
.glyphicon-
|
200
|
-
.glyphicon-
|
201
|
-
.glyphicon-
|
202
|
-
|
33
|
+
.glyphicon-asterisk { &:before { content: "\2a"; } }
|
34
|
+
.glyphicon-plus { &:before { content: "\2b"; } }
|
35
|
+
.glyphicon-euro { &:before { content: "\20ac"; } }
|
36
|
+
.glyphicon-minus { &:before { content: "\2212"; } }
|
37
|
+
.glyphicon-cloud { &:before { content: "\2601"; } }
|
38
|
+
.glyphicon-envelope { &:before { content: "\2709"; } }
|
39
|
+
.glyphicon-pencil { &:before { content: "\270f"; } }
|
40
|
+
.glyphicon-glass { &:before { content: "\e001"; } }
|
41
|
+
.glyphicon-music { &:before { content: "\e002"; } }
|
42
|
+
.glyphicon-search { &:before { content: "\e003"; } }
|
43
|
+
.glyphicon-heart { &:before { content: "\e005"; } }
|
44
|
+
.glyphicon-star { &:before { content: "\e006"; } }
|
45
|
+
.glyphicon-star-empty { &:before { content: "\e007"; } }
|
46
|
+
.glyphicon-user { &:before { content: "\e008"; } }
|
47
|
+
.glyphicon-film { &:before { content: "\e009"; } }
|
48
|
+
.glyphicon-th-large { &:before { content: "\e010"; } }
|
49
|
+
.glyphicon-th { &:before { content: "\e011"; } }
|
50
|
+
.glyphicon-th-list { &:before { content: "\e012"; } }
|
51
|
+
.glyphicon-ok { &:before { content: "\e013"; } }
|
52
|
+
.glyphicon-remove { &:before { content: "\e014"; } }
|
53
|
+
.glyphicon-zoom-in { &:before { content: "\e015"; } }
|
54
|
+
.glyphicon-zoom-out { &:before { content: "\e016"; } }
|
55
|
+
.glyphicon-off { &:before { content: "\e017"; } }
|
56
|
+
.glyphicon-signal { &:before { content: "\e018"; } }
|
57
|
+
.glyphicon-cog { &:before { content: "\e019"; } }
|
58
|
+
.glyphicon-trash { &:before { content: "\e020"; } }
|
59
|
+
.glyphicon-home { &:before { content: "\e021"; } }
|
60
|
+
.glyphicon-file { &:before { content: "\e022"; } }
|
61
|
+
.glyphicon-time { &:before { content: "\e023"; } }
|
62
|
+
.glyphicon-road { &:before { content: "\e024"; } }
|
63
|
+
.glyphicon-download-alt { &:before { content: "\e025"; } }
|
64
|
+
.glyphicon-download { &:before { content: "\e026"; } }
|
65
|
+
.glyphicon-upload { &:before { content: "\e027"; } }
|
66
|
+
.glyphicon-inbox { &:before { content: "\e028"; } }
|
67
|
+
.glyphicon-play-circle { &:before { content: "\e029"; } }
|
68
|
+
.glyphicon-repeat { &:before { content: "\e030"; } }
|
69
|
+
.glyphicon-refresh { &:before { content: "\e031"; } }
|
70
|
+
.glyphicon-list-alt { &:before { content: "\e032"; } }
|
71
|
+
.glyphicon-flag { &:before { content: "\e034"; } }
|
72
|
+
.glyphicon-headphones { &:before { content: "\e035"; } }
|
73
|
+
.glyphicon-volume-off { &:before { content: "\e036"; } }
|
74
|
+
.glyphicon-volume-down { &:before { content: "\e037"; } }
|
75
|
+
.glyphicon-volume-up { &:before { content: "\e038"; } }
|
76
|
+
.glyphicon-qrcode { &:before { content: "\e039"; } }
|
77
|
+
.glyphicon-barcode { &:before { content: "\e040"; } }
|
78
|
+
.glyphicon-tag { &:before { content: "\e041"; } }
|
79
|
+
.glyphicon-tags { &:before { content: "\e042"; } }
|
80
|
+
.glyphicon-book { &:before { content: "\e043"; } }
|
81
|
+
.glyphicon-print { &:before { content: "\e045"; } }
|
82
|
+
.glyphicon-font { &:before { content: "\e047"; } }
|
83
|
+
.glyphicon-bold { &:before { content: "\e048"; } }
|
84
|
+
.glyphicon-italic { &:before { content: "\e049"; } }
|
85
|
+
.glyphicon-text-height { &:before { content: "\e050"; } }
|
86
|
+
.glyphicon-text-width { &:before { content: "\e051"; } }
|
87
|
+
.glyphicon-align-left { &:before { content: "\e052"; } }
|
88
|
+
.glyphicon-align-center { &:before { content: "\e053"; } }
|
89
|
+
.glyphicon-align-right { &:before { content: "\e054"; } }
|
90
|
+
.glyphicon-align-justify { &:before { content: "\e055"; } }
|
91
|
+
.glyphicon-list { &:before { content: "\e056"; } }
|
92
|
+
.glyphicon-indent-left { &:before { content: "\e057"; } }
|
93
|
+
.glyphicon-indent-right { &:before { content: "\e058"; } }
|
94
|
+
.glyphicon-facetime-video { &:before { content: "\e059"; } }
|
95
|
+
.glyphicon-picture { &:before { content: "\e060"; } }
|
96
|
+
.glyphicon-map-marker { &:before { content: "\e062"; } }
|
97
|
+
.glyphicon-adjust { &:before { content: "\e063"; } }
|
98
|
+
.glyphicon-tint { &:before { content: "\e064"; } }
|
99
|
+
.glyphicon-edit { &:before { content: "\e065"; } }
|
100
|
+
.glyphicon-share { &:before { content: "\e066"; } }
|
101
|
+
.glyphicon-check { &:before { content: "\e067"; } }
|
102
|
+
.glyphicon-move { &:before { content: "\e068"; } }
|
103
|
+
.glyphicon-step-backward { &:before { content: "\e069"; } }
|
104
|
+
.glyphicon-fast-backward { &:before { content: "\e070"; } }
|
105
|
+
.glyphicon-backward { &:before { content: "\e071"; } }
|
106
|
+
.glyphicon-play { &:before { content: "\e072"; } }
|
107
|
+
.glyphicon-pause { &:before { content: "\e073"; } }
|
108
|
+
.glyphicon-stop { &:before { content: "\e074"; } }
|
109
|
+
.glyphicon-forward { &:before { content: "\e075"; } }
|
110
|
+
.glyphicon-fast-forward { &:before { content: "\e076"; } }
|
111
|
+
.glyphicon-step-forward { &:before { content: "\e077"; } }
|
112
|
+
.glyphicon-eject { &:before { content: "\e078"; } }
|
113
|
+
.glyphicon-chevron-left { &:before { content: "\e079"; } }
|
114
|
+
.glyphicon-chevron-right { &:before { content: "\e080"; } }
|
115
|
+
.glyphicon-plus-sign { &:before { content: "\e081"; } }
|
116
|
+
.glyphicon-minus-sign { &:before { content: "\e082"; } }
|
117
|
+
.glyphicon-remove-sign { &:before { content: "\e083"; } }
|
118
|
+
.glyphicon-ok-sign { &:before { content: "\e084"; } }
|
119
|
+
.glyphicon-question-sign { &:before { content: "\e085"; } }
|
120
|
+
.glyphicon-info-sign { &:before { content: "\e086"; } }
|
121
|
+
.glyphicon-screenshot { &:before { content: "\e087"; } }
|
122
|
+
.glyphicon-remove-circle { &:before { content: "\e088"; } }
|
123
|
+
.glyphicon-ok-circle { &:before { content: "\e089"; } }
|
124
|
+
.glyphicon-ban-circle { &:before { content: "\e090"; } }
|
125
|
+
.glyphicon-arrow-left { &:before { content: "\e091"; } }
|
126
|
+
.glyphicon-arrow-right { &:before { content: "\e092"; } }
|
127
|
+
.glyphicon-arrow-up { &:before { content: "\e093"; } }
|
128
|
+
.glyphicon-arrow-down { &:before { content: "\e094"; } }
|
129
|
+
.glyphicon-share-alt { &:before { content: "\e095"; } }
|
130
|
+
.glyphicon-resize-full { &:before { content: "\e096"; } }
|
131
|
+
.glyphicon-resize-small { &:before { content: "\e097"; } }
|
132
|
+
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
|
133
|
+
.glyphicon-gift { &:before { content: "\e102"; } }
|
134
|
+
.glyphicon-leaf { &:before { content: "\e103"; } }
|
135
|
+
.glyphicon-eye-open { &:before { content: "\e105"; } }
|
136
|
+
.glyphicon-eye-close { &:before { content: "\e106"; } }
|
137
|
+
.glyphicon-warning-sign { &:before { content: "\e107"; } }
|
138
|
+
.glyphicon-plane { &:before { content: "\e108"; } }
|
139
|
+
.glyphicon-random { &:before { content: "\e110"; } }
|
140
|
+
.glyphicon-comment { &:before { content: "\e111"; } }
|
141
|
+
.glyphicon-magnet { &:before { content: "\e112"; } }
|
142
|
+
.glyphicon-chevron-up { &:before { content: "\e113"; } }
|
143
|
+
.glyphicon-chevron-down { &:before { content: "\e114"; } }
|
144
|
+
.glyphicon-retweet { &:before { content: "\e115"; } }
|
145
|
+
.glyphicon-shopping-cart { &:before { content: "\e116"; } }
|
146
|
+
.glyphicon-folder-close { &:before { content: "\e117"; } }
|
147
|
+
.glyphicon-folder-open { &:before { content: "\e118"; } }
|
148
|
+
.glyphicon-resize-vertical { &:before { content: "\e119"; } }
|
149
|
+
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
|
150
|
+
.glyphicon-hdd { &:before { content: "\e121"; } }
|
151
|
+
.glyphicon-bullhorn { &:before { content: "\e122"; } }
|
152
|
+
.glyphicon-certificate { &:before { content: "\e124"; } }
|
153
|
+
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
|
154
|
+
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
|
155
|
+
.glyphicon-hand-right { &:before { content: "\e127"; } }
|
156
|
+
.glyphicon-hand-left { &:before { content: "\e128"; } }
|
157
|
+
.glyphicon-hand-up { &:before { content: "\e129"; } }
|
158
|
+
.glyphicon-hand-down { &:before { content: "\e130"; } }
|
159
|
+
.glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
|
160
|
+
.glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
|
161
|
+
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
|
162
|
+
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
|
163
|
+
.glyphicon-globe { &:before { content: "\e135"; } }
|
164
|
+
.glyphicon-tasks { &:before { content: "\e137"; } }
|
165
|
+
.glyphicon-filter { &:before { content: "\e138"; } }
|
166
|
+
.glyphicon-fullscreen { &:before { content: "\e140"; } }
|
167
|
+
.glyphicon-dashboard { &:before { content: "\e141"; } }
|
168
|
+
.glyphicon-heart-empty { &:before { content: "\e143"; } }
|
169
|
+
.glyphicon-link { &:before { content: "\e144"; } }
|
170
|
+
.glyphicon-phone { &:before { content: "\e145"; } }
|
171
|
+
.glyphicon-usd { &:before { content: "\e148"; } }
|
172
|
+
.glyphicon-gbp { &:before { content: "\e149"; } }
|
173
|
+
.glyphicon-sort { &:before { content: "\e150"; } }
|
174
|
+
.glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
|
175
|
+
.glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
|
176
|
+
.glyphicon-sort-by-order { &:before { content: "\e153"; } }
|
177
|
+
.glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
|
178
|
+
.glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
|
179
|
+
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
|
180
|
+
.glyphicon-unchecked { &:before { content: "\e157"; } }
|
181
|
+
.glyphicon-expand { &:before { content: "\e158"; } }
|
182
|
+
.glyphicon-collapse-down { &:before { content: "\e159"; } }
|
183
|
+
.glyphicon-collapse-up { &:before { content: "\e160"; } }
|
184
|
+
.glyphicon-log-in { &:before { content: "\e161"; } }
|
185
|
+
.glyphicon-flash { &:before { content: "\e162"; } }
|
186
|
+
.glyphicon-log-out { &:before { content: "\e163"; } }
|
187
|
+
.glyphicon-new-window { &:before { content: "\e164"; } }
|
188
|
+
.glyphicon-record { &:before { content: "\e165"; } }
|
189
|
+
.glyphicon-save { &:before { content: "\e166"; } }
|
190
|
+
.glyphicon-open { &:before { content: "\e167"; } }
|
191
|
+
.glyphicon-saved { &:before { content: "\e168"; } }
|
192
|
+
.glyphicon-import { &:before { content: "\e169"; } }
|
193
|
+
.glyphicon-export { &:before { content: "\e170"; } }
|
194
|
+
.glyphicon-send { &:before { content: "\e171"; } }
|
195
|
+
.glyphicon-floppy-disk { &:before { content: "\e172"; } }
|
196
|
+
.glyphicon-floppy-saved { &:before { content: "\e173"; } }
|
197
|
+
.glyphicon-floppy-remove { &:before { content: "\e174"; } }
|
198
|
+
.glyphicon-floppy-save { &:before { content: "\e175"; } }
|
199
|
+
.glyphicon-floppy-open { &:before { content: "\e176"; } }
|
200
|
+
.glyphicon-credit-card { &:before { content: "\e177"; } }
|
201
|
+
.glyphicon-transfer { &:before { content: "\e178"; } }
|
202
|
+
.glyphicon-cutlery { &:before { content: "\e179"; } }
|
203
|
+
.glyphicon-header { &:before { content: "\e180"; } }
|
204
|
+
.glyphicon-compressed { &:before { content: "\e181"; } }
|
205
|
+
.glyphicon-earphone { &:before { content: "\e182"; } }
|
206
|
+
.glyphicon-phone-alt { &:before { content: "\e183"; } }
|
207
|
+
.glyphicon-tower { &:before { content: "\e184"; } }
|
208
|
+
.glyphicon-stats { &:before { content: "\e185"; } }
|
209
|
+
.glyphicon-sd-video { &:before { content: "\e186"; } }
|
210
|
+
.glyphicon-hd-video { &:before { content: "\e187"; } }
|
211
|
+
.glyphicon-subtitles { &:before { content: "\e188"; } }
|
212
|
+
.glyphicon-sound-stereo { &:before { content: "\e189"; } }
|
213
|
+
.glyphicon-sound-dolby { &:before { content: "\e190"; } }
|
214
|
+
.glyphicon-sound-5-1 { &:before { content: "\e191"; } }
|
215
|
+
.glyphicon-sound-6-1 { &:before { content: "\e192"; } }
|
216
|
+
.glyphicon-sound-7-1 { &:before { content: "\e193"; } }
|
217
|
+
.glyphicon-copyright-mark { &:before { content: "\e194"; } }
|
218
|
+
.glyphicon-registration-mark { &:before { content: "\e195"; } }
|
219
|
+
.glyphicon-cloud-download { &:before { content: "\e197"; } }
|
220
|
+
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
221
|
+
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
222
|
+
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
223
|
+
.glyphicon-briefcase { &:before { content: "\1f4bc"; } }
|
224
|
+
.glyphicon-calendar { &:before { content: "\1f4c5"; } }
|
225
|
+
.glyphicon-pushpin { &:before { content: "\1f4cc"; } }
|
226
|
+
.glyphicon-paperclip { &:before { content: "\1f4ce"; } }
|
227
|
+
.glyphicon-camera { &:before { content: "\1f4f7"; } }
|
228
|
+
.glyphicon-lock { &:before { content: "\1f512"; } }
|
229
|
+
.glyphicon-bell { &:before { content: "\1f514"; } }
|
230
|
+
.glyphicon-bookmark { &:before { content: "\1f516"; } }
|
231
|
+
.glyphicon-fire { &:before { content: "\1f525"; } }
|
232
|
+
.glyphicon-wrench { &:before { content: "\1f527"; } }
|