@gmfe/react 2.14.17 → 2.14.19-beta.0
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.
- package/package.json +3 -3
- package/src/common/hooks/index.js +3 -3
- package/src/common/hooks/use_mutation_observer.js +25 -25
- package/src/common/util.js +52 -52
- package/src/component/affix/affix.stories.js +13 -13
- package/src/component/affix/index.js +21 -21
- package/src/component/box/box.js +31 -31
- package/src/component/box/box.stories.js +94 -94
- package/src/component/box/box_form.js +77 -77
- package/src/component/box/box_panel.js +91 -91
- package/src/component/box/box_table.js +51 -51
- package/src/component/box/index.js +6 -6
- package/src/component/box/style.less +39 -39
- package/src/component/button/button.stories.js +91 -91
- package/src/component/button/index.js +92 -92
- package/src/component/button/style.less +114 -114
- package/src/component/calendar/calendar.js +52 -52
- package/src/component/calendar/calendar.stories.js +57 -57
- package/src/component/calendar/content.js +89 -89
- package/src/component/calendar/day.js +109 -109
- package/src/component/calendar/head.js +243 -243
- package/src/component/calendar/index.js +4 -4
- package/src/component/calendar/range_calendar.js +150 -150
- package/src/component/calendar/style.less +140 -140
- package/src/component/calendar/week.js +27 -27
- package/src/component/carousel/carousel.js +178 -178
- package/src/component/carousel/stories.js +50 -50
- package/src/component/carousel/style.less +48 -48
- package/src/component/cascader/cascader.js +443 -443
- package/src/component/cascader/cascader.select.js +195 -195
- package/src/component/cascader/stories.js +240 -240
- package/src/component/cascader/style.less +122 -122
- package/src/component/checkbox/checkbox.js +86 -86
- package/src/component/checkbox/checkbox_group.js +66 -66
- package/src/component/checkbox/index.js +4 -4
- package/src/component/checkbox/stories.js +103 -103
- package/src/component/checkbox/style.less +88 -88
- package/src/component/collapse/collapse.stories.js +18 -18
- package/src/component/collapse/index.js +36 -36
- package/src/component/color_picker/index.js +190 -190
- package/src/component/color_picker/stories.js +17 -17
- package/src/component/color_picker/style.less +41 -41
- package/src/component/date_picker/date_picker.stories.js +102 -102
- package/src/component/date_picker/index.js +217 -217
- package/src/component/date_picker/overlay.js +119 -119
- package/src/component/date_picker/style.less +22 -22
- package/src/component/date_picker/time_select.js +62 -62
- package/src/component/date_range_picker/date_range_picker.stories.js +196 -196
- package/src/component/date_range_picker/index.js +206 -206
- package/src/component/date_range_picker/left.js +127 -127
- package/src/component/date_range_picker/overlay.js +202 -202
- package/src/component/date_range_picker/style.less +46 -46
- package/src/component/date_range_picker/time_range_select.js +150 -150
- package/src/component/date_range_picker/two.js +129 -129
- package/src/component/date_range_picker/util.js +42 -42
- package/src/component/dialog/index.js +240 -240
- package/src/component/dialog/stories.js +125 -125
- package/src/component/divider/index.js +28 -28
- package/src/component/divider/stories.js +5 -5
- package/src/component/divider/style.less +15 -15
- package/src/component/drawer/index.js +107 -107
- package/src/component/drawer/style.less +43 -43
- package/src/component/drop_down/drop_down.js +84 -84
- package/src/component/drop_down/drop_down_item.js +43 -43
- package/src/component/drop_down/drop_down_items.js +22 -22
- package/src/component/drop_down/index.js +5 -5
- package/src/component/drop_down/stories.js +38 -38
- package/src/component/drop_down/style.less +21 -21
- package/src/component/drop_select/index.js +208 -208
- package/src/component/drop_select/style.less +69 -69
- package/src/component/dropper/index.js +62 -62
- package/src/component/dropper/style.less +18 -18
- package/src/component/editable_text/editable_text.stories.js +47 -47
- package/src/component/editable_text/index.js +106 -106
- package/src/component/editable_text/style.less +29 -29
- package/src/component/filter_select/filter.select.js +416 -416
- package/src/component/filter_select/multiple.filter.select.js +425 -425
- package/src/component/filter_select/style.less +117 -117
- package/src/component/flex/index.js +132 -132
- package/src/component/flex/stories.js +13 -13
- package/src/component/flex/style.less +101 -101
- package/src/component/flip_number/index.js +196 -196
- package/src/component/flip_number/stories.js +25 -25
- package/src/component/flip_number/utils.js +50 -50
- package/src/component/form/form.js +153 -153
- package/src/component/form/form.stories.js +553 -553
- package/src/component/form/form_block.js +59 -59
- package/src/component/form/form_button.js +29 -29
- package/src/component/form/form_group.js +173 -173
- package/src/component/form/form_item.js +163 -163
- package/src/component/form/form_panel.js +71 -71
- package/src/component/form/index.js +8 -8
- package/src/component/form/style.less +130 -130
- package/src/component/form/util.js +13 -13
- package/src/component/function_set/function_set.stories.js +91 -91
- package/src/component/function_set/index.js +98 -98
- package/src/component/function_set/overlay.js +56 -56
- package/src/component/grid/col.js +72 -72
- package/src/component/grid/grid.stories.js +123 -123
- package/src/component/grid/index.js +4 -4
- package/src/component/grid/mixin.less +48 -48
- package/src/component/grid/row.js +44 -44
- package/src/component/grid/style.less +26 -26
- package/src/component/grid/util.js +11 -11
- package/src/component/icon_down_up/index.js +28 -28
- package/src/component/icon_down_up/stories.js +18 -18
- package/src/component/icon_down_up/style.less +8 -8
- package/src/component/image_preview/index.js +20 -20
- package/src/component/image_preview/preview_modal.js +193 -193
- package/src/component/image_preview/style.less +119 -119
- package/src/component/img_uploader/index.js +149 -149
- package/src/component/img_uploader/index.stories.js +51 -51
- package/src/component/img_uploader/style.less +22 -22
- package/src/component/input/index.js +19 -19
- package/src/component/input_number/index.js +73 -73
- package/src/component/input_number/number.js +158 -158
- package/src/component/input_number/stories.js +21 -21
- package/src/component/input_number/style.less +10 -10
- package/src/component/layout_root/index.js +165 -165
- package/src/component/lazy_img/index.js +68 -68
- package/src/component/level_list/index.js +120 -120
- package/src/component/level_list/level_item.js +64 -64
- package/src/component/level_list/level_list.stories.js +139 -139
- package/src/component/level_list/style.less +47 -47
- package/src/component/level_list/util.js +22 -22
- package/src/component/level_select/index.js +240 -240
- package/src/component/level_select/level_select.stories.js +67 -67
- package/src/component/list/base.js +155 -155
- package/src/component/list/index.js +93 -93
- package/src/component/list/list.stories.js +99 -99
- package/src/component/list/style.less +58 -58
- package/src/component/loading/index.js +45 -45
- package/src/component/loading/loading_chunk.js +59 -59
- package/src/component/loading/loading_full_screen.js +62 -62
- package/src/component/loading/stories.js +46 -46
- package/src/component/loading/style.less +92 -92
- package/src/component/mask/index.js +34 -34
- package/src/component/mask/style.less +10 -10
- package/src/component/modal/clean_modal.js +36 -36
- package/src/component/modal/index.js +293 -293
- package/src/component/modal/right_side_modal.js +37 -37
- package/src/component/modal/stories.js +96 -96
- package/src/component/modal/style.less +145 -145
- package/src/component/more_select/base.js +517 -517
- package/src/component/more_select/index.js +91 -91
- package/src/component/more_select/stories.js +261 -261
- package/src/component/more_select/style.less +130 -130
- package/src/component/nav/index.js +269 -269
- package/src/component/nav/nav.stories.js +133 -133
- package/src/component/nav/style.less +156 -156
- package/src/component/nprogress/index.js +34 -34
- package/src/component/nprogress/stories.js +22 -22
- package/src/component/nprogress/style.less +39 -39
- package/src/component/pagination/base.js +67 -67
- package/src/component/pagination/left.js +65 -65
- package/src/component/pagination/page.js +120 -120
- package/src/component/pagination/page_peek.js +96 -96
- package/src/component/pagination/pagination.js +54 -54
- package/src/component/pagination/pagination.stories.js +104 -104
- package/src/component/pagination/pagination_text.js +71 -71
- package/src/component/pagination/pagination_v2.js +30 -30
- package/src/component/pagination/right.js +67 -67
- package/src/component/pagination/style.less +52 -52
- package/src/component/pagination/util.js +5 -5
- package/src/component/picture_preview/index.js +21 -21
- package/src/component/popover/index.js +373 -373
- package/src/component/popover/stories.js +101 -101
- package/src/component/popup/index.js +4 -4
- package/src/component/popup/popup.js +172 -172
- package/src/component/popup/popup_content_confirm.js +67 -67
- package/src/component/popup/style.less +105 -105
- package/src/component/price/index.js +147 -147
- package/src/component/price/stories.js +34 -34
- package/src/component/progress/index.js +101 -101
- package/src/component/progress/stories.js +60 -60
- package/src/component/progress/style.less +88 -88
- package/src/component/progress_circle/index.js +116 -116
- package/src/component/progress_circle/stories.js +54 -54
- package/src/component/progress_circle/style.less +17 -17
- package/src/component/radio/index.js +4 -4
- package/src/component/radio/radio.js +76 -76
- package/src/component/radio/radio_group.js +51 -51
- package/src/component/radio/stories.js +80 -80
- package/src/component/radio/style.less +63 -63
- package/src/component/recommend_input/index.js +118 -118
- package/src/component/recommend_input/recommend_input.stories.js +56 -56
- package/src/component/recommend_input/style.less +25 -25
- package/src/component/select/index.js +4 -4
- package/src/component/select/option.js +22 -22
- package/src/component/select/select.js +186 -186
- package/src/component/select/select.stories.js +79 -79
- package/src/component/select/style.less +4 -4
- package/src/component/selection/index.js +132 -132
- package/src/component/selection/selection.stories.js +41 -41
- package/src/component/selection/style.less +67 -67
- package/src/component/sheet/index.js +7 -7
- package/src/component/sheet/sheet.js +348 -348
- package/src/component/sheet/sheet_action.js +16 -16
- package/src/component/sheet/sheet_batch_action.js +16 -16
- package/src/component/sheet/sheet_column.js +21 -21
- package/src/component/sheet/sheet_select.js +31 -31
- package/src/component/sheet/stories.js +210 -210
- package/src/component/sheet/style.less +95 -95
- package/src/component/steps/index.js +66 -66
- package/src/component/steps/steps.stories.js +15 -15
- package/src/component/steps/style.less +39 -39
- package/src/component/storage/index.js +54 -54
- package/src/component/storage/stories.js +38 -38
- package/src/component/switch/index.js +118 -118
- package/src/component/switch/stories.js +7 -7
- package/src/component/switch/style.less +70 -70
- package/src/component/table_select/index.js +152 -152
- package/src/component/table_select/style.less +12 -12
- package/src/component/table_select/table_select.stories.js +91 -91
- package/src/component/table_select/util.js +21 -21
- package/src/component/tabs/style.less +33 -33
- package/src/component/tabs/tabs.js +97 -97
- package/src/component/tabs/tabs.stories.js +48 -48
- package/src/component/time_span/style.less +45 -45
- package/src/component/time_span/time_span.js +183 -183
- package/src/component/time_span/time_span.stories.js +66 -66
- package/src/component/time_span/time_span_picker.js +112 -112
- package/src/component/time_span/time_span_picker.stories.js +71 -71
- package/src/component/tip/index.js +168 -168
- package/src/component/tip/stories.js +54 -54
- package/src/component/tip/style.less +41 -41
- package/src/component/tool_tip/index.js +58 -58
- package/src/component/tool_tip/stories.js +36 -36
- package/src/component/transfer/box.js +186 -141
- package/src/component/transfer/index.js +4 -4
- package/src/component/transfer/stories.js +108 -118
- package/src/component/transfer/style.less +34 -34
- package/src/component/transfer/transfer.js +181 -173
- package/src/component/transfer/transfer_group.js +178 -178
- package/src/component/transfer_v2/index.js +171 -171
- package/src/component/transfer_v2/transfer_v2.stories.js +226 -226
- package/src/component/tree/bottom.js +41 -41
- package/src/component/tree/index.js +205 -205
- package/src/component/tree/item.js +154 -154
- package/src/component/tree/list.js +151 -151
- package/src/component/tree/style.less +147 -147
- package/src/component/tree/tree.stories.js +241 -241
- package/src/component/tree/util.js +24 -24
- package/src/component/tree_v2/bottom.js +40 -40
- package/src/component/tree_v2/index.js +260 -260
- package/src/component/tree_v2/list.js +230 -230
- package/src/component/tree_v2/style.less +38 -38
- package/src/component/tree_v2/tree.stories.js +419 -419
- package/src/component/tree_v2/util.js +185 -185
- package/src/component/uploader/index.js +108 -108
- package/src/component/uploader/style.less +24 -24
- package/src/component/uploader/uploader.stories.js +51 -51
- package/src/css/arrow.less +56 -56
- package/src/css/bg.less +52 -52
- package/src/css/border.less +40 -40
- package/src/css/cover.less +236 -236
- package/src/css/cursor.less +19 -19
- package/src/css/display.less +16 -16
- package/src/css/distance.less +324 -324
- package/src/css/error.less +10 -10
- package/src/css/other.less +16 -16
- package/src/css/overflow.less +23 -23
- package/src/css/position.less +11 -11
- package/src/css/rotate.less +28 -28
- package/src/css/shadow.less +11 -11
- package/src/css/stories.js +104 -104
- package/src/css/svg.less +51 -51
- package/src/css/text.less +120 -120
- package/src/css/variables.less +62 -62
- package/src/event_type.js +16 -16
- package/src/fonts/glyphicons-halflings-regular.svg +542 -542
- package/src/index.js +237 -237
- package/src/index.less +108 -108
- package/src/less/.csscomb.json +304 -304
- package/src/less/.csslintrc +19 -19
- package/src/less/alerts.less +72 -72
- package/src/less/badges.less +65 -65
- package/src/less/bootstrap.less +51 -51
- package/src/less/breadcrumbs.less +25 -25
- package/src/less/button-groups.less +253 -253
- package/src/less/buttons.less +186 -186
- package/src/less/carousel.less +269 -269
- package/src/less/close.less +33 -33
- package/src/less/code.less +68 -68
- package/src/less/component-animations.less +39 -39
- package/src/less/custom.less +37 -37
- package/src/less/dropdowns.less +215 -215
- package/src/less/forms.less +612 -612
- package/src/less/glyphicons.less +1614 -1614
- package/src/less/grid.less +76 -76
- package/src/less/input-groups.less +175 -175
- package/src/less/jumbotron.less +53 -53
- package/src/less/labels.less +64 -64
- package/src/less/list-group.less +126 -126
- package/src/less/media.less +66 -66
- package/src/less/mixins/alerts.less +14 -14
- package/src/less/mixins/background-variant.less +9 -9
- package/src/less/mixins/border-radius.less +21 -21
- package/src/less/mixins/buttons.less +65 -65
- package/src/less/mixins/center-block.less +7 -7
- package/src/less/mixins/clearfix.less +22 -22
- package/src/less/mixins/forms.less +84 -84
- package/src/less/mixins/gradients.less +59 -59
- package/src/less/mixins/grid-framework.less +96 -96
- package/src/less/mixins/grid.less +134 -134
- package/src/less/mixins/hide-text.less +21 -21
- package/src/less/mixins/image.less +25 -25
- package/src/less/mixins/labels.less +12 -12
- package/src/less/mixins/list-group.less +30 -30
- package/src/less/mixins/nav-divider.less +10 -10
- package/src/less/mixins/nav-vertical-align.less +9 -9
- package/src/less/mixins/opacity.less +8 -8
- package/src/less/mixins/pagination.less +24 -24
- package/src/less/mixins/panels.less +24 -24
- package/src/less/mixins/progress-bar.less +10 -10
- package/src/less/mixins/reset-filter.less +8 -8
- package/src/less/mixins/reset-text.less +18 -18
- package/src/less/mixins/resize.less +6 -6
- package/src/less/mixins/responsive-visibility.less +21 -21
- package/src/less/mixins/size.less +10 -10
- package/src/less/mixins/tab-focus.less +9 -9
- package/src/less/mixins/table-row.less +28 -28
- package/src/less/mixins/text-emphasis.less +9 -9
- package/src/less/mixins/text-overflow.less +8 -8
- package/src/less/mixins/vendor-prefixes.less +254 -254
- package/src/less/mixins.less +36 -36
- package/src/less/modals.less +163 -163
- package/src/less/navbar.less +651 -651
- package/src/less/navs.less +236 -236
- package/src/less/normalize.less +424 -424
- package/src/less/pager.less +54 -54
- package/src/less/pagination.less +90 -90
- package/src/less/panels.less +274 -274
- package/src/less/popovers.less +140 -140
- package/src/less/print.less +103 -103
- package/src/less/progress-bars.less +92 -92
- package/src/less/responsive-embed.less +35 -35
- package/src/less/responsive-utilities.less +209 -209
- package/src/less/scaffolding.less +154 -154
- package/src/less/tables.less +228 -228
- package/src/less/theme.less +344 -344
- package/src/less/thumbnails.less +35 -35
- package/src/less/tooltip.less +115 -115
- package/src/less/type.less +352 -352
- package/src/less/utilities.less +57 -57
- package/src/less/variables.less +833 -833
- package/src/less/wells.less +29 -29
- package/src/sotries.js +4 -4
- package/src/validator/index.js +10 -10
- package/src/validator/rules.js +66 -66
- package/src/validator/type.js +10 -10
- package/src/validator/validator.js +86 -86
- package/src/var.less +4 -4
- package/svg/calendar-month.svg +8 -8
- package/svg/calendar-year.svg +13 -13
- package/svg/calendar.svg +17 -17
- package/svg/check-detail.svg +18 -18
- package/svg/close-circle.svg +13 -13
- package/svg/closeup.svg +20 -20
- package/svg/delete.svg +10 -10
- package/svg/down-small.svg +1 -1
- package/svg/down.svg +1 -1
- package/svg/edit-box.svg +17 -17
- package/svg/edit-pen.svg +17 -17
- package/svg/empty.svg +27 -27
- package/svg/expand.svg +21 -21
- package/svg/left-small.svg +1 -1
- package/svg/more.svg +10 -10
- package/svg/next.svg +40 -40
- package/svg/pen.svg +12 -12
- package/svg/remove.svg +1 -1
- package/svg/right-small.svg +1 -1
- package/svg/search.svg +8 -8
- package/svg/setting.svg +17 -17
- package/svg/up-small.svg +1 -1
- package/svg/up.svg +1 -1
package/src/less/glyphicons.less
CHANGED
@@ -1,1614 +1,1614 @@
|
|
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: url('@{icon-font-path}@{icon-font-name}.eot');
|
14
|
-
src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
|
15
|
-
url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
|
16
|
-
url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
|
17
|
-
url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
|
18
|
-
url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
|
19
|
-
}
|
20
|
-
|
21
|
-
// Catchall baseclass
|
22
|
-
.glyphicon {
|
23
|
-
position: relative;
|
24
|
-
top: 1px;
|
25
|
-
display: inline-block;
|
26
|
-
font-family: 'Glyphicons Halflings';
|
27
|
-
font-style: normal;
|
28
|
-
font-weight: normal;
|
29
|
-
line-height: 1;
|
30
|
-
-webkit-font-smoothing: antialiased;
|
31
|
-
-moz-osx-font-smoothing: grayscale;
|
32
|
-
}
|
33
|
-
|
34
|
-
// Individual icons
|
35
|
-
.glyphicon-asterisk {
|
36
|
-
&:before {
|
37
|
-
content: "\002a";
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
.glyphicon-plus {
|
42
|
-
&:before {
|
43
|
-
content: "\002b";
|
44
|
-
}
|
45
|
-
}
|
46
|
-
|
47
|
-
.glyphicon-euro,
|
48
|
-
.glyphicon-eur {
|
49
|
-
&:before {
|
50
|
-
content: "\20ac";
|
51
|
-
}
|
52
|
-
}
|
53
|
-
|
54
|
-
.glyphicon-minus {
|
55
|
-
&:before {
|
56
|
-
content: "\2212";
|
57
|
-
}
|
58
|
-
}
|
59
|
-
|
60
|
-
.glyphicon-cloud {
|
61
|
-
&:before {
|
62
|
-
content: "\2601";
|
63
|
-
}
|
64
|
-
}
|
65
|
-
|
66
|
-
.glyphicon-envelope {
|
67
|
-
&:before {
|
68
|
-
content: "\2709";
|
69
|
-
}
|
70
|
-
}
|
71
|
-
|
72
|
-
.glyphicon-pencil {
|
73
|
-
&:before {
|
74
|
-
content: "\270f";
|
75
|
-
}
|
76
|
-
}
|
77
|
-
|
78
|
-
.glyphicon-glass {
|
79
|
-
&:before {
|
80
|
-
content: "\e001";
|
81
|
-
}
|
82
|
-
}
|
83
|
-
|
84
|
-
.glyphicon-music {
|
85
|
-
&:before {
|
86
|
-
content: "\e002";
|
87
|
-
}
|
88
|
-
}
|
89
|
-
|
90
|
-
.glyphicon-search {
|
91
|
-
&:before {
|
92
|
-
content: "\e003";
|
93
|
-
}
|
94
|
-
}
|
95
|
-
|
96
|
-
.glyphicon-heart {
|
97
|
-
&:before {
|
98
|
-
content: "\e005";
|
99
|
-
}
|
100
|
-
}
|
101
|
-
|
102
|
-
.glyphicon-star {
|
103
|
-
&:before {
|
104
|
-
content: "\e006";
|
105
|
-
}
|
106
|
-
}
|
107
|
-
|
108
|
-
.glyphicon-star-empty {
|
109
|
-
&:before {
|
110
|
-
content: "\e007";
|
111
|
-
}
|
112
|
-
}
|
113
|
-
|
114
|
-
.glyphicon-user {
|
115
|
-
&:before {
|
116
|
-
content: "\e008";
|
117
|
-
}
|
118
|
-
}
|
119
|
-
|
120
|
-
.glyphicon-film {
|
121
|
-
&:before {
|
122
|
-
content: "\e009";
|
123
|
-
}
|
124
|
-
}
|
125
|
-
|
126
|
-
.glyphicon-th-large {
|
127
|
-
&:before {
|
128
|
-
content: "\e010";
|
129
|
-
}
|
130
|
-
}
|
131
|
-
|
132
|
-
.glyphicon-th {
|
133
|
-
&:before {
|
134
|
-
content: "\e011";
|
135
|
-
}
|
136
|
-
}
|
137
|
-
|
138
|
-
.glyphicon-th-list {
|
139
|
-
&:before {
|
140
|
-
content: "\e012";
|
141
|
-
}
|
142
|
-
}
|
143
|
-
|
144
|
-
.glyphicon-ok {
|
145
|
-
&:before {
|
146
|
-
content: "\e013";
|
147
|
-
}
|
148
|
-
}
|
149
|
-
|
150
|
-
.glyphicon-remove {
|
151
|
-
&:before {
|
152
|
-
content: "\e014";
|
153
|
-
}
|
154
|
-
}
|
155
|
-
|
156
|
-
.glyphicon-zoom-in {
|
157
|
-
&:before {
|
158
|
-
content: "\e015";
|
159
|
-
}
|
160
|
-
}
|
161
|
-
|
162
|
-
.glyphicon-zoom-out {
|
163
|
-
&:before {
|
164
|
-
content: "\e016";
|
165
|
-
}
|
166
|
-
}
|
167
|
-
|
168
|
-
.glyphicon-off {
|
169
|
-
&:before {
|
170
|
-
content: "\e017";
|
171
|
-
}
|
172
|
-
}
|
173
|
-
|
174
|
-
.glyphicon-signal {
|
175
|
-
&:before {
|
176
|
-
content: "\e018";
|
177
|
-
}
|
178
|
-
}
|
179
|
-
|
180
|
-
.glyphicon-cog {
|
181
|
-
&:before {
|
182
|
-
content: "\e019";
|
183
|
-
}
|
184
|
-
}
|
185
|
-
|
186
|
-
.glyphicon-trash {
|
187
|
-
&:before {
|
188
|
-
content: "\e020";
|
189
|
-
}
|
190
|
-
}
|
191
|
-
|
192
|
-
.glyphicon-home {
|
193
|
-
&:before {
|
194
|
-
content: "\e021";
|
195
|
-
}
|
196
|
-
}
|
197
|
-
|
198
|
-
.glyphicon-file {
|
199
|
-
&:before {
|
200
|
-
content: "\e022";
|
201
|
-
}
|
202
|
-
}
|
203
|
-
|
204
|
-
.glyphicon-time {
|
205
|
-
&:before {
|
206
|
-
content: "\e023";
|
207
|
-
}
|
208
|
-
}
|
209
|
-
|
210
|
-
.glyphicon-road {
|
211
|
-
&:before {
|
212
|
-
content: "\e024";
|
213
|
-
}
|
214
|
-
}
|
215
|
-
|
216
|
-
.glyphicon-download-alt {
|
217
|
-
&:before {
|
218
|
-
content: "\e025";
|
219
|
-
}
|
220
|
-
}
|
221
|
-
|
222
|
-
.glyphicon-download {
|
223
|
-
&:before {
|
224
|
-
content: "\e026";
|
225
|
-
}
|
226
|
-
}
|
227
|
-
|
228
|
-
.glyphicon-upload {
|
229
|
-
&:before {
|
230
|
-
content: "\e027";
|
231
|
-
}
|
232
|
-
}
|
233
|
-
|
234
|
-
.glyphicon-inbox {
|
235
|
-
&:before {
|
236
|
-
content: "\e028";
|
237
|
-
}
|
238
|
-
}
|
239
|
-
|
240
|
-
.glyphicon-play-circle {
|
241
|
-
&:before {
|
242
|
-
content: "\e029";
|
243
|
-
}
|
244
|
-
}
|
245
|
-
|
246
|
-
.glyphicon-repeat {
|
247
|
-
&:before {
|
248
|
-
content: "\e030";
|
249
|
-
}
|
250
|
-
}
|
251
|
-
|
252
|
-
.glyphicon-refresh {
|
253
|
-
&:before {
|
254
|
-
content: "\e031";
|
255
|
-
}
|
256
|
-
}
|
257
|
-
|
258
|
-
.glyphicon-list-alt {
|
259
|
-
&:before {
|
260
|
-
content: "\e032";
|
261
|
-
}
|
262
|
-
}
|
263
|
-
|
264
|
-
.glyphicon-lock {
|
265
|
-
&:before {
|
266
|
-
content: "\e033";
|
267
|
-
}
|
268
|
-
}
|
269
|
-
|
270
|
-
.glyphicon-flag {
|
271
|
-
&:before {
|
272
|
-
content: "\e034";
|
273
|
-
}
|
274
|
-
}
|
275
|
-
|
276
|
-
.glyphicon-headphones {
|
277
|
-
&:before {
|
278
|
-
content: "\e035";
|
279
|
-
}
|
280
|
-
}
|
281
|
-
|
282
|
-
.glyphicon-volume-off {
|
283
|
-
&:before {
|
284
|
-
content: "\e036";
|
285
|
-
}
|
286
|
-
}
|
287
|
-
|
288
|
-
.glyphicon-volume-down {
|
289
|
-
&:before {
|
290
|
-
content: "\e037";
|
291
|
-
}
|
292
|
-
}
|
293
|
-
|
294
|
-
.glyphicon-volume-up {
|
295
|
-
&:before {
|
296
|
-
content: "\e038";
|
297
|
-
}
|
298
|
-
}
|
299
|
-
|
300
|
-
.glyphicon-qrcode {
|
301
|
-
&:before {
|
302
|
-
content: "\e039";
|
303
|
-
}
|
304
|
-
}
|
305
|
-
|
306
|
-
.glyphicon-barcode {
|
307
|
-
&:before {
|
308
|
-
content: "\e040";
|
309
|
-
}
|
310
|
-
}
|
311
|
-
|
312
|
-
.glyphicon-tag {
|
313
|
-
&:before {
|
314
|
-
content: "\e041";
|
315
|
-
}
|
316
|
-
}
|
317
|
-
|
318
|
-
.glyphicon-tags {
|
319
|
-
&:before {
|
320
|
-
content: "\e042";
|
321
|
-
}
|
322
|
-
}
|
323
|
-
|
324
|
-
.glyphicon-book {
|
325
|
-
&:before {
|
326
|
-
content: "\e043";
|
327
|
-
}
|
328
|
-
}
|
329
|
-
|
330
|
-
.glyphicon-bookmark {
|
331
|
-
&:before {
|
332
|
-
content: "\e044";
|
333
|
-
}
|
334
|
-
}
|
335
|
-
|
336
|
-
.glyphicon-print {
|
337
|
-
&:before {
|
338
|
-
content: "\e045";
|
339
|
-
}
|
340
|
-
}
|
341
|
-
|
342
|
-
.glyphicon-camera {
|
343
|
-
&:before {
|
344
|
-
content: "\e046";
|
345
|
-
}
|
346
|
-
}
|
347
|
-
|
348
|
-
.glyphicon-font {
|
349
|
-
&:before {
|
350
|
-
content: "\e047";
|
351
|
-
}
|
352
|
-
}
|
353
|
-
|
354
|
-
.glyphicon-bold {
|
355
|
-
&:before {
|
356
|
-
content: "\e048";
|
357
|
-
}
|
358
|
-
}
|
359
|
-
|
360
|
-
.glyphicon-italic {
|
361
|
-
&:before {
|
362
|
-
content: "\e049";
|
363
|
-
}
|
364
|
-
}
|
365
|
-
|
366
|
-
.glyphicon-text-height {
|
367
|
-
&:before {
|
368
|
-
content: "\e050";
|
369
|
-
}
|
370
|
-
}
|
371
|
-
|
372
|
-
.glyphicon-text-width {
|
373
|
-
&:before {
|
374
|
-
content: "\e051";
|
375
|
-
}
|
376
|
-
}
|
377
|
-
|
378
|
-
.glyphicon-align-left {
|
379
|
-
&:before {
|
380
|
-
content: "\e052";
|
381
|
-
}
|
382
|
-
}
|
383
|
-
|
384
|
-
.glyphicon-align-center {
|
385
|
-
&:before {
|
386
|
-
content: "\e053";
|
387
|
-
}
|
388
|
-
}
|
389
|
-
|
390
|
-
.glyphicon-align-right {
|
391
|
-
&:before {
|
392
|
-
content: "\e054";
|
393
|
-
}
|
394
|
-
}
|
395
|
-
|
396
|
-
.glyphicon-align-justify {
|
397
|
-
&:before {
|
398
|
-
content: "\e055";
|
399
|
-
}
|
400
|
-
}
|
401
|
-
|
402
|
-
.glyphicon-list {
|
403
|
-
&:before {
|
404
|
-
content: "\e056";
|
405
|
-
}
|
406
|
-
}
|
407
|
-
|
408
|
-
.glyphicon-indent-left {
|
409
|
-
&:before {
|
410
|
-
content: "\e057";
|
411
|
-
}
|
412
|
-
}
|
413
|
-
|
414
|
-
.glyphicon-indent-right {
|
415
|
-
&:before {
|
416
|
-
content: "\e058";
|
417
|
-
}
|
418
|
-
}
|
419
|
-
|
420
|
-
.glyphicon-facetime-video {
|
421
|
-
&:before {
|
422
|
-
content: "\e059";
|
423
|
-
}
|
424
|
-
}
|
425
|
-
|
426
|
-
.glyphicon-picture {
|
427
|
-
&:before {
|
428
|
-
content: "\e060";
|
429
|
-
}
|
430
|
-
}
|
431
|
-
|
432
|
-
.glyphicon-map-marker {
|
433
|
-
&:before {
|
434
|
-
content: "\e062";
|
435
|
-
}
|
436
|
-
}
|
437
|
-
|
438
|
-
.glyphicon-adjust {
|
439
|
-
&:before {
|
440
|
-
content: "\e063";
|
441
|
-
}
|
442
|
-
}
|
443
|
-
|
444
|
-
.glyphicon-tint {
|
445
|
-
&:before {
|
446
|
-
content: "\e064";
|
447
|
-
}
|
448
|
-
}
|
449
|
-
|
450
|
-
.glyphicon-edit {
|
451
|
-
&:before {
|
452
|
-
content: "\e065";
|
453
|
-
}
|
454
|
-
}
|
455
|
-
|
456
|
-
.glyphicon-share {
|
457
|
-
&:before {
|
458
|
-
content: "\e066";
|
459
|
-
}
|
460
|
-
}
|
461
|
-
|
462
|
-
.glyphicon-check {
|
463
|
-
&:before {
|
464
|
-
content: "\e067";
|
465
|
-
}
|
466
|
-
}
|
467
|
-
|
468
|
-
.glyphicon-move {
|
469
|
-
&:before {
|
470
|
-
content: "\e068";
|
471
|
-
}
|
472
|
-
}
|
473
|
-
|
474
|
-
.glyphicon-step-backward {
|
475
|
-
&:before {
|
476
|
-
content: "\e069";
|
477
|
-
}
|
478
|
-
}
|
479
|
-
|
480
|
-
.glyphicon-fast-backward {
|
481
|
-
&:before {
|
482
|
-
content: "\e070";
|
483
|
-
}
|
484
|
-
}
|
485
|
-
|
486
|
-
.glyphicon-backward {
|
487
|
-
&:before {
|
488
|
-
content: "\e071";
|
489
|
-
}
|
490
|
-
}
|
491
|
-
|
492
|
-
.glyphicon-play {
|
493
|
-
&:before {
|
494
|
-
content: "\e072";
|
495
|
-
}
|
496
|
-
}
|
497
|
-
|
498
|
-
.glyphicon-pause {
|
499
|
-
&:before {
|
500
|
-
content: "\e073";
|
501
|
-
}
|
502
|
-
}
|
503
|
-
|
504
|
-
.glyphicon-stop {
|
505
|
-
&:before {
|
506
|
-
content: "\e074";
|
507
|
-
}
|
508
|
-
}
|
509
|
-
|
510
|
-
.glyphicon-forward {
|
511
|
-
&:before {
|
512
|
-
content: "\e075";
|
513
|
-
}
|
514
|
-
}
|
515
|
-
|
516
|
-
.glyphicon-fast-forward {
|
517
|
-
&:before {
|
518
|
-
content: "\e076";
|
519
|
-
}
|
520
|
-
}
|
521
|
-
|
522
|
-
.glyphicon-step-forward {
|
523
|
-
&:before {
|
524
|
-
content: "\e077";
|
525
|
-
}
|
526
|
-
}
|
527
|
-
|
528
|
-
.glyphicon-eject {
|
529
|
-
&:before {
|
530
|
-
content: "\e078";
|
531
|
-
}
|
532
|
-
}
|
533
|
-
|
534
|
-
.glyphicon-chevron-left {
|
535
|
-
&:before {
|
536
|
-
content: "\e079";
|
537
|
-
}
|
538
|
-
}
|
539
|
-
|
540
|
-
.glyphicon-chevron-right {
|
541
|
-
&:before {
|
542
|
-
content: "\e080";
|
543
|
-
}
|
544
|
-
}
|
545
|
-
|
546
|
-
.glyphicon-plus-sign {
|
547
|
-
&:before {
|
548
|
-
content: "\e081";
|
549
|
-
}
|
550
|
-
}
|
551
|
-
|
552
|
-
.glyphicon-minus-sign {
|
553
|
-
&:before {
|
554
|
-
content: "\e082";
|
555
|
-
}
|
556
|
-
}
|
557
|
-
|
558
|
-
.glyphicon-remove-sign {
|
559
|
-
&:before {
|
560
|
-
content: "\e083";
|
561
|
-
}
|
562
|
-
}
|
563
|
-
|
564
|
-
.glyphicon-ok-sign {
|
565
|
-
&:before {
|
566
|
-
content: "\e084";
|
567
|
-
}
|
568
|
-
}
|
569
|
-
|
570
|
-
.glyphicon-question-sign {
|
571
|
-
&:before {
|
572
|
-
content: "\e085";
|
573
|
-
}
|
574
|
-
}
|
575
|
-
|
576
|
-
.glyphicon-info-sign {
|
577
|
-
&:before {
|
578
|
-
content: "\e086";
|
579
|
-
}
|
580
|
-
}
|
581
|
-
|
582
|
-
.glyphicon-screenshot {
|
583
|
-
&:before {
|
584
|
-
content: "\e087";
|
585
|
-
}
|
586
|
-
}
|
587
|
-
|
588
|
-
.glyphicon-remove-circle {
|
589
|
-
&:before {
|
590
|
-
content: "\e088";
|
591
|
-
}
|
592
|
-
}
|
593
|
-
|
594
|
-
.glyphicon-ok-circle {
|
595
|
-
&:before {
|
596
|
-
content: "\e089";
|
597
|
-
}
|
598
|
-
}
|
599
|
-
|
600
|
-
.glyphicon-ban-circle {
|
601
|
-
&:before {
|
602
|
-
content: "\e090";
|
603
|
-
}
|
604
|
-
}
|
605
|
-
|
606
|
-
.glyphicon-arrow-left {
|
607
|
-
&:before {
|
608
|
-
content: "\e091";
|
609
|
-
}
|
610
|
-
}
|
611
|
-
|
612
|
-
.glyphicon-arrow-right {
|
613
|
-
&:before {
|
614
|
-
content: "\e092";
|
615
|
-
}
|
616
|
-
}
|
617
|
-
|
618
|
-
.glyphicon-arrow-up {
|
619
|
-
&:before {
|
620
|
-
content: "\e093";
|
621
|
-
}
|
622
|
-
}
|
623
|
-
|
624
|
-
.glyphicon-arrow-down {
|
625
|
-
&:before {
|
626
|
-
content: "\e094";
|
627
|
-
}
|
628
|
-
}
|
629
|
-
|
630
|
-
.glyphicon-share-alt {
|
631
|
-
&:before {
|
632
|
-
content: "\e095";
|
633
|
-
}
|
634
|
-
}
|
635
|
-
|
636
|
-
.glyphicon-resize-full {
|
637
|
-
&:before {
|
638
|
-
content: "\e096";
|
639
|
-
}
|
640
|
-
}
|
641
|
-
|
642
|
-
.glyphicon-resize-small {
|
643
|
-
&:before {
|
644
|
-
content: "\e097";
|
645
|
-
}
|
646
|
-
}
|
647
|
-
|
648
|
-
.glyphicon-exclamation-sign {
|
649
|
-
&:before {
|
650
|
-
content: "\e101";
|
651
|
-
}
|
652
|
-
}
|
653
|
-
|
654
|
-
.glyphicon-gift {
|
655
|
-
&:before {
|
656
|
-
content: "\e102";
|
657
|
-
}
|
658
|
-
}
|
659
|
-
|
660
|
-
.glyphicon-leaf {
|
661
|
-
&:before {
|
662
|
-
content: "\e103";
|
663
|
-
}
|
664
|
-
}
|
665
|
-
|
666
|
-
.glyphicon-fire {
|
667
|
-
&:before {
|
668
|
-
content: "\e104";
|
669
|
-
}
|
670
|
-
}
|
671
|
-
|
672
|
-
.glyphicon-eye-open {
|
673
|
-
&:before {
|
674
|
-
content: "\e105";
|
675
|
-
}
|
676
|
-
}
|
677
|
-
|
678
|
-
.glyphicon-eye-close {
|
679
|
-
&:before {
|
680
|
-
content: "\e106";
|
681
|
-
}
|
682
|
-
}
|
683
|
-
|
684
|
-
.glyphicon-warning-sign {
|
685
|
-
&:before {
|
686
|
-
content: "\e107";
|
687
|
-
}
|
688
|
-
}
|
689
|
-
|
690
|
-
.glyphicon-plane {
|
691
|
-
&:before {
|
692
|
-
content: "\e108";
|
693
|
-
}
|
694
|
-
}
|
695
|
-
|
696
|
-
.glyphicon-calendar {
|
697
|
-
&:before {
|
698
|
-
content: "\e109";
|
699
|
-
}
|
700
|
-
}
|
701
|
-
|
702
|
-
.glyphicon-random {
|
703
|
-
&:before {
|
704
|
-
content: "\e110";
|
705
|
-
}
|
706
|
-
}
|
707
|
-
|
708
|
-
.glyphicon-comment {
|
709
|
-
&:before {
|
710
|
-
content: "\e111";
|
711
|
-
}
|
712
|
-
}
|
713
|
-
|
714
|
-
.glyphicon-magnet {
|
715
|
-
&:before {
|
716
|
-
content: "\e112";
|
717
|
-
}
|
718
|
-
}
|
719
|
-
|
720
|
-
.glyphicon-chevron-up {
|
721
|
-
&:before {
|
722
|
-
content: "\e113";
|
723
|
-
}
|
724
|
-
}
|
725
|
-
|
726
|
-
.glyphicon-chevron-down {
|
727
|
-
&:before {
|
728
|
-
content: "\e114";
|
729
|
-
}
|
730
|
-
}
|
731
|
-
|
732
|
-
.glyphicon-retweet {
|
733
|
-
&:before {
|
734
|
-
content: "\e115";
|
735
|
-
}
|
736
|
-
}
|
737
|
-
|
738
|
-
.glyphicon-shopping-cart {
|
739
|
-
&:before {
|
740
|
-
content: "\e116";
|
741
|
-
}
|
742
|
-
}
|
743
|
-
|
744
|
-
.glyphicon-folder-close {
|
745
|
-
&:before {
|
746
|
-
content: "\e117";
|
747
|
-
}
|
748
|
-
}
|
749
|
-
|
750
|
-
.glyphicon-folder-open {
|
751
|
-
&:before {
|
752
|
-
content: "\e118";
|
753
|
-
}
|
754
|
-
}
|
755
|
-
|
756
|
-
.glyphicon-resize-vertical {
|
757
|
-
&:before {
|
758
|
-
content: "\e119";
|
759
|
-
}
|
760
|
-
}
|
761
|
-
|
762
|
-
.glyphicon-resize-horizontal {
|
763
|
-
&:before {
|
764
|
-
content: "\e120";
|
765
|
-
}
|
766
|
-
}
|
767
|
-
|
768
|
-
.glyphicon-hdd {
|
769
|
-
&:before {
|
770
|
-
content: "\e121";
|
771
|
-
}
|
772
|
-
}
|
773
|
-
|
774
|
-
.glyphicon-bullhorn {
|
775
|
-
&:before {
|
776
|
-
content: "\e122";
|
777
|
-
}
|
778
|
-
}
|
779
|
-
|
780
|
-
.glyphicon-bell {
|
781
|
-
&:before {
|
782
|
-
content: "\e123";
|
783
|
-
}
|
784
|
-
}
|
785
|
-
|
786
|
-
.glyphicon-certificate {
|
787
|
-
&:before {
|
788
|
-
content: "\e124";
|
789
|
-
}
|
790
|
-
}
|
791
|
-
|
792
|
-
.glyphicon-thumbs-up {
|
793
|
-
&:before {
|
794
|
-
content: "\e125";
|
795
|
-
}
|
796
|
-
}
|
797
|
-
|
798
|
-
.glyphicon-thumbs-down {
|
799
|
-
&:before {
|
800
|
-
content: "\e126";
|
801
|
-
}
|
802
|
-
}
|
803
|
-
|
804
|
-
.glyphicon-hand-right {
|
805
|
-
&:before {
|
806
|
-
content: "\e127";
|
807
|
-
}
|
808
|
-
}
|
809
|
-
|
810
|
-
.glyphicon-hand-left {
|
811
|
-
&:before {
|
812
|
-
content: "\e128";
|
813
|
-
}
|
814
|
-
}
|
815
|
-
|
816
|
-
.glyphicon-hand-up {
|
817
|
-
&:before {
|
818
|
-
content: "\e129";
|
819
|
-
}
|
820
|
-
}
|
821
|
-
|
822
|
-
.glyphicon-hand-down {
|
823
|
-
&:before {
|
824
|
-
content: "\e130";
|
825
|
-
}
|
826
|
-
}
|
827
|
-
|
828
|
-
.glyphicon-circle-arrow-right {
|
829
|
-
&:before {
|
830
|
-
content: "\e131";
|
831
|
-
}
|
832
|
-
}
|
833
|
-
|
834
|
-
.glyphicon-circle-arrow-left {
|
835
|
-
&:before {
|
836
|
-
content: "\e132";
|
837
|
-
}
|
838
|
-
}
|
839
|
-
|
840
|
-
.glyphicon-circle-arrow-up {
|
841
|
-
&:before {
|
842
|
-
content: "\e133";
|
843
|
-
}
|
844
|
-
}
|
845
|
-
|
846
|
-
.glyphicon-circle-arrow-down {
|
847
|
-
&:before {
|
848
|
-
content: "\e134";
|
849
|
-
}
|
850
|
-
}
|
851
|
-
|
852
|
-
.glyphicon-globe {
|
853
|
-
&:before {
|
854
|
-
content: "\e135";
|
855
|
-
}
|
856
|
-
}
|
857
|
-
|
858
|
-
.glyphicon-wrench {
|
859
|
-
&:before {
|
860
|
-
content: "\e136";
|
861
|
-
}
|
862
|
-
}
|
863
|
-
|
864
|
-
.glyphicon-tasks {
|
865
|
-
&:before {
|
866
|
-
content: "\e137";
|
867
|
-
}
|
868
|
-
}
|
869
|
-
|
870
|
-
.glyphicon-filter {
|
871
|
-
&:before {
|
872
|
-
content: "\e138";
|
873
|
-
}
|
874
|
-
}
|
875
|
-
|
876
|
-
.glyphicon-briefcase {
|
877
|
-
&:before {
|
878
|
-
content: "\e139";
|
879
|
-
}
|
880
|
-
}
|
881
|
-
|
882
|
-
.glyphicon-fullscreen {
|
883
|
-
&:before {
|
884
|
-
content: "\e140";
|
885
|
-
}
|
886
|
-
}
|
887
|
-
|
888
|
-
.glyphicon-dashboard {
|
889
|
-
&:before {
|
890
|
-
content: "\e141";
|
891
|
-
}
|
892
|
-
}
|
893
|
-
|
894
|
-
.glyphicon-paperclip {
|
895
|
-
&:before {
|
896
|
-
content: "\e142";
|
897
|
-
}
|
898
|
-
}
|
899
|
-
|
900
|
-
.glyphicon-heart-empty {
|
901
|
-
&:before {
|
902
|
-
content: "\e143";
|
903
|
-
}
|
904
|
-
}
|
905
|
-
|
906
|
-
.glyphicon-link {
|
907
|
-
&:before {
|
908
|
-
content: "\e144";
|
909
|
-
}
|
910
|
-
}
|
911
|
-
|
912
|
-
.glyphicon-phone {
|
913
|
-
&:before {
|
914
|
-
content: "\e145";
|
915
|
-
}
|
916
|
-
}
|
917
|
-
|
918
|
-
.glyphicon-pushpin {
|
919
|
-
&:before {
|
920
|
-
content: "\e146";
|
921
|
-
}
|
922
|
-
}
|
923
|
-
|
924
|
-
.glyphicon-usd {
|
925
|
-
&:before {
|
926
|
-
content: "\e148";
|
927
|
-
}
|
928
|
-
}
|
929
|
-
|
930
|
-
.glyphicon-gbp {
|
931
|
-
&:before {
|
932
|
-
content: "\e149";
|
933
|
-
}
|
934
|
-
}
|
935
|
-
|
936
|
-
.glyphicon-sort {
|
937
|
-
&:before {
|
938
|
-
content: "\e150";
|
939
|
-
}
|
940
|
-
}
|
941
|
-
|
942
|
-
.glyphicon-sort-by-alphabet {
|
943
|
-
&:before {
|
944
|
-
content: "\e151";
|
945
|
-
}
|
946
|
-
}
|
947
|
-
|
948
|
-
.glyphicon-sort-by-alphabet-alt {
|
949
|
-
&:before {
|
950
|
-
content: "\e152";
|
951
|
-
}
|
952
|
-
}
|
953
|
-
|
954
|
-
.glyphicon-sort-by-order {
|
955
|
-
&:before {
|
956
|
-
content: "\e153";
|
957
|
-
}
|
958
|
-
}
|
959
|
-
|
960
|
-
.glyphicon-sort-by-order-alt {
|
961
|
-
&:before {
|
962
|
-
content: "\e154";
|
963
|
-
}
|
964
|
-
}
|
965
|
-
|
966
|
-
.glyphicon-sort-by-attributes {
|
967
|
-
&:before {
|
968
|
-
content: "\e155";
|
969
|
-
}
|
970
|
-
}
|
971
|
-
|
972
|
-
.glyphicon-sort-by-attributes-alt {
|
973
|
-
&:before {
|
974
|
-
content: "\e156";
|
975
|
-
}
|
976
|
-
}
|
977
|
-
|
978
|
-
.glyphicon-unchecked {
|
979
|
-
&:before {
|
980
|
-
content: "\e157";
|
981
|
-
}
|
982
|
-
}
|
983
|
-
|
984
|
-
.glyphicon-expand {
|
985
|
-
&:before {
|
986
|
-
content: "\e158";
|
987
|
-
}
|
988
|
-
}
|
989
|
-
|
990
|
-
.glyphicon-collapse-down {
|
991
|
-
&:before {
|
992
|
-
content: "\e159";
|
993
|
-
}
|
994
|
-
}
|
995
|
-
|
996
|
-
.glyphicon-collapse-up {
|
997
|
-
&:before {
|
998
|
-
content: "\e160";
|
999
|
-
}
|
1000
|
-
}
|
1001
|
-
|
1002
|
-
.glyphicon-log-in {
|
1003
|
-
&:before {
|
1004
|
-
content: "\e161";
|
1005
|
-
}
|
1006
|
-
}
|
1007
|
-
|
1008
|
-
.glyphicon-flash {
|
1009
|
-
&:before {
|
1010
|
-
content: "\e162";
|
1011
|
-
}
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
.glyphicon-log-out {
|
1015
|
-
&:before {
|
1016
|
-
content: "\e163";
|
1017
|
-
}
|
1018
|
-
}
|
1019
|
-
|
1020
|
-
.glyphicon-new-window {
|
1021
|
-
&:before {
|
1022
|
-
content: "\e164";
|
1023
|
-
}
|
1024
|
-
}
|
1025
|
-
|
1026
|
-
.glyphicon-record {
|
1027
|
-
&:before {
|
1028
|
-
content: "\e165";
|
1029
|
-
}
|
1030
|
-
}
|
1031
|
-
|
1032
|
-
.glyphicon-save {
|
1033
|
-
&:before {
|
1034
|
-
content: "\e166";
|
1035
|
-
}
|
1036
|
-
}
|
1037
|
-
|
1038
|
-
.glyphicon-open {
|
1039
|
-
&:before {
|
1040
|
-
content: "\e167";
|
1041
|
-
}
|
1042
|
-
}
|
1043
|
-
|
1044
|
-
.glyphicon-saved {
|
1045
|
-
&:before {
|
1046
|
-
content: "\e168";
|
1047
|
-
}
|
1048
|
-
}
|
1049
|
-
|
1050
|
-
.glyphicon-import {
|
1051
|
-
&:before {
|
1052
|
-
content: "\e169";
|
1053
|
-
}
|
1054
|
-
}
|
1055
|
-
|
1056
|
-
.glyphicon-export {
|
1057
|
-
&:before {
|
1058
|
-
content: "\e170";
|
1059
|
-
}
|
1060
|
-
}
|
1061
|
-
|
1062
|
-
.glyphicon-send {
|
1063
|
-
&:before {
|
1064
|
-
content: "\e171";
|
1065
|
-
}
|
1066
|
-
}
|
1067
|
-
|
1068
|
-
.glyphicon-floppy-disk {
|
1069
|
-
&:before {
|
1070
|
-
content: "\e172";
|
1071
|
-
}
|
1072
|
-
}
|
1073
|
-
|
1074
|
-
.glyphicon-floppy-saved {
|
1075
|
-
&:before {
|
1076
|
-
content: "\e173";
|
1077
|
-
}
|
1078
|
-
}
|
1079
|
-
|
1080
|
-
.glyphicon-floppy-remove {
|
1081
|
-
&:before {
|
1082
|
-
content: "\e174";
|
1083
|
-
}
|
1084
|
-
}
|
1085
|
-
|
1086
|
-
.glyphicon-floppy-save {
|
1087
|
-
&:before {
|
1088
|
-
content: "\e175";
|
1089
|
-
}
|
1090
|
-
}
|
1091
|
-
|
1092
|
-
.glyphicon-floppy-open {
|
1093
|
-
&:before {
|
1094
|
-
content: "\e176";
|
1095
|
-
}
|
1096
|
-
}
|
1097
|
-
|
1098
|
-
.glyphicon-credit-card {
|
1099
|
-
&:before {
|
1100
|
-
content: "\e177";
|
1101
|
-
}
|
1102
|
-
}
|
1103
|
-
|
1104
|
-
.glyphicon-transfer {
|
1105
|
-
&:before {
|
1106
|
-
content: "\e178";
|
1107
|
-
}
|
1108
|
-
}
|
1109
|
-
|
1110
|
-
.glyphicon-cutlery {
|
1111
|
-
&:before {
|
1112
|
-
content: "\e179";
|
1113
|
-
}
|
1114
|
-
}
|
1115
|
-
|
1116
|
-
.glyphicon-header {
|
1117
|
-
&:before {
|
1118
|
-
content: "\e180";
|
1119
|
-
}
|
1120
|
-
}
|
1121
|
-
|
1122
|
-
.glyphicon-compressed {
|
1123
|
-
&:before {
|
1124
|
-
content: "\e181";
|
1125
|
-
}
|
1126
|
-
}
|
1127
|
-
|
1128
|
-
.glyphicon-earphone {
|
1129
|
-
&:before {
|
1130
|
-
content: "\e182";
|
1131
|
-
}
|
1132
|
-
}
|
1133
|
-
|
1134
|
-
.glyphicon-phone-alt {
|
1135
|
-
&:before {
|
1136
|
-
content: "\e183";
|
1137
|
-
}
|
1138
|
-
}
|
1139
|
-
|
1140
|
-
.glyphicon-tower {
|
1141
|
-
&:before {
|
1142
|
-
content: "\e184";
|
1143
|
-
}
|
1144
|
-
}
|
1145
|
-
|
1146
|
-
.glyphicon-stats {
|
1147
|
-
&:before {
|
1148
|
-
content: "\e185";
|
1149
|
-
}
|
1150
|
-
}
|
1151
|
-
|
1152
|
-
.glyphicon-sd-video {
|
1153
|
-
&:before {
|
1154
|
-
content: "\e186";
|
1155
|
-
}
|
1156
|
-
}
|
1157
|
-
|
1158
|
-
.glyphicon-hd-video {
|
1159
|
-
&:before {
|
1160
|
-
content: "\e187";
|
1161
|
-
}
|
1162
|
-
}
|
1163
|
-
|
1164
|
-
.glyphicon-subtitles {
|
1165
|
-
&:before {
|
1166
|
-
content: "\e188";
|
1167
|
-
}
|
1168
|
-
}
|
1169
|
-
|
1170
|
-
.glyphicon-sound-stereo {
|
1171
|
-
&:before {
|
1172
|
-
content: "\e189";
|
1173
|
-
}
|
1174
|
-
}
|
1175
|
-
|
1176
|
-
.glyphicon-sound-dolby {
|
1177
|
-
&:before {
|
1178
|
-
content: "\e190";
|
1179
|
-
}
|
1180
|
-
}
|
1181
|
-
|
1182
|
-
.glyphicon-sound-5-1 {
|
1183
|
-
&:before {
|
1184
|
-
content: "\e191";
|
1185
|
-
}
|
1186
|
-
}
|
1187
|
-
|
1188
|
-
.glyphicon-sound-6-1 {
|
1189
|
-
&:before {
|
1190
|
-
content: "\e192";
|
1191
|
-
}
|
1192
|
-
}
|
1193
|
-
|
1194
|
-
.glyphicon-sound-7-1 {
|
1195
|
-
&:before {
|
1196
|
-
content: "\e193";
|
1197
|
-
}
|
1198
|
-
}
|
1199
|
-
|
1200
|
-
.glyphicon-copyright-mark {
|
1201
|
-
&:before {
|
1202
|
-
content: "\e194";
|
1203
|
-
}
|
1204
|
-
}
|
1205
|
-
|
1206
|
-
.glyphicon-registration-mark {
|
1207
|
-
&:before {
|
1208
|
-
content: "\e195";
|
1209
|
-
}
|
1210
|
-
}
|
1211
|
-
|
1212
|
-
.glyphicon-cloud-download {
|
1213
|
-
&:before {
|
1214
|
-
content: "\e197";
|
1215
|
-
}
|
1216
|
-
}
|
1217
|
-
|
1218
|
-
.glyphicon-cloud-upload {
|
1219
|
-
&:before {
|
1220
|
-
content: "\e198";
|
1221
|
-
}
|
1222
|
-
}
|
1223
|
-
|
1224
|
-
.glyphicon-tree-conifer {
|
1225
|
-
&:before {
|
1226
|
-
content: "\e199";
|
1227
|
-
}
|
1228
|
-
}
|
1229
|
-
|
1230
|
-
.glyphicon-tree-deciduous {
|
1231
|
-
&:before {
|
1232
|
-
content: "\e200";
|
1233
|
-
}
|
1234
|
-
}
|
1235
|
-
|
1236
|
-
.glyphicon-cd {
|
1237
|
-
&:before {
|
1238
|
-
content: "\e201";
|
1239
|
-
}
|
1240
|
-
}
|
1241
|
-
|
1242
|
-
.glyphicon-save-file {
|
1243
|
-
&:before {
|
1244
|
-
content: "\e202";
|
1245
|
-
}
|
1246
|
-
}
|
1247
|
-
|
1248
|
-
.glyphicon-open-file {
|
1249
|
-
&:before {
|
1250
|
-
content: "\e203";
|
1251
|
-
}
|
1252
|
-
}
|
1253
|
-
|
1254
|
-
.glyphicon-level-up {
|
1255
|
-
&:before {
|
1256
|
-
content: "\e204";
|
1257
|
-
}
|
1258
|
-
}
|
1259
|
-
|
1260
|
-
.glyphicon-copy {
|
1261
|
-
&:before {
|
1262
|
-
content: "\e205";
|
1263
|
-
}
|
1264
|
-
}
|
1265
|
-
|
1266
|
-
.glyphicon-paste {
|
1267
|
-
&:before {
|
1268
|
-
content: "\e206";
|
1269
|
-
}
|
1270
|
-
}
|
1271
|
-
|
1272
|
-
// The following 2 Glyphicons are omitted for the time being because
|
1273
|
-
// they currently use Unicode codepoints that are outside the
|
1274
|
-
// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
|
1275
|
-
// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
|
1276
|
-
// Notably, the bug affects some older versions of the Android Browser.
|
1277
|
-
// More info: https://github.com/twbs/bootstrap/issues/10106
|
1278
|
-
// .glyphicon-door { &:before { content: "\1f6aa"; } }
|
1279
|
-
// .glyphicon-key { &:before { content: "\1f511"; } }
|
1280
|
-
.glyphicon-alert {
|
1281
|
-
&:before {
|
1282
|
-
content: "\e209";
|
1283
|
-
}
|
1284
|
-
}
|
1285
|
-
|
1286
|
-
.glyphicon-equalizer {
|
1287
|
-
&:before {
|
1288
|
-
content: "\e210";
|
1289
|
-
}
|
1290
|
-
}
|
1291
|
-
|
1292
|
-
.glyphicon-king {
|
1293
|
-
&:before {
|
1294
|
-
content: "\e211";
|
1295
|
-
}
|
1296
|
-
}
|
1297
|
-
|
1298
|
-
.glyphicon-queen {
|
1299
|
-
&:before {
|
1300
|
-
content: "\e212";
|
1301
|
-
}
|
1302
|
-
}
|
1303
|
-
|
1304
|
-
.glyphicon-pawn {
|
1305
|
-
&:before {
|
1306
|
-
content: "\e213";
|
1307
|
-
}
|
1308
|
-
}
|
1309
|
-
|
1310
|
-
.glyphicon-bishop {
|
1311
|
-
&:before {
|
1312
|
-
content: "\e214";
|
1313
|
-
}
|
1314
|
-
}
|
1315
|
-
|
1316
|
-
.glyphicon-knight {
|
1317
|
-
&:before {
|
1318
|
-
content: "\e215";
|
1319
|
-
}
|
1320
|
-
}
|
1321
|
-
|
1322
|
-
.glyphicon-baby-formula {
|
1323
|
-
&:before {
|
1324
|
-
content: "\e216";
|
1325
|
-
}
|
1326
|
-
}
|
1327
|
-
|
1328
|
-
.glyphicon-tent {
|
1329
|
-
&:before {
|
1330
|
-
content: "\26fa";
|
1331
|
-
}
|
1332
|
-
}
|
1333
|
-
|
1334
|
-
.glyphicon-blackboard {
|
1335
|
-
&:before {
|
1336
|
-
content: "\e218";
|
1337
|
-
}
|
1338
|
-
}
|
1339
|
-
|
1340
|
-
.glyphicon-bed {
|
1341
|
-
&:before {
|
1342
|
-
content: "\e219";
|
1343
|
-
}
|
1344
|
-
}
|
1345
|
-
|
1346
|
-
.glyphicon-apple {
|
1347
|
-
&:before {
|
1348
|
-
content: "\f8ff";
|
1349
|
-
}
|
1350
|
-
}
|
1351
|
-
|
1352
|
-
.glyphicon-erase {
|
1353
|
-
&:before {
|
1354
|
-
content: "\e221";
|
1355
|
-
}
|
1356
|
-
}
|
1357
|
-
|
1358
|
-
.glyphicon-hourglass {
|
1359
|
-
&:before {
|
1360
|
-
content: "\231b";
|
1361
|
-
}
|
1362
|
-
}
|
1363
|
-
|
1364
|
-
.glyphicon-lamp {
|
1365
|
-
&:before {
|
1366
|
-
content: "\e223";
|
1367
|
-
}
|
1368
|
-
}
|
1369
|
-
|
1370
|
-
.glyphicon-duplicate {
|
1371
|
-
&:before {
|
1372
|
-
content: "\e224";
|
1373
|
-
}
|
1374
|
-
}
|
1375
|
-
|
1376
|
-
.glyphicon-piggy-bank {
|
1377
|
-
&:before {
|
1378
|
-
content: "\e225";
|
1379
|
-
}
|
1380
|
-
}
|
1381
|
-
|
1382
|
-
.glyphicon-scissors {
|
1383
|
-
&:before {
|
1384
|
-
content: "\e226";
|
1385
|
-
}
|
1386
|
-
}
|
1387
|
-
|
1388
|
-
.glyphicon-bitcoin {
|
1389
|
-
&:before {
|
1390
|
-
content: "\e227";
|
1391
|
-
}
|
1392
|
-
}
|
1393
|
-
|
1394
|
-
.glyphicon-btc {
|
1395
|
-
&:before {
|
1396
|
-
content: "\e227";
|
1397
|
-
}
|
1398
|
-
}
|
1399
|
-
|
1400
|
-
.glyphicon-xbt {
|
1401
|
-
&:before {
|
1402
|
-
content: "\e227";
|
1403
|
-
}
|
1404
|
-
}
|
1405
|
-
|
1406
|
-
.glyphicon-yen {
|
1407
|
-
&:before {
|
1408
|
-
content: "\00a5";
|
1409
|
-
}
|
1410
|
-
}
|
1411
|
-
|
1412
|
-
.glyphicon-jpy {
|
1413
|
-
&:before {
|
1414
|
-
content: "\00a5";
|
1415
|
-
}
|
1416
|
-
}
|
1417
|
-
|
1418
|
-
.glyphicon-ruble {
|
1419
|
-
&:before {
|
1420
|
-
content: "\20bd";
|
1421
|
-
}
|
1422
|
-
}
|
1423
|
-
|
1424
|
-
.glyphicon-rub {
|
1425
|
-
&:before {
|
1426
|
-
content: "\20bd";
|
1427
|
-
}
|
1428
|
-
}
|
1429
|
-
|
1430
|
-
.glyphicon-scale {
|
1431
|
-
&:before {
|
1432
|
-
content: "\e230";
|
1433
|
-
}
|
1434
|
-
}
|
1435
|
-
|
1436
|
-
.glyphicon-ice-lolly {
|
1437
|
-
&:before {
|
1438
|
-
content: "\e231";
|
1439
|
-
}
|
1440
|
-
}
|
1441
|
-
|
1442
|
-
.glyphicon-ice-lolly-tasted {
|
1443
|
-
&:before {
|
1444
|
-
content: "\e232";
|
1445
|
-
}
|
1446
|
-
}
|
1447
|
-
|
1448
|
-
.glyphicon-education {
|
1449
|
-
&:before {
|
1450
|
-
content: "\e233";
|
1451
|
-
}
|
1452
|
-
}
|
1453
|
-
|
1454
|
-
.glyphicon-option-horizontal {
|
1455
|
-
&:before {
|
1456
|
-
content: "\e234";
|
1457
|
-
}
|
1458
|
-
}
|
1459
|
-
|
1460
|
-
.glyphicon-option-vertical {
|
1461
|
-
&:before {
|
1462
|
-
content: "\e235";
|
1463
|
-
}
|
1464
|
-
}
|
1465
|
-
|
1466
|
-
.glyphicon-menu-hamburger {
|
1467
|
-
&:before {
|
1468
|
-
content: "\e236";
|
1469
|
-
}
|
1470
|
-
}
|
1471
|
-
|
1472
|
-
.glyphicon-modal-window {
|
1473
|
-
&:before {
|
1474
|
-
content: "\e237";
|
1475
|
-
}
|
1476
|
-
}
|
1477
|
-
|
1478
|
-
.glyphicon-oil {
|
1479
|
-
&:before {
|
1480
|
-
content: "\e238";
|
1481
|
-
}
|
1482
|
-
}
|
1483
|
-
|
1484
|
-
.glyphicon-grain {
|
1485
|
-
&:before {
|
1486
|
-
content: "\e239";
|
1487
|
-
}
|
1488
|
-
}
|
1489
|
-
|
1490
|
-
.glyphicon-sunglasses {
|
1491
|
-
&:before {
|
1492
|
-
content: "\e240";
|
1493
|
-
}
|
1494
|
-
}
|
1495
|
-
|
1496
|
-
.glyphicon-text-size {
|
1497
|
-
&:before {
|
1498
|
-
content: "\e241";
|
1499
|
-
}
|
1500
|
-
}
|
1501
|
-
|
1502
|
-
.glyphicon-text-color {
|
1503
|
-
&:before {
|
1504
|
-
content: "\e242";
|
1505
|
-
}
|
1506
|
-
}
|
1507
|
-
|
1508
|
-
.glyphicon-text-background {
|
1509
|
-
&:before {
|
1510
|
-
content: "\e243";
|
1511
|
-
}
|
1512
|
-
}
|
1513
|
-
|
1514
|
-
.glyphicon-object-align-top {
|
1515
|
-
&:before {
|
1516
|
-
content: "\e244";
|
1517
|
-
}
|
1518
|
-
}
|
1519
|
-
|
1520
|
-
.glyphicon-object-align-bottom {
|
1521
|
-
&:before {
|
1522
|
-
content: "\e245";
|
1523
|
-
}
|
1524
|
-
}
|
1525
|
-
|
1526
|
-
.glyphicon-object-align-horizontal {
|
1527
|
-
&:before {
|
1528
|
-
content: "\e246";
|
1529
|
-
}
|
1530
|
-
}
|
1531
|
-
|
1532
|
-
.glyphicon-object-align-left {
|
1533
|
-
&:before {
|
1534
|
-
content: "\e247";
|
1535
|
-
}
|
1536
|
-
}
|
1537
|
-
|
1538
|
-
.glyphicon-object-align-vertical {
|
1539
|
-
&:before {
|
1540
|
-
content: "\e248";
|
1541
|
-
}
|
1542
|
-
}
|
1543
|
-
|
1544
|
-
.glyphicon-object-align-right {
|
1545
|
-
&:before {
|
1546
|
-
content: "\e249";
|
1547
|
-
}
|
1548
|
-
}
|
1549
|
-
|
1550
|
-
.glyphicon-triangle-right {
|
1551
|
-
&:before {
|
1552
|
-
content: "\e250";
|
1553
|
-
}
|
1554
|
-
}
|
1555
|
-
|
1556
|
-
.glyphicon-triangle-left {
|
1557
|
-
&:before {
|
1558
|
-
content: "\e251";
|
1559
|
-
}
|
1560
|
-
}
|
1561
|
-
|
1562
|
-
.glyphicon-triangle-bottom {
|
1563
|
-
&:before {
|
1564
|
-
content: "\e252";
|
1565
|
-
}
|
1566
|
-
}
|
1567
|
-
|
1568
|
-
.glyphicon-triangle-top {
|
1569
|
-
&:before {
|
1570
|
-
content: "\e253";
|
1571
|
-
}
|
1572
|
-
}
|
1573
|
-
|
1574
|
-
.glyphicon-console {
|
1575
|
-
&:before {
|
1576
|
-
content: "\e254";
|
1577
|
-
}
|
1578
|
-
}
|
1579
|
-
|
1580
|
-
.glyphicon-superscript {
|
1581
|
-
&:before {
|
1582
|
-
content: "\e255";
|
1583
|
-
}
|
1584
|
-
}
|
1585
|
-
|
1586
|
-
.glyphicon-subscript {
|
1587
|
-
&:before {
|
1588
|
-
content: "\e256";
|
1589
|
-
}
|
1590
|
-
}
|
1591
|
-
|
1592
|
-
.glyphicon-menu-left {
|
1593
|
-
&:before {
|
1594
|
-
content: "\e257";
|
1595
|
-
}
|
1596
|
-
}
|
1597
|
-
|
1598
|
-
.glyphicon-menu-right {
|
1599
|
-
&:before {
|
1600
|
-
content: "\e258";
|
1601
|
-
}
|
1602
|
-
}
|
1603
|
-
|
1604
|
-
.glyphicon-menu-down {
|
1605
|
-
&:before {
|
1606
|
-
content: "\e259";
|
1607
|
-
}
|
1608
|
-
}
|
1609
|
-
|
1610
|
-
.glyphicon-menu-up {
|
1611
|
-
&:before {
|
1612
|
-
content: "\e260";
|
1613
|
-
}
|
1614
|
-
}
|
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: url('@{icon-font-path}@{icon-font-name}.eot');
|
14
|
+
src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
|
15
|
+
url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
|
16
|
+
url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
|
17
|
+
url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
|
18
|
+
url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
|
19
|
+
}
|
20
|
+
|
21
|
+
// Catchall baseclass
|
22
|
+
.glyphicon {
|
23
|
+
position: relative;
|
24
|
+
top: 1px;
|
25
|
+
display: inline-block;
|
26
|
+
font-family: 'Glyphicons Halflings';
|
27
|
+
font-style: normal;
|
28
|
+
font-weight: normal;
|
29
|
+
line-height: 1;
|
30
|
+
-webkit-font-smoothing: antialiased;
|
31
|
+
-moz-osx-font-smoothing: grayscale;
|
32
|
+
}
|
33
|
+
|
34
|
+
// Individual icons
|
35
|
+
.glyphicon-asterisk {
|
36
|
+
&:before {
|
37
|
+
content: "\002a";
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.glyphicon-plus {
|
42
|
+
&:before {
|
43
|
+
content: "\002b";
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
.glyphicon-euro,
|
48
|
+
.glyphicon-eur {
|
49
|
+
&:before {
|
50
|
+
content: "\20ac";
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
.glyphicon-minus {
|
55
|
+
&:before {
|
56
|
+
content: "\2212";
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
.glyphicon-cloud {
|
61
|
+
&:before {
|
62
|
+
content: "\2601";
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
.glyphicon-envelope {
|
67
|
+
&:before {
|
68
|
+
content: "\2709";
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
.glyphicon-pencil {
|
73
|
+
&:before {
|
74
|
+
content: "\270f";
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
.glyphicon-glass {
|
79
|
+
&:before {
|
80
|
+
content: "\e001";
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
.glyphicon-music {
|
85
|
+
&:before {
|
86
|
+
content: "\e002";
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
.glyphicon-search {
|
91
|
+
&:before {
|
92
|
+
content: "\e003";
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
.glyphicon-heart {
|
97
|
+
&:before {
|
98
|
+
content: "\e005";
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
.glyphicon-star {
|
103
|
+
&:before {
|
104
|
+
content: "\e006";
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
.glyphicon-star-empty {
|
109
|
+
&:before {
|
110
|
+
content: "\e007";
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
.glyphicon-user {
|
115
|
+
&:before {
|
116
|
+
content: "\e008";
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
.glyphicon-film {
|
121
|
+
&:before {
|
122
|
+
content: "\e009";
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
.glyphicon-th-large {
|
127
|
+
&:before {
|
128
|
+
content: "\e010";
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
.glyphicon-th {
|
133
|
+
&:before {
|
134
|
+
content: "\e011";
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
.glyphicon-th-list {
|
139
|
+
&:before {
|
140
|
+
content: "\e012";
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
.glyphicon-ok {
|
145
|
+
&:before {
|
146
|
+
content: "\e013";
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
.glyphicon-remove {
|
151
|
+
&:before {
|
152
|
+
content: "\e014";
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
.glyphicon-zoom-in {
|
157
|
+
&:before {
|
158
|
+
content: "\e015";
|
159
|
+
}
|
160
|
+
}
|
161
|
+
|
162
|
+
.glyphicon-zoom-out {
|
163
|
+
&:before {
|
164
|
+
content: "\e016";
|
165
|
+
}
|
166
|
+
}
|
167
|
+
|
168
|
+
.glyphicon-off {
|
169
|
+
&:before {
|
170
|
+
content: "\e017";
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
.glyphicon-signal {
|
175
|
+
&:before {
|
176
|
+
content: "\e018";
|
177
|
+
}
|
178
|
+
}
|
179
|
+
|
180
|
+
.glyphicon-cog {
|
181
|
+
&:before {
|
182
|
+
content: "\e019";
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
.glyphicon-trash {
|
187
|
+
&:before {
|
188
|
+
content: "\e020";
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
.glyphicon-home {
|
193
|
+
&:before {
|
194
|
+
content: "\e021";
|
195
|
+
}
|
196
|
+
}
|
197
|
+
|
198
|
+
.glyphicon-file {
|
199
|
+
&:before {
|
200
|
+
content: "\e022";
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
.glyphicon-time {
|
205
|
+
&:before {
|
206
|
+
content: "\e023";
|
207
|
+
}
|
208
|
+
}
|
209
|
+
|
210
|
+
.glyphicon-road {
|
211
|
+
&:before {
|
212
|
+
content: "\e024";
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
.glyphicon-download-alt {
|
217
|
+
&:before {
|
218
|
+
content: "\e025";
|
219
|
+
}
|
220
|
+
}
|
221
|
+
|
222
|
+
.glyphicon-download {
|
223
|
+
&:before {
|
224
|
+
content: "\e026";
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
.glyphicon-upload {
|
229
|
+
&:before {
|
230
|
+
content: "\e027";
|
231
|
+
}
|
232
|
+
}
|
233
|
+
|
234
|
+
.glyphicon-inbox {
|
235
|
+
&:before {
|
236
|
+
content: "\e028";
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
.glyphicon-play-circle {
|
241
|
+
&:before {
|
242
|
+
content: "\e029";
|
243
|
+
}
|
244
|
+
}
|
245
|
+
|
246
|
+
.glyphicon-repeat {
|
247
|
+
&:before {
|
248
|
+
content: "\e030";
|
249
|
+
}
|
250
|
+
}
|
251
|
+
|
252
|
+
.glyphicon-refresh {
|
253
|
+
&:before {
|
254
|
+
content: "\e031";
|
255
|
+
}
|
256
|
+
}
|
257
|
+
|
258
|
+
.glyphicon-list-alt {
|
259
|
+
&:before {
|
260
|
+
content: "\e032";
|
261
|
+
}
|
262
|
+
}
|
263
|
+
|
264
|
+
.glyphicon-lock {
|
265
|
+
&:before {
|
266
|
+
content: "\e033";
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
.glyphicon-flag {
|
271
|
+
&:before {
|
272
|
+
content: "\e034";
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
.glyphicon-headphones {
|
277
|
+
&:before {
|
278
|
+
content: "\e035";
|
279
|
+
}
|
280
|
+
}
|
281
|
+
|
282
|
+
.glyphicon-volume-off {
|
283
|
+
&:before {
|
284
|
+
content: "\e036";
|
285
|
+
}
|
286
|
+
}
|
287
|
+
|
288
|
+
.glyphicon-volume-down {
|
289
|
+
&:before {
|
290
|
+
content: "\e037";
|
291
|
+
}
|
292
|
+
}
|
293
|
+
|
294
|
+
.glyphicon-volume-up {
|
295
|
+
&:before {
|
296
|
+
content: "\e038";
|
297
|
+
}
|
298
|
+
}
|
299
|
+
|
300
|
+
.glyphicon-qrcode {
|
301
|
+
&:before {
|
302
|
+
content: "\e039";
|
303
|
+
}
|
304
|
+
}
|
305
|
+
|
306
|
+
.glyphicon-barcode {
|
307
|
+
&:before {
|
308
|
+
content: "\e040";
|
309
|
+
}
|
310
|
+
}
|
311
|
+
|
312
|
+
.glyphicon-tag {
|
313
|
+
&:before {
|
314
|
+
content: "\e041";
|
315
|
+
}
|
316
|
+
}
|
317
|
+
|
318
|
+
.glyphicon-tags {
|
319
|
+
&:before {
|
320
|
+
content: "\e042";
|
321
|
+
}
|
322
|
+
}
|
323
|
+
|
324
|
+
.glyphicon-book {
|
325
|
+
&:before {
|
326
|
+
content: "\e043";
|
327
|
+
}
|
328
|
+
}
|
329
|
+
|
330
|
+
.glyphicon-bookmark {
|
331
|
+
&:before {
|
332
|
+
content: "\e044";
|
333
|
+
}
|
334
|
+
}
|
335
|
+
|
336
|
+
.glyphicon-print {
|
337
|
+
&:before {
|
338
|
+
content: "\e045";
|
339
|
+
}
|
340
|
+
}
|
341
|
+
|
342
|
+
.glyphicon-camera {
|
343
|
+
&:before {
|
344
|
+
content: "\e046";
|
345
|
+
}
|
346
|
+
}
|
347
|
+
|
348
|
+
.glyphicon-font {
|
349
|
+
&:before {
|
350
|
+
content: "\e047";
|
351
|
+
}
|
352
|
+
}
|
353
|
+
|
354
|
+
.glyphicon-bold {
|
355
|
+
&:before {
|
356
|
+
content: "\e048";
|
357
|
+
}
|
358
|
+
}
|
359
|
+
|
360
|
+
.glyphicon-italic {
|
361
|
+
&:before {
|
362
|
+
content: "\e049";
|
363
|
+
}
|
364
|
+
}
|
365
|
+
|
366
|
+
.glyphicon-text-height {
|
367
|
+
&:before {
|
368
|
+
content: "\e050";
|
369
|
+
}
|
370
|
+
}
|
371
|
+
|
372
|
+
.glyphicon-text-width {
|
373
|
+
&:before {
|
374
|
+
content: "\e051";
|
375
|
+
}
|
376
|
+
}
|
377
|
+
|
378
|
+
.glyphicon-align-left {
|
379
|
+
&:before {
|
380
|
+
content: "\e052";
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
.glyphicon-align-center {
|
385
|
+
&:before {
|
386
|
+
content: "\e053";
|
387
|
+
}
|
388
|
+
}
|
389
|
+
|
390
|
+
.glyphicon-align-right {
|
391
|
+
&:before {
|
392
|
+
content: "\e054";
|
393
|
+
}
|
394
|
+
}
|
395
|
+
|
396
|
+
.glyphicon-align-justify {
|
397
|
+
&:before {
|
398
|
+
content: "\e055";
|
399
|
+
}
|
400
|
+
}
|
401
|
+
|
402
|
+
.glyphicon-list {
|
403
|
+
&:before {
|
404
|
+
content: "\e056";
|
405
|
+
}
|
406
|
+
}
|
407
|
+
|
408
|
+
.glyphicon-indent-left {
|
409
|
+
&:before {
|
410
|
+
content: "\e057";
|
411
|
+
}
|
412
|
+
}
|
413
|
+
|
414
|
+
.glyphicon-indent-right {
|
415
|
+
&:before {
|
416
|
+
content: "\e058";
|
417
|
+
}
|
418
|
+
}
|
419
|
+
|
420
|
+
.glyphicon-facetime-video {
|
421
|
+
&:before {
|
422
|
+
content: "\e059";
|
423
|
+
}
|
424
|
+
}
|
425
|
+
|
426
|
+
.glyphicon-picture {
|
427
|
+
&:before {
|
428
|
+
content: "\e060";
|
429
|
+
}
|
430
|
+
}
|
431
|
+
|
432
|
+
.glyphicon-map-marker {
|
433
|
+
&:before {
|
434
|
+
content: "\e062";
|
435
|
+
}
|
436
|
+
}
|
437
|
+
|
438
|
+
.glyphicon-adjust {
|
439
|
+
&:before {
|
440
|
+
content: "\e063";
|
441
|
+
}
|
442
|
+
}
|
443
|
+
|
444
|
+
.glyphicon-tint {
|
445
|
+
&:before {
|
446
|
+
content: "\e064";
|
447
|
+
}
|
448
|
+
}
|
449
|
+
|
450
|
+
.glyphicon-edit {
|
451
|
+
&:before {
|
452
|
+
content: "\e065";
|
453
|
+
}
|
454
|
+
}
|
455
|
+
|
456
|
+
.glyphicon-share {
|
457
|
+
&:before {
|
458
|
+
content: "\e066";
|
459
|
+
}
|
460
|
+
}
|
461
|
+
|
462
|
+
.glyphicon-check {
|
463
|
+
&:before {
|
464
|
+
content: "\e067";
|
465
|
+
}
|
466
|
+
}
|
467
|
+
|
468
|
+
.glyphicon-move {
|
469
|
+
&:before {
|
470
|
+
content: "\e068";
|
471
|
+
}
|
472
|
+
}
|
473
|
+
|
474
|
+
.glyphicon-step-backward {
|
475
|
+
&:before {
|
476
|
+
content: "\e069";
|
477
|
+
}
|
478
|
+
}
|
479
|
+
|
480
|
+
.glyphicon-fast-backward {
|
481
|
+
&:before {
|
482
|
+
content: "\e070";
|
483
|
+
}
|
484
|
+
}
|
485
|
+
|
486
|
+
.glyphicon-backward {
|
487
|
+
&:before {
|
488
|
+
content: "\e071";
|
489
|
+
}
|
490
|
+
}
|
491
|
+
|
492
|
+
.glyphicon-play {
|
493
|
+
&:before {
|
494
|
+
content: "\e072";
|
495
|
+
}
|
496
|
+
}
|
497
|
+
|
498
|
+
.glyphicon-pause {
|
499
|
+
&:before {
|
500
|
+
content: "\e073";
|
501
|
+
}
|
502
|
+
}
|
503
|
+
|
504
|
+
.glyphicon-stop {
|
505
|
+
&:before {
|
506
|
+
content: "\e074";
|
507
|
+
}
|
508
|
+
}
|
509
|
+
|
510
|
+
.glyphicon-forward {
|
511
|
+
&:before {
|
512
|
+
content: "\e075";
|
513
|
+
}
|
514
|
+
}
|
515
|
+
|
516
|
+
.glyphicon-fast-forward {
|
517
|
+
&:before {
|
518
|
+
content: "\e076";
|
519
|
+
}
|
520
|
+
}
|
521
|
+
|
522
|
+
.glyphicon-step-forward {
|
523
|
+
&:before {
|
524
|
+
content: "\e077";
|
525
|
+
}
|
526
|
+
}
|
527
|
+
|
528
|
+
.glyphicon-eject {
|
529
|
+
&:before {
|
530
|
+
content: "\e078";
|
531
|
+
}
|
532
|
+
}
|
533
|
+
|
534
|
+
.glyphicon-chevron-left {
|
535
|
+
&:before {
|
536
|
+
content: "\e079";
|
537
|
+
}
|
538
|
+
}
|
539
|
+
|
540
|
+
.glyphicon-chevron-right {
|
541
|
+
&:before {
|
542
|
+
content: "\e080";
|
543
|
+
}
|
544
|
+
}
|
545
|
+
|
546
|
+
.glyphicon-plus-sign {
|
547
|
+
&:before {
|
548
|
+
content: "\e081";
|
549
|
+
}
|
550
|
+
}
|
551
|
+
|
552
|
+
.glyphicon-minus-sign {
|
553
|
+
&:before {
|
554
|
+
content: "\e082";
|
555
|
+
}
|
556
|
+
}
|
557
|
+
|
558
|
+
.glyphicon-remove-sign {
|
559
|
+
&:before {
|
560
|
+
content: "\e083";
|
561
|
+
}
|
562
|
+
}
|
563
|
+
|
564
|
+
.glyphicon-ok-sign {
|
565
|
+
&:before {
|
566
|
+
content: "\e084";
|
567
|
+
}
|
568
|
+
}
|
569
|
+
|
570
|
+
.glyphicon-question-sign {
|
571
|
+
&:before {
|
572
|
+
content: "\e085";
|
573
|
+
}
|
574
|
+
}
|
575
|
+
|
576
|
+
.glyphicon-info-sign {
|
577
|
+
&:before {
|
578
|
+
content: "\e086";
|
579
|
+
}
|
580
|
+
}
|
581
|
+
|
582
|
+
.glyphicon-screenshot {
|
583
|
+
&:before {
|
584
|
+
content: "\e087";
|
585
|
+
}
|
586
|
+
}
|
587
|
+
|
588
|
+
.glyphicon-remove-circle {
|
589
|
+
&:before {
|
590
|
+
content: "\e088";
|
591
|
+
}
|
592
|
+
}
|
593
|
+
|
594
|
+
.glyphicon-ok-circle {
|
595
|
+
&:before {
|
596
|
+
content: "\e089";
|
597
|
+
}
|
598
|
+
}
|
599
|
+
|
600
|
+
.glyphicon-ban-circle {
|
601
|
+
&:before {
|
602
|
+
content: "\e090";
|
603
|
+
}
|
604
|
+
}
|
605
|
+
|
606
|
+
.glyphicon-arrow-left {
|
607
|
+
&:before {
|
608
|
+
content: "\e091";
|
609
|
+
}
|
610
|
+
}
|
611
|
+
|
612
|
+
.glyphicon-arrow-right {
|
613
|
+
&:before {
|
614
|
+
content: "\e092";
|
615
|
+
}
|
616
|
+
}
|
617
|
+
|
618
|
+
.glyphicon-arrow-up {
|
619
|
+
&:before {
|
620
|
+
content: "\e093";
|
621
|
+
}
|
622
|
+
}
|
623
|
+
|
624
|
+
.glyphicon-arrow-down {
|
625
|
+
&:before {
|
626
|
+
content: "\e094";
|
627
|
+
}
|
628
|
+
}
|
629
|
+
|
630
|
+
.glyphicon-share-alt {
|
631
|
+
&:before {
|
632
|
+
content: "\e095";
|
633
|
+
}
|
634
|
+
}
|
635
|
+
|
636
|
+
.glyphicon-resize-full {
|
637
|
+
&:before {
|
638
|
+
content: "\e096";
|
639
|
+
}
|
640
|
+
}
|
641
|
+
|
642
|
+
.glyphicon-resize-small {
|
643
|
+
&:before {
|
644
|
+
content: "\e097";
|
645
|
+
}
|
646
|
+
}
|
647
|
+
|
648
|
+
.glyphicon-exclamation-sign {
|
649
|
+
&:before {
|
650
|
+
content: "\e101";
|
651
|
+
}
|
652
|
+
}
|
653
|
+
|
654
|
+
.glyphicon-gift {
|
655
|
+
&:before {
|
656
|
+
content: "\e102";
|
657
|
+
}
|
658
|
+
}
|
659
|
+
|
660
|
+
.glyphicon-leaf {
|
661
|
+
&:before {
|
662
|
+
content: "\e103";
|
663
|
+
}
|
664
|
+
}
|
665
|
+
|
666
|
+
.glyphicon-fire {
|
667
|
+
&:before {
|
668
|
+
content: "\e104";
|
669
|
+
}
|
670
|
+
}
|
671
|
+
|
672
|
+
.glyphicon-eye-open {
|
673
|
+
&:before {
|
674
|
+
content: "\e105";
|
675
|
+
}
|
676
|
+
}
|
677
|
+
|
678
|
+
.glyphicon-eye-close {
|
679
|
+
&:before {
|
680
|
+
content: "\e106";
|
681
|
+
}
|
682
|
+
}
|
683
|
+
|
684
|
+
.glyphicon-warning-sign {
|
685
|
+
&:before {
|
686
|
+
content: "\e107";
|
687
|
+
}
|
688
|
+
}
|
689
|
+
|
690
|
+
.glyphicon-plane {
|
691
|
+
&:before {
|
692
|
+
content: "\e108";
|
693
|
+
}
|
694
|
+
}
|
695
|
+
|
696
|
+
.glyphicon-calendar {
|
697
|
+
&:before {
|
698
|
+
content: "\e109";
|
699
|
+
}
|
700
|
+
}
|
701
|
+
|
702
|
+
.glyphicon-random {
|
703
|
+
&:before {
|
704
|
+
content: "\e110";
|
705
|
+
}
|
706
|
+
}
|
707
|
+
|
708
|
+
.glyphicon-comment {
|
709
|
+
&:before {
|
710
|
+
content: "\e111";
|
711
|
+
}
|
712
|
+
}
|
713
|
+
|
714
|
+
.glyphicon-magnet {
|
715
|
+
&:before {
|
716
|
+
content: "\e112";
|
717
|
+
}
|
718
|
+
}
|
719
|
+
|
720
|
+
.glyphicon-chevron-up {
|
721
|
+
&:before {
|
722
|
+
content: "\e113";
|
723
|
+
}
|
724
|
+
}
|
725
|
+
|
726
|
+
.glyphicon-chevron-down {
|
727
|
+
&:before {
|
728
|
+
content: "\e114";
|
729
|
+
}
|
730
|
+
}
|
731
|
+
|
732
|
+
.glyphicon-retweet {
|
733
|
+
&:before {
|
734
|
+
content: "\e115";
|
735
|
+
}
|
736
|
+
}
|
737
|
+
|
738
|
+
.glyphicon-shopping-cart {
|
739
|
+
&:before {
|
740
|
+
content: "\e116";
|
741
|
+
}
|
742
|
+
}
|
743
|
+
|
744
|
+
.glyphicon-folder-close {
|
745
|
+
&:before {
|
746
|
+
content: "\e117";
|
747
|
+
}
|
748
|
+
}
|
749
|
+
|
750
|
+
.glyphicon-folder-open {
|
751
|
+
&:before {
|
752
|
+
content: "\e118";
|
753
|
+
}
|
754
|
+
}
|
755
|
+
|
756
|
+
.glyphicon-resize-vertical {
|
757
|
+
&:before {
|
758
|
+
content: "\e119";
|
759
|
+
}
|
760
|
+
}
|
761
|
+
|
762
|
+
.glyphicon-resize-horizontal {
|
763
|
+
&:before {
|
764
|
+
content: "\e120";
|
765
|
+
}
|
766
|
+
}
|
767
|
+
|
768
|
+
.glyphicon-hdd {
|
769
|
+
&:before {
|
770
|
+
content: "\e121";
|
771
|
+
}
|
772
|
+
}
|
773
|
+
|
774
|
+
.glyphicon-bullhorn {
|
775
|
+
&:before {
|
776
|
+
content: "\e122";
|
777
|
+
}
|
778
|
+
}
|
779
|
+
|
780
|
+
.glyphicon-bell {
|
781
|
+
&:before {
|
782
|
+
content: "\e123";
|
783
|
+
}
|
784
|
+
}
|
785
|
+
|
786
|
+
.glyphicon-certificate {
|
787
|
+
&:before {
|
788
|
+
content: "\e124";
|
789
|
+
}
|
790
|
+
}
|
791
|
+
|
792
|
+
.glyphicon-thumbs-up {
|
793
|
+
&:before {
|
794
|
+
content: "\e125";
|
795
|
+
}
|
796
|
+
}
|
797
|
+
|
798
|
+
.glyphicon-thumbs-down {
|
799
|
+
&:before {
|
800
|
+
content: "\e126";
|
801
|
+
}
|
802
|
+
}
|
803
|
+
|
804
|
+
.glyphicon-hand-right {
|
805
|
+
&:before {
|
806
|
+
content: "\e127";
|
807
|
+
}
|
808
|
+
}
|
809
|
+
|
810
|
+
.glyphicon-hand-left {
|
811
|
+
&:before {
|
812
|
+
content: "\e128";
|
813
|
+
}
|
814
|
+
}
|
815
|
+
|
816
|
+
.glyphicon-hand-up {
|
817
|
+
&:before {
|
818
|
+
content: "\e129";
|
819
|
+
}
|
820
|
+
}
|
821
|
+
|
822
|
+
.glyphicon-hand-down {
|
823
|
+
&:before {
|
824
|
+
content: "\e130";
|
825
|
+
}
|
826
|
+
}
|
827
|
+
|
828
|
+
.glyphicon-circle-arrow-right {
|
829
|
+
&:before {
|
830
|
+
content: "\e131";
|
831
|
+
}
|
832
|
+
}
|
833
|
+
|
834
|
+
.glyphicon-circle-arrow-left {
|
835
|
+
&:before {
|
836
|
+
content: "\e132";
|
837
|
+
}
|
838
|
+
}
|
839
|
+
|
840
|
+
.glyphicon-circle-arrow-up {
|
841
|
+
&:before {
|
842
|
+
content: "\e133";
|
843
|
+
}
|
844
|
+
}
|
845
|
+
|
846
|
+
.glyphicon-circle-arrow-down {
|
847
|
+
&:before {
|
848
|
+
content: "\e134";
|
849
|
+
}
|
850
|
+
}
|
851
|
+
|
852
|
+
.glyphicon-globe {
|
853
|
+
&:before {
|
854
|
+
content: "\e135";
|
855
|
+
}
|
856
|
+
}
|
857
|
+
|
858
|
+
.glyphicon-wrench {
|
859
|
+
&:before {
|
860
|
+
content: "\e136";
|
861
|
+
}
|
862
|
+
}
|
863
|
+
|
864
|
+
.glyphicon-tasks {
|
865
|
+
&:before {
|
866
|
+
content: "\e137";
|
867
|
+
}
|
868
|
+
}
|
869
|
+
|
870
|
+
.glyphicon-filter {
|
871
|
+
&:before {
|
872
|
+
content: "\e138";
|
873
|
+
}
|
874
|
+
}
|
875
|
+
|
876
|
+
.glyphicon-briefcase {
|
877
|
+
&:before {
|
878
|
+
content: "\e139";
|
879
|
+
}
|
880
|
+
}
|
881
|
+
|
882
|
+
.glyphicon-fullscreen {
|
883
|
+
&:before {
|
884
|
+
content: "\e140";
|
885
|
+
}
|
886
|
+
}
|
887
|
+
|
888
|
+
.glyphicon-dashboard {
|
889
|
+
&:before {
|
890
|
+
content: "\e141";
|
891
|
+
}
|
892
|
+
}
|
893
|
+
|
894
|
+
.glyphicon-paperclip {
|
895
|
+
&:before {
|
896
|
+
content: "\e142";
|
897
|
+
}
|
898
|
+
}
|
899
|
+
|
900
|
+
.glyphicon-heart-empty {
|
901
|
+
&:before {
|
902
|
+
content: "\e143";
|
903
|
+
}
|
904
|
+
}
|
905
|
+
|
906
|
+
.glyphicon-link {
|
907
|
+
&:before {
|
908
|
+
content: "\e144";
|
909
|
+
}
|
910
|
+
}
|
911
|
+
|
912
|
+
.glyphicon-phone {
|
913
|
+
&:before {
|
914
|
+
content: "\e145";
|
915
|
+
}
|
916
|
+
}
|
917
|
+
|
918
|
+
.glyphicon-pushpin {
|
919
|
+
&:before {
|
920
|
+
content: "\e146";
|
921
|
+
}
|
922
|
+
}
|
923
|
+
|
924
|
+
.glyphicon-usd {
|
925
|
+
&:before {
|
926
|
+
content: "\e148";
|
927
|
+
}
|
928
|
+
}
|
929
|
+
|
930
|
+
.glyphicon-gbp {
|
931
|
+
&:before {
|
932
|
+
content: "\e149";
|
933
|
+
}
|
934
|
+
}
|
935
|
+
|
936
|
+
.glyphicon-sort {
|
937
|
+
&:before {
|
938
|
+
content: "\e150";
|
939
|
+
}
|
940
|
+
}
|
941
|
+
|
942
|
+
.glyphicon-sort-by-alphabet {
|
943
|
+
&:before {
|
944
|
+
content: "\e151";
|
945
|
+
}
|
946
|
+
}
|
947
|
+
|
948
|
+
.glyphicon-sort-by-alphabet-alt {
|
949
|
+
&:before {
|
950
|
+
content: "\e152";
|
951
|
+
}
|
952
|
+
}
|
953
|
+
|
954
|
+
.glyphicon-sort-by-order {
|
955
|
+
&:before {
|
956
|
+
content: "\e153";
|
957
|
+
}
|
958
|
+
}
|
959
|
+
|
960
|
+
.glyphicon-sort-by-order-alt {
|
961
|
+
&:before {
|
962
|
+
content: "\e154";
|
963
|
+
}
|
964
|
+
}
|
965
|
+
|
966
|
+
.glyphicon-sort-by-attributes {
|
967
|
+
&:before {
|
968
|
+
content: "\e155";
|
969
|
+
}
|
970
|
+
}
|
971
|
+
|
972
|
+
.glyphicon-sort-by-attributes-alt {
|
973
|
+
&:before {
|
974
|
+
content: "\e156";
|
975
|
+
}
|
976
|
+
}
|
977
|
+
|
978
|
+
.glyphicon-unchecked {
|
979
|
+
&:before {
|
980
|
+
content: "\e157";
|
981
|
+
}
|
982
|
+
}
|
983
|
+
|
984
|
+
.glyphicon-expand {
|
985
|
+
&:before {
|
986
|
+
content: "\e158";
|
987
|
+
}
|
988
|
+
}
|
989
|
+
|
990
|
+
.glyphicon-collapse-down {
|
991
|
+
&:before {
|
992
|
+
content: "\e159";
|
993
|
+
}
|
994
|
+
}
|
995
|
+
|
996
|
+
.glyphicon-collapse-up {
|
997
|
+
&:before {
|
998
|
+
content: "\e160";
|
999
|
+
}
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
.glyphicon-log-in {
|
1003
|
+
&:before {
|
1004
|
+
content: "\e161";
|
1005
|
+
}
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.glyphicon-flash {
|
1009
|
+
&:before {
|
1010
|
+
content: "\e162";
|
1011
|
+
}
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
.glyphicon-log-out {
|
1015
|
+
&:before {
|
1016
|
+
content: "\e163";
|
1017
|
+
}
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
.glyphicon-new-window {
|
1021
|
+
&:before {
|
1022
|
+
content: "\e164";
|
1023
|
+
}
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
.glyphicon-record {
|
1027
|
+
&:before {
|
1028
|
+
content: "\e165";
|
1029
|
+
}
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
.glyphicon-save {
|
1033
|
+
&:before {
|
1034
|
+
content: "\e166";
|
1035
|
+
}
|
1036
|
+
}
|
1037
|
+
|
1038
|
+
.glyphicon-open {
|
1039
|
+
&:before {
|
1040
|
+
content: "\e167";
|
1041
|
+
}
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
.glyphicon-saved {
|
1045
|
+
&:before {
|
1046
|
+
content: "\e168";
|
1047
|
+
}
|
1048
|
+
}
|
1049
|
+
|
1050
|
+
.glyphicon-import {
|
1051
|
+
&:before {
|
1052
|
+
content: "\e169";
|
1053
|
+
}
|
1054
|
+
}
|
1055
|
+
|
1056
|
+
.glyphicon-export {
|
1057
|
+
&:before {
|
1058
|
+
content: "\e170";
|
1059
|
+
}
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
.glyphicon-send {
|
1063
|
+
&:before {
|
1064
|
+
content: "\e171";
|
1065
|
+
}
|
1066
|
+
}
|
1067
|
+
|
1068
|
+
.glyphicon-floppy-disk {
|
1069
|
+
&:before {
|
1070
|
+
content: "\e172";
|
1071
|
+
}
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
.glyphicon-floppy-saved {
|
1075
|
+
&:before {
|
1076
|
+
content: "\e173";
|
1077
|
+
}
|
1078
|
+
}
|
1079
|
+
|
1080
|
+
.glyphicon-floppy-remove {
|
1081
|
+
&:before {
|
1082
|
+
content: "\e174";
|
1083
|
+
}
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
.glyphicon-floppy-save {
|
1087
|
+
&:before {
|
1088
|
+
content: "\e175";
|
1089
|
+
}
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
.glyphicon-floppy-open {
|
1093
|
+
&:before {
|
1094
|
+
content: "\e176";
|
1095
|
+
}
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
.glyphicon-credit-card {
|
1099
|
+
&:before {
|
1100
|
+
content: "\e177";
|
1101
|
+
}
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
.glyphicon-transfer {
|
1105
|
+
&:before {
|
1106
|
+
content: "\e178";
|
1107
|
+
}
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
.glyphicon-cutlery {
|
1111
|
+
&:before {
|
1112
|
+
content: "\e179";
|
1113
|
+
}
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
.glyphicon-header {
|
1117
|
+
&:before {
|
1118
|
+
content: "\e180";
|
1119
|
+
}
|
1120
|
+
}
|
1121
|
+
|
1122
|
+
.glyphicon-compressed {
|
1123
|
+
&:before {
|
1124
|
+
content: "\e181";
|
1125
|
+
}
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
.glyphicon-earphone {
|
1129
|
+
&:before {
|
1130
|
+
content: "\e182";
|
1131
|
+
}
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
.glyphicon-phone-alt {
|
1135
|
+
&:before {
|
1136
|
+
content: "\e183";
|
1137
|
+
}
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
.glyphicon-tower {
|
1141
|
+
&:before {
|
1142
|
+
content: "\e184";
|
1143
|
+
}
|
1144
|
+
}
|
1145
|
+
|
1146
|
+
.glyphicon-stats {
|
1147
|
+
&:before {
|
1148
|
+
content: "\e185";
|
1149
|
+
}
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
.glyphicon-sd-video {
|
1153
|
+
&:before {
|
1154
|
+
content: "\e186";
|
1155
|
+
}
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
.glyphicon-hd-video {
|
1159
|
+
&:before {
|
1160
|
+
content: "\e187";
|
1161
|
+
}
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
.glyphicon-subtitles {
|
1165
|
+
&:before {
|
1166
|
+
content: "\e188";
|
1167
|
+
}
|
1168
|
+
}
|
1169
|
+
|
1170
|
+
.glyphicon-sound-stereo {
|
1171
|
+
&:before {
|
1172
|
+
content: "\e189";
|
1173
|
+
}
|
1174
|
+
}
|
1175
|
+
|
1176
|
+
.glyphicon-sound-dolby {
|
1177
|
+
&:before {
|
1178
|
+
content: "\e190";
|
1179
|
+
}
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
.glyphicon-sound-5-1 {
|
1183
|
+
&:before {
|
1184
|
+
content: "\e191";
|
1185
|
+
}
|
1186
|
+
}
|
1187
|
+
|
1188
|
+
.glyphicon-sound-6-1 {
|
1189
|
+
&:before {
|
1190
|
+
content: "\e192";
|
1191
|
+
}
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
.glyphicon-sound-7-1 {
|
1195
|
+
&:before {
|
1196
|
+
content: "\e193";
|
1197
|
+
}
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
.glyphicon-copyright-mark {
|
1201
|
+
&:before {
|
1202
|
+
content: "\e194";
|
1203
|
+
}
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
.glyphicon-registration-mark {
|
1207
|
+
&:before {
|
1208
|
+
content: "\e195";
|
1209
|
+
}
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
.glyphicon-cloud-download {
|
1213
|
+
&:before {
|
1214
|
+
content: "\e197";
|
1215
|
+
}
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
.glyphicon-cloud-upload {
|
1219
|
+
&:before {
|
1220
|
+
content: "\e198";
|
1221
|
+
}
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
.glyphicon-tree-conifer {
|
1225
|
+
&:before {
|
1226
|
+
content: "\e199";
|
1227
|
+
}
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
.glyphicon-tree-deciduous {
|
1231
|
+
&:before {
|
1232
|
+
content: "\e200";
|
1233
|
+
}
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
.glyphicon-cd {
|
1237
|
+
&:before {
|
1238
|
+
content: "\e201";
|
1239
|
+
}
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
.glyphicon-save-file {
|
1243
|
+
&:before {
|
1244
|
+
content: "\e202";
|
1245
|
+
}
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
.glyphicon-open-file {
|
1249
|
+
&:before {
|
1250
|
+
content: "\e203";
|
1251
|
+
}
|
1252
|
+
}
|
1253
|
+
|
1254
|
+
.glyphicon-level-up {
|
1255
|
+
&:before {
|
1256
|
+
content: "\e204";
|
1257
|
+
}
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
.glyphicon-copy {
|
1261
|
+
&:before {
|
1262
|
+
content: "\e205";
|
1263
|
+
}
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
.glyphicon-paste {
|
1267
|
+
&:before {
|
1268
|
+
content: "\e206";
|
1269
|
+
}
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
// The following 2 Glyphicons are omitted for the time being because
|
1273
|
+
// they currently use Unicode codepoints that are outside the
|
1274
|
+
// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
|
1275
|
+
// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
|
1276
|
+
// Notably, the bug affects some older versions of the Android Browser.
|
1277
|
+
// More info: https://github.com/twbs/bootstrap/issues/10106
|
1278
|
+
// .glyphicon-door { &:before { content: "\1f6aa"; } }
|
1279
|
+
// .glyphicon-key { &:before { content: "\1f511"; } }
|
1280
|
+
.glyphicon-alert {
|
1281
|
+
&:before {
|
1282
|
+
content: "\e209";
|
1283
|
+
}
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
.glyphicon-equalizer {
|
1287
|
+
&:before {
|
1288
|
+
content: "\e210";
|
1289
|
+
}
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
.glyphicon-king {
|
1293
|
+
&:before {
|
1294
|
+
content: "\e211";
|
1295
|
+
}
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
.glyphicon-queen {
|
1299
|
+
&:before {
|
1300
|
+
content: "\e212";
|
1301
|
+
}
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
.glyphicon-pawn {
|
1305
|
+
&:before {
|
1306
|
+
content: "\e213";
|
1307
|
+
}
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
.glyphicon-bishop {
|
1311
|
+
&:before {
|
1312
|
+
content: "\e214";
|
1313
|
+
}
|
1314
|
+
}
|
1315
|
+
|
1316
|
+
.glyphicon-knight {
|
1317
|
+
&:before {
|
1318
|
+
content: "\e215";
|
1319
|
+
}
|
1320
|
+
}
|
1321
|
+
|
1322
|
+
.glyphicon-baby-formula {
|
1323
|
+
&:before {
|
1324
|
+
content: "\e216";
|
1325
|
+
}
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
.glyphicon-tent {
|
1329
|
+
&:before {
|
1330
|
+
content: "\26fa";
|
1331
|
+
}
|
1332
|
+
}
|
1333
|
+
|
1334
|
+
.glyphicon-blackboard {
|
1335
|
+
&:before {
|
1336
|
+
content: "\e218";
|
1337
|
+
}
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
.glyphicon-bed {
|
1341
|
+
&:before {
|
1342
|
+
content: "\e219";
|
1343
|
+
}
|
1344
|
+
}
|
1345
|
+
|
1346
|
+
.glyphicon-apple {
|
1347
|
+
&:before {
|
1348
|
+
content: "\f8ff";
|
1349
|
+
}
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
.glyphicon-erase {
|
1353
|
+
&:before {
|
1354
|
+
content: "\e221";
|
1355
|
+
}
|
1356
|
+
}
|
1357
|
+
|
1358
|
+
.glyphicon-hourglass {
|
1359
|
+
&:before {
|
1360
|
+
content: "\231b";
|
1361
|
+
}
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
.glyphicon-lamp {
|
1365
|
+
&:before {
|
1366
|
+
content: "\e223";
|
1367
|
+
}
|
1368
|
+
}
|
1369
|
+
|
1370
|
+
.glyphicon-duplicate {
|
1371
|
+
&:before {
|
1372
|
+
content: "\e224";
|
1373
|
+
}
|
1374
|
+
}
|
1375
|
+
|
1376
|
+
.glyphicon-piggy-bank {
|
1377
|
+
&:before {
|
1378
|
+
content: "\e225";
|
1379
|
+
}
|
1380
|
+
}
|
1381
|
+
|
1382
|
+
.glyphicon-scissors {
|
1383
|
+
&:before {
|
1384
|
+
content: "\e226";
|
1385
|
+
}
|
1386
|
+
}
|
1387
|
+
|
1388
|
+
.glyphicon-bitcoin {
|
1389
|
+
&:before {
|
1390
|
+
content: "\e227";
|
1391
|
+
}
|
1392
|
+
}
|
1393
|
+
|
1394
|
+
.glyphicon-btc {
|
1395
|
+
&:before {
|
1396
|
+
content: "\e227";
|
1397
|
+
}
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
.glyphicon-xbt {
|
1401
|
+
&:before {
|
1402
|
+
content: "\e227";
|
1403
|
+
}
|
1404
|
+
}
|
1405
|
+
|
1406
|
+
.glyphicon-yen {
|
1407
|
+
&:before {
|
1408
|
+
content: "\00a5";
|
1409
|
+
}
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
.glyphicon-jpy {
|
1413
|
+
&:before {
|
1414
|
+
content: "\00a5";
|
1415
|
+
}
|
1416
|
+
}
|
1417
|
+
|
1418
|
+
.glyphicon-ruble {
|
1419
|
+
&:before {
|
1420
|
+
content: "\20bd";
|
1421
|
+
}
|
1422
|
+
}
|
1423
|
+
|
1424
|
+
.glyphicon-rub {
|
1425
|
+
&:before {
|
1426
|
+
content: "\20bd";
|
1427
|
+
}
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
.glyphicon-scale {
|
1431
|
+
&:before {
|
1432
|
+
content: "\e230";
|
1433
|
+
}
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
.glyphicon-ice-lolly {
|
1437
|
+
&:before {
|
1438
|
+
content: "\e231";
|
1439
|
+
}
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
.glyphicon-ice-lolly-tasted {
|
1443
|
+
&:before {
|
1444
|
+
content: "\e232";
|
1445
|
+
}
|
1446
|
+
}
|
1447
|
+
|
1448
|
+
.glyphicon-education {
|
1449
|
+
&:before {
|
1450
|
+
content: "\e233";
|
1451
|
+
}
|
1452
|
+
}
|
1453
|
+
|
1454
|
+
.glyphicon-option-horizontal {
|
1455
|
+
&:before {
|
1456
|
+
content: "\e234";
|
1457
|
+
}
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
.glyphicon-option-vertical {
|
1461
|
+
&:before {
|
1462
|
+
content: "\e235";
|
1463
|
+
}
|
1464
|
+
}
|
1465
|
+
|
1466
|
+
.glyphicon-menu-hamburger {
|
1467
|
+
&:before {
|
1468
|
+
content: "\e236";
|
1469
|
+
}
|
1470
|
+
}
|
1471
|
+
|
1472
|
+
.glyphicon-modal-window {
|
1473
|
+
&:before {
|
1474
|
+
content: "\e237";
|
1475
|
+
}
|
1476
|
+
}
|
1477
|
+
|
1478
|
+
.glyphicon-oil {
|
1479
|
+
&:before {
|
1480
|
+
content: "\e238";
|
1481
|
+
}
|
1482
|
+
}
|
1483
|
+
|
1484
|
+
.glyphicon-grain {
|
1485
|
+
&:before {
|
1486
|
+
content: "\e239";
|
1487
|
+
}
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
.glyphicon-sunglasses {
|
1491
|
+
&:before {
|
1492
|
+
content: "\e240";
|
1493
|
+
}
|
1494
|
+
}
|
1495
|
+
|
1496
|
+
.glyphicon-text-size {
|
1497
|
+
&:before {
|
1498
|
+
content: "\e241";
|
1499
|
+
}
|
1500
|
+
}
|
1501
|
+
|
1502
|
+
.glyphicon-text-color {
|
1503
|
+
&:before {
|
1504
|
+
content: "\e242";
|
1505
|
+
}
|
1506
|
+
}
|
1507
|
+
|
1508
|
+
.glyphicon-text-background {
|
1509
|
+
&:before {
|
1510
|
+
content: "\e243";
|
1511
|
+
}
|
1512
|
+
}
|
1513
|
+
|
1514
|
+
.glyphicon-object-align-top {
|
1515
|
+
&:before {
|
1516
|
+
content: "\e244";
|
1517
|
+
}
|
1518
|
+
}
|
1519
|
+
|
1520
|
+
.glyphicon-object-align-bottom {
|
1521
|
+
&:before {
|
1522
|
+
content: "\e245";
|
1523
|
+
}
|
1524
|
+
}
|
1525
|
+
|
1526
|
+
.glyphicon-object-align-horizontal {
|
1527
|
+
&:before {
|
1528
|
+
content: "\e246";
|
1529
|
+
}
|
1530
|
+
}
|
1531
|
+
|
1532
|
+
.glyphicon-object-align-left {
|
1533
|
+
&:before {
|
1534
|
+
content: "\e247";
|
1535
|
+
}
|
1536
|
+
}
|
1537
|
+
|
1538
|
+
.glyphicon-object-align-vertical {
|
1539
|
+
&:before {
|
1540
|
+
content: "\e248";
|
1541
|
+
}
|
1542
|
+
}
|
1543
|
+
|
1544
|
+
.glyphicon-object-align-right {
|
1545
|
+
&:before {
|
1546
|
+
content: "\e249";
|
1547
|
+
}
|
1548
|
+
}
|
1549
|
+
|
1550
|
+
.glyphicon-triangle-right {
|
1551
|
+
&:before {
|
1552
|
+
content: "\e250";
|
1553
|
+
}
|
1554
|
+
}
|
1555
|
+
|
1556
|
+
.glyphicon-triangle-left {
|
1557
|
+
&:before {
|
1558
|
+
content: "\e251";
|
1559
|
+
}
|
1560
|
+
}
|
1561
|
+
|
1562
|
+
.glyphicon-triangle-bottom {
|
1563
|
+
&:before {
|
1564
|
+
content: "\e252";
|
1565
|
+
}
|
1566
|
+
}
|
1567
|
+
|
1568
|
+
.glyphicon-triangle-top {
|
1569
|
+
&:before {
|
1570
|
+
content: "\e253";
|
1571
|
+
}
|
1572
|
+
}
|
1573
|
+
|
1574
|
+
.glyphicon-console {
|
1575
|
+
&:before {
|
1576
|
+
content: "\e254";
|
1577
|
+
}
|
1578
|
+
}
|
1579
|
+
|
1580
|
+
.glyphicon-superscript {
|
1581
|
+
&:before {
|
1582
|
+
content: "\e255";
|
1583
|
+
}
|
1584
|
+
}
|
1585
|
+
|
1586
|
+
.glyphicon-subscript {
|
1587
|
+
&:before {
|
1588
|
+
content: "\e256";
|
1589
|
+
}
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
.glyphicon-menu-left {
|
1593
|
+
&:before {
|
1594
|
+
content: "\e257";
|
1595
|
+
}
|
1596
|
+
}
|
1597
|
+
|
1598
|
+
.glyphicon-menu-right {
|
1599
|
+
&:before {
|
1600
|
+
content: "\e258";
|
1601
|
+
}
|
1602
|
+
}
|
1603
|
+
|
1604
|
+
.glyphicon-menu-down {
|
1605
|
+
&:before {
|
1606
|
+
content: "\e259";
|
1607
|
+
}
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
.glyphicon-menu-up {
|
1611
|
+
&:before {
|
1612
|
+
content: "\e260";
|
1613
|
+
}
|
1614
|
+
}
|