linaro-jekyll-theme 0.10.149 → 4.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE.txt +1 -1
- data/README.md +19 -50
- data/_config.yml +192 -0
- data/_data/footer.yml +27 -107
- data/_data/nav.yml +72 -61
- data/_data/picture.yml +151 -0
- data/_data/universal_nav.yml +22 -0
- data/_includes/blog/authors_posts.html +37 -0
- data/_includes/blog/blog_filler_element.html +21 -0
- data/_includes/blog/display_latest_posts.html +119 -0
- data/_includes/blog/disqus_comments.html +24 -0
- data/_includes/blog/latest_posts.html +11 -0
- data/_includes/blog/pagination.html +37 -0
- data/_includes/blog/post_search.html +11 -0
- data/_includes/blog/post_series.html +28 -0
- data/_includes/blog/post_sidebar.html +74 -0
- data/_includes/blog/read_time.html +7 -0
- data/_includes/components/breadcrumb.html +37 -0
- data/_includes/components/carousel_header.html +15 -0
- data/_includes/components/cookie_manager.html +72 -0
- data/_includes/components/css.html +8 -0
- data/_includes/components/github_edit.html +34 -0
- data/_includes/components/head.html +65 -0
- data/_includes/components/http2.html +57 -0
- data/_includes/components/javascript.html +10 -0
- data/_includes/components/jumbotron.html +82 -0
- data/_includes/components/linaro_404.html +16 -0
- data/_includes/components/schema.html +1 -0
- data/_includes/components/sidebar.html +55 -0
- data/_includes/examples/custom_include.html +10 -0
- data/_includes/examples/custom_include_row.html +562 -0
- data/_includes/flow/blocks.html +73 -0
- data/_includes/flow/button.html +6 -0
- data/_includes/flow/buttons.html +5 -0
- data/_includes/flow/call-to-action-banner.html +8 -0
- data/_includes/flow/collapse.html +21 -0
- data/_includes/flow/container_row.html +11 -0
- data/_includes/flow/feature_block.html +41 -0
- data/_includes/flow/flow_inner.html +29 -0
- data/_includes/flow/full_width_row.html +5 -0
- data/_includes/flow/image.html +12 -0
- data/_includes/flow/members-section.html +24 -0
- data/_includes/flow/slider.html +25 -0
- data/_includes/flow/slider_row.html +3 -0
- data/_includes/flow/tabbed_content.html +21 -0
- data/_includes/flow/text.html +3 -0
- data/_includes/flow/title.html +3 -0
- data/_includes/footer/footer.html +29 -0
- data/_includes/image.html +15 -4
- data/_includes/js_bundles/app.html +4 -0
- data/_includes/js_bundles/vendor.html +13 -0
- data/_includes/media.html +4 -4
- data/_includes/nav/brand.html +3 -0
- data/_includes/nav/nav.html +133 -0
- data/_includes/nav/universal_nav.html +36 -0
- data/_includes/social_media_icons.html +24 -0
- data/_includes/sticky-tab-bar.html +61 -0
- data/_includes/youtube.html +74 -6
- data/_layouts/author.html +61 -0
- data/_layouts/base.html +14 -0
- data/_layouts/default.html +2 -18
- data/_layouts/flow.html +33 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +56 -133
- data/{_layouts/about.html → _sass/app/blog.scss} +0 -0
- data/_sass/app/custom.scss +1 -0
- data/_sass/app/overrides.scss +43 -0
- data/_sass/app/search.scss +51 -0
- data/_sass/blog.scss +3 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +47 -0
- data/_sass/bootstrap/_breadcrumb.scss +41 -0
- data/_sass/bootstrap/_button-group.scss +172 -0
- data/_sass/bootstrap/_buttons.scss +75 -100
- data/_sass/bootstrap/_card.scss +301 -0
- data/_sass/bootstrap/_carousel.scss +161 -195
- data/_sass/bootstrap/_close.scss +15 -16
- data/_sass/bootstrap/_code.scss +15 -36
- data/_sass/bootstrap/_custom-forms.scss +433 -0
- data/_sass/bootstrap/_dropdown.scss +166 -0
- data/_sass/bootstrap/_forms.scss +213 -497
- data/_sass/bootstrap/_functions.scss +86 -0
- data/_sass/bootstrap/_grid.scss +29 -61
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +173 -0
- data/_sass/bootstrap/_jumbotron.scss +9 -47
- data/_sass/bootstrap/_list-group.scss +64 -79
- data/_sass/bootstrap/_media.scss +3 -61
- data/_sass/bootstrap/_mixins.scss +19 -18
- data/_sass/bootstrap/_modal.scss +180 -0
- data/_sass/bootstrap/_nav.scss +118 -0
- data/_sass/bootstrap/_navbar.scss +192 -555
- data/_sass/bootstrap/_pagination.scss +59 -70
- data/_sass/bootstrap/_popover.scss +183 -0
- data/_sass/bootstrap/_print.scss +89 -49
- data/_sass/bootstrap/_progress.scss +34 -0
- data/_sass/bootstrap/_reboot.scss +483 -0
- data/_sass/bootstrap/_root.scss +19 -0
- data/_sass/bootstrap/_tables.scss +119 -166
- data/_sass/bootstrap/_tooltip.scss +93 -79
- data/_sass/bootstrap/_transitions.scss +22 -0
- data/_sass/bootstrap/_type.scss +66 -239
- data/_sass/bootstrap/_utilities.scss +15 -55
- data/_sass/bootstrap/_variables.scss +782 -727
- data/_sass/bootstrap/bootstrap-grid.scss +32 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +42 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +14 -5
- data/_sass/bootstrap/mixins/_badge.scss +12 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +25 -8
- data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +84 -40
- data/_sass/bootstrap/mixins/_caret.scss +66 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +3 -18
- data/_sass/bootstrap/mixins/_float.scss +11 -0
- data/_sass/bootstrap/mixins/_forms.scss +125 -66
- data/_sass/bootstrap/mixins/_gradients.scss +17 -30
- data/_sass/bootstrap/mixins/_grid-framework.scss +52 -66
- data/_sass/bootstrap/mixins/_grid.scss +37 -107
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +18 -15
- data/_sass/bootstrap/mixins/_list-group.scss +10 -21
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +4 -4
- data/_sass/bootstrap/mixins/_pagination.scss +10 -12
- data/_sass/bootstrap/mixins/_reset-text.scss +7 -8
- data/_sass/bootstrap/mixins/_resize.scss +1 -1
- data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
- data/_sass/bootstrap/mixins/_size.scss +1 -5
- data/_sass/bootstrap/mixins/_table-row.scss +16 -14
- data/_sass/bootstrap/mixins/_text-emphasis.scss +7 -5
- data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
- data/_sass/bootstrap/mixins/{_text-overflow.scss → _text-truncate.scss} +2 -2
- data/_sass/bootstrap/mixins/_transition.scss +13 -0
- data/_sass/bootstrap/mixins/_visibility.scss +7 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +59 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +38 -0
- data/_sass/bootstrap/{_responsive-embed.scss → utilities/_embed.scss} +26 -9
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +9 -0
- data/_sass/bootstrap/utilities/_position.scss +37 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +12 -0
- data/_sass/bootstrap/utilities/_spacing.scss +51 -0
- data/_sass/bootstrap/utilities/_text.scss +58 -0
- data/_sass/bootstrap/utilities/_visibility.scss +11 -0
- data/_sass/core.scss +15 -0
- data/_sass/core/blog.scss +244 -208
- data/_sass/core/bootstrap-multiselect.scss +1 -0
- data/_sass/core/breadcrumb.scss +16 -65
- data/_sass/core/carousel-header.scss +91 -0
- data/_sass/core/carousel-styles.scss +1 -0
- data/_sass/core/carousel.scss +202 -27
- data/_sass/core/cookies.scss +200 -0
- data/_sass/core/error.scss +190 -0
- data/_sass/core/featherlight.scss +158 -0
- data/_sass/core/flow.scss +94 -0
- data/_sass/core/fontello.scss +91 -0
- data/_sass/core/footer.scss +60 -120
- data/_sass/core/jumbotron.scss +105 -0
- data/_sass/core/navbar.scss +241 -0
- data/_sass/core/normalize.scss +358 -0
- data/_sass/core/syntax.scss +65 -62
- data/_sass/core/theme.scss +49 -531
- data/assets/css/main.scss +12 -18
- data/assets/fonts/fontello/fontello.eot +0 -0
- data/assets/fonts/fontello/fontello.svg +94 -0
- data/assets/fonts/fontello/fontello.ttf +0 -0
- data/assets/fonts/fontello/fontello.woff +0 -0
- data/assets/fonts/fontello/fontello.woff2 +0 -0
- data/assets/fonts/{lato-regular → lato}/LICENSE.txt +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.eot +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.svg +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.ttf +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.woff +0 -0
- data/assets/fonts/{lato-regular → lato}/Lato-regular.woff2 +0 -0
- data/assets/images/{Linaro-Logo_standard.svg → Linaro-Logo.svg} +0 -0
- data/assets/images/Linaro-Sprinkle.png +0 -0
- data/assets/images/Linaro-logo-white.png +0 -0
- data/assets/images/{avatar-placeholder.png → avatar-placeholder.jpg} +0 -0
- data/assets/images/breadcrumb-image.jpg +0 -0
- data/assets/images/clipboard.svg +3 -0
- data/{_sass/custom.scss → assets/js/app/custom.js} +0 -0
- data/assets/js/app/main.js +360 -96
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/popper.min.js.map +1 -0
- data/assets/js/vendor/_popper.js +5 -0
- data/assets/js/vendor/bootstrap.js +6 -0
- data/assets/js/vendor/clipboard.min.js +7 -0
- data/assets/js/vendor/featherlight.js +641 -0
- data/assets/js/vendor/jquery.cookie.js +120 -0
- data/assets/js/vendor/jquery.ihavecookies.js +271 -0
- data/assets/js/vendor/jquery.js +10364 -0
- data/assets/js/vendor/lazysizes.js +698 -0
- data/assets/js/vendor/ls.unveilhooks.js +145 -0
- data/assets/js/vendor/owl.carousel.js +3907 -0
- data/assets/js/vendor/simple-jekyll-search.min.js +278 -0
- data/assets/json/posts.json +28 -0
- data/robots.txt +2 -2
- metadata +206 -234
- data/_data/authors.yml +0 -7
- data/_data/company.yml +0 -29
- data/_data/linaro.yml +0 -4
- data/_data/members_db.yaml +0 -115
- data/_data/news.yaml +0 -230
- data/_data/sub-nav-stacked.yml +0 -67
- data/_data/sub-nav.yml +0 -61
- data/_includes/_theme-includes/_blog/pagination.html +0 -39
- data/_includes/_theme-includes/_footer/footer.html +0 -85
- data/_includes/_theme-includes/_head/head.html +0 -32
- data/_includes/_theme-includes/_navigation/nav.html +0 -103
- data/_includes/_theme-includes/_navigation/stacked-nav.html +0 -20
- data/_includes/_theme-includes/_navigation/tabbed-nav.html +0 -35
- data/_includes/_theme-includes/_page-structure/breadcrumb.html +0 -101
- data/_includes/_theme-includes/_page-structure/home-hero-shape.html +0 -34
- data/_includes/_theme-includes/_page-structure/home-hero.html +0 -23
- data/_includes/_theme-includes/_page-structure/shape-divider.html +0 -12
- data/_includes/_theme-includes/_script-includes/css.html +0 -40
- data/_includes/_theme-includes/_script-includes/google-analytics/script.html +0 -10
- data/_includes/_theme-includes/_script-includes/gtm/gtm-noscript.html +0 -5
- data/_includes/_theme-includes/_script-includes/gtm/gtm-script.html +0 -9
- data/_includes/_theme-includes/_script-includes/javascript.html +0 -50
- data/_includes/_theme-includes/_third-party/disqus.html +0 -14
- data/_includes/_theme-includes/_third-party/mailchimp-homepage.html +0 -33
- data/_includes/_theme-includes/members.html +0 -63
- data/_includes/base.html +0 -14
- data/_includes/owl-carousel-homepage.html +0 -103
- data/_layouts/accessory-display-page.html +0 -88
- data/_layouts/blog-breadcrumbless.html +0 -49
- data/_layouts/blog.html +0 -56
- data/_layouts/contact.html +0 -10
- data/_layouts/default-empty.html +0 -11
- data/_layouts/default-no-sub-nav.html +0 -15
- data/_layouts/default-plain.html +0 -16
- data/_layouts/default-stacked-breadcrumb.html +0 -23
- data/_layouts/default-stacked.html +0 -22
- data/_layouts/empty.html +0 -10
- data/_layouts/fluid-no-sub-nav.html +0 -11
- data/_layouts/fluid.html +0 -15
- data/_layouts/home-shape.html +0 -18
- data/_layouts/home.html +0 -18
- data/_layouts/product-display-page.html +0 -262
- data/_layouts/project-display-page.html +0 -28
- data/_sass/_bootstrap-compass.scss +0 -9
- data/_sass/_bootstrap-mincer.scss +0 -19
- data/_sass/_bootstrap-sprockets.scss +0 -9
- data/_sass/_bootstrap.scss +0 -56
- data/_sass/bootstrap/_alerts.scss +0 -73
- data/_sass/bootstrap/_badges.scss +0 -68
- data/_sass/bootstrap/_breadcrumbs.scss +0 -28
- data/_sass/bootstrap/_button-groups.scss +0 -244
- data/_sass/bootstrap/_component-animations.scss +0 -37
- data/_sass/bootstrap/_dropdowns.scss +0 -216
- data/_sass/bootstrap/_glyphicons.scss +0 -307
- data/_sass/bootstrap/_input-groups.scss +0 -171
- data/_sass/bootstrap/_labels.scss +0 -66
- data/_sass/bootstrap/_modals.scss +0 -150
- data/_sass/bootstrap/_navs.scss +0 -242
- data/_sass/bootstrap/_normalize.scss +0 -424
- data/_sass/bootstrap/_pager.scss +0 -54
- data/_sass/bootstrap/_panels.scss +0 -271
- data/_sass/bootstrap/_popovers.scss +0 -131
- data/_sass/bootstrap/_progress-bars.scss +0 -87
- data/_sass/bootstrap/_responsive-utilities.scss +0 -179
- data/_sass/bootstrap/_scaffolding.scss +0 -161
- data/_sass/bootstrap/_theme.scss +0 -291
- data/_sass/bootstrap/_thumbnails.scss +0 -38
- data/_sass/bootstrap/_wells.scss +0 -29
- data/_sass/bootstrap/mixins/_alerts.scss +0 -14
- data/_sass/bootstrap/mixins/_center-block.scss +0 -7
- data/_sass/bootstrap/mixins/_hide-text.scss +0 -21
- data/_sass/bootstrap/mixins/_labels.scss +0 -12
- data/_sass/bootstrap/mixins/_nav-vertical-align.scss +0 -9
- data/_sass/bootstrap/mixins/_opacity.scss +0 -8
- data/_sass/bootstrap/mixins/_panels.scss +0 -24
- data/_sass/bootstrap/mixins/_progress-bar.scss +0 -10
- data/_sass/bootstrap/mixins/_reset-filter.scss +0 -8
- data/_sass/bootstrap/mixins/_responsive-visibility.scss +0 -21
- data/_sass/bootstrap/mixins/_tab-focus.scss +0 -9
- data/_sass/bootstrap/mixins/_vendor-prefixes.scss +0 -222
- data/_sass/core/animations.scss +0 -125
- data/_sass/core/cookieconsent.scss +0 -42
- data/_sass/core/custom.scss +0 -3
- data/_sass/core/fa.scss +0 -2336
- data/_sass/core/flipclock.scss +0 -435
- data/_sass/core/font-awesome.min.scss +0 -4
- data/_sass/core/fonts.scss +0 -7
- data/_sass/core/homepage.scss +0 -40
- data/_sass/core/lightbox.scss +0 -213
- data/_sass/core/nav.scss +0 -657
- data/_sass/core/openhours.scss +0 -51
- data/_sass/core/products.scss +0 -221
- data/_sass/core/projects.scss +0 -32
- data/_sass/core/social-media-icons.scss +0 -71
- data/_sass/core/tables.scss +0 -125
- data/assets/css/main-blog.scss +0 -19
- data/assets/css/main-home.scss +0 -16
- data/assets/css/main-lightbox.scss +0 -22
- data/assets/css/main-openhours.scss +0 -19
- data/assets/css/main-products.scss +0 -20
- data/assets/css/main-projects.scss +0 -20
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +0 -2671
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/fonts/fontello.eot +0 -0
- data/assets/fonts/fontello.svg +0 -44
- data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/images/96boards-Logo.svg +0 -1
- data/assets/images/Linaro-Logo_light.png +0 -0
- data/assets/images/Linaro-Sprinkle.svg +0 -13
- data/assets/images/background-image.jpg +0 -0
- data/assets/images/banner.jpg +0 -0
- data/assets/images/css3.png +0 -0
- data/assets/images/html5.png +0 -0
- data/assets/images/jekyll.svg +0 -1
- data/assets/images/js.jpeg +0 -0
- data/assets/images/placeholder.png +0 -0
- data/assets/js/app/search.js +0 -41
- data/assets/js/app/sticky.js +0 -76
- data/assets/js/app/tables.js +0 -8
- data/assets/js/vendor/bootstrap.min.js +0 -7
- data/assets/js/vendor/cognito-forms.js +0 -150
- data/assets/js/vendor/cookieconsent.min.js +0 -8
- data/assets/js/vendor/flipclock.min.js +0 -35
- data/assets/js/vendor/jquery.min.js +0 -4
- data/assets/js/vendor/lazysizes.min.js +0 -2
- data/assets/js/vendor/lightbox.min.js +0 -14
- data/assets/js/vendor/mc-validate.js +0 -14
- data/assets/js/vendor/owl.carousel.min.js +0 -27
@@ -1,37 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Component animations
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
// Heads up!
|
6
|
-
//
|
7
|
-
// We don't use the `.opacity()` mixin here since it causes a bug with text
|
8
|
-
// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
|
9
|
-
|
10
|
-
.fade {
|
11
|
-
opacity: 0;
|
12
|
-
@include transition(opacity .15s linear);
|
13
|
-
&.in {
|
14
|
-
opacity: 1;
|
15
|
-
}
|
16
|
-
}
|
17
|
-
|
18
|
-
.collapse {
|
19
|
-
display: none;
|
20
|
-
|
21
|
-
&.in { display: block; }
|
22
|
-
// [converter] extracted tr&.in to tr.collapse.in
|
23
|
-
// [converter] extracted tbody&.in to tbody.collapse.in
|
24
|
-
}
|
25
|
-
|
26
|
-
tr.collapse.in { display: table-row; }
|
27
|
-
|
28
|
-
tbody.collapse.in { display: table-row-group; }
|
29
|
-
|
30
|
-
.collapsing {
|
31
|
-
position: relative;
|
32
|
-
height: 0;
|
33
|
-
overflow: hidden;
|
34
|
-
@include transition-property(height, visibility);
|
35
|
-
@include transition-duration(.35s);
|
36
|
-
@include transition-timing-function(ease);
|
37
|
-
}
|
@@ -1,216 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Dropdown menus
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
// Dropdown arrow/caret
|
7
|
-
.caret {
|
8
|
-
display: inline-block;
|
9
|
-
width: 0;
|
10
|
-
height: 0;
|
11
|
-
margin-left: 2px;
|
12
|
-
vertical-align: middle;
|
13
|
-
border-top: $caret-width-base dashed;
|
14
|
-
border-top: $caret-width-base solid \9; // IE8
|
15
|
-
border-right: $caret-width-base solid transparent;
|
16
|
-
border-left: $caret-width-base solid transparent;
|
17
|
-
}
|
18
|
-
|
19
|
-
// The dropdown wrapper (div)
|
20
|
-
.dropup,
|
21
|
-
.dropdown {
|
22
|
-
position: relative;
|
23
|
-
}
|
24
|
-
|
25
|
-
// Prevent the focus on the dropdown toggle when closing dropdowns
|
26
|
-
.dropdown-toggle:focus {
|
27
|
-
outline: 0;
|
28
|
-
}
|
29
|
-
|
30
|
-
// The dropdown menu (ul)
|
31
|
-
.dropdown-menu {
|
32
|
-
position: absolute;
|
33
|
-
top: 100%;
|
34
|
-
left: 0;
|
35
|
-
z-index: $zindex-dropdown;
|
36
|
-
display: none; // none by default, but block on "open" of the menu
|
37
|
-
float: left;
|
38
|
-
min-width: 160px;
|
39
|
-
padding: 5px 0;
|
40
|
-
margin: 2px 0 0; // override default ul
|
41
|
-
list-style: none;
|
42
|
-
font-size: $font-size-base;
|
43
|
-
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
44
|
-
background-color: $dropdown-bg;
|
45
|
-
border: 1px solid $dropdown-fallback-border; // IE8 fallback
|
46
|
-
border: 1px solid $dropdown-border;
|
47
|
-
border-radius: $border-radius-base;
|
48
|
-
@include box-shadow(0 6px 12px rgba(0,0,0,.175));
|
49
|
-
background-clip: padding-box;
|
50
|
-
|
51
|
-
// Aligns the dropdown menu to right
|
52
|
-
//
|
53
|
-
// Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
|
54
|
-
&.pull-right {
|
55
|
-
right: 0;
|
56
|
-
left: auto;
|
57
|
-
}
|
58
|
-
|
59
|
-
// Dividers (basically an hr) within the dropdown
|
60
|
-
.divider {
|
61
|
-
@include nav-divider($dropdown-divider-bg);
|
62
|
-
}
|
63
|
-
|
64
|
-
// Links within the dropdown menu
|
65
|
-
> li > a {
|
66
|
-
display: block;
|
67
|
-
padding: 3px 20px;
|
68
|
-
clear: both;
|
69
|
-
font-weight: normal;
|
70
|
-
line-height: $line-height-base;
|
71
|
-
color: $dropdown-link-color;
|
72
|
-
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
73
|
-
}
|
74
|
-
}
|
75
|
-
|
76
|
-
// Hover/Focus state
|
77
|
-
.dropdown-menu > li > a {
|
78
|
-
&:hover,
|
79
|
-
&:focus {
|
80
|
-
text-decoration: none;
|
81
|
-
color: $dropdown-link-hover-color;
|
82
|
-
background-color: $dropdown-link-hover-bg;
|
83
|
-
}
|
84
|
-
}
|
85
|
-
|
86
|
-
// Active state
|
87
|
-
.dropdown-menu > .active > a {
|
88
|
-
&,
|
89
|
-
&:hover,
|
90
|
-
&:focus {
|
91
|
-
color: $dropdown-link-active-color;
|
92
|
-
text-decoration: none;
|
93
|
-
outline: 0;
|
94
|
-
background-color: $dropdown-link-active-bg;
|
95
|
-
}
|
96
|
-
}
|
97
|
-
|
98
|
-
// Disabled state
|
99
|
-
//
|
100
|
-
// Gray out text and ensure the hover/focus state remains gray
|
101
|
-
|
102
|
-
.dropdown-menu > .disabled > a {
|
103
|
-
&,
|
104
|
-
&:hover,
|
105
|
-
&:focus {
|
106
|
-
color: $dropdown-link-disabled-color;
|
107
|
-
}
|
108
|
-
|
109
|
-
// Nuke hover/focus effects
|
110
|
-
&:hover,
|
111
|
-
&:focus {
|
112
|
-
text-decoration: none;
|
113
|
-
background-color: transparent;
|
114
|
-
background-image: none; // Remove CSS gradient
|
115
|
-
@include reset-filter;
|
116
|
-
cursor: $cursor-disabled;
|
117
|
-
}
|
118
|
-
}
|
119
|
-
|
120
|
-
// Open state for the dropdown
|
121
|
-
.open {
|
122
|
-
// Show the menu
|
123
|
-
> .dropdown-menu {
|
124
|
-
display: block;
|
125
|
-
}
|
126
|
-
|
127
|
-
// Remove the outline when :focus is triggered
|
128
|
-
> a {
|
129
|
-
outline: 0;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
|
133
|
-
// Menu positioning
|
134
|
-
//
|
135
|
-
// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
|
136
|
-
// menu with the parent.
|
137
|
-
.dropdown-menu-right {
|
138
|
-
left: auto; // Reset the default from `.dropdown-menu`
|
139
|
-
right: 0;
|
140
|
-
}
|
141
|
-
// With v3, we enabled auto-flipping if you have a dropdown within a right
|
142
|
-
// aligned nav component. To enable the undoing of that, we provide an override
|
143
|
-
// to restore the default dropdown menu alignment.
|
144
|
-
//
|
145
|
-
// This is only for left-aligning a dropdown menu within a `.navbar-right` or
|
146
|
-
// `.pull-right` nav component.
|
147
|
-
.dropdown-menu-left {
|
148
|
-
left: 0;
|
149
|
-
right: auto;
|
150
|
-
}
|
151
|
-
|
152
|
-
// Dropdown section headers
|
153
|
-
.dropdown-header {
|
154
|
-
display: block;
|
155
|
-
padding: 3px 20px;
|
156
|
-
font-size: $font-size-small;
|
157
|
-
line-height: $line-height-base;
|
158
|
-
color: $dropdown-header-color;
|
159
|
-
white-space: nowrap; // as with > li > a
|
160
|
-
}
|
161
|
-
|
162
|
-
// Backdrop to catch body clicks on mobile, etc.
|
163
|
-
.dropdown-backdrop {
|
164
|
-
position: fixed;
|
165
|
-
left: 0;
|
166
|
-
right: 0;
|
167
|
-
bottom: 0;
|
168
|
-
top: 0;
|
169
|
-
z-index: ($zindex-dropdown - 10);
|
170
|
-
}
|
171
|
-
|
172
|
-
// Right aligned dropdowns
|
173
|
-
.pull-right > .dropdown-menu {
|
174
|
-
right: 0;
|
175
|
-
left: auto;
|
176
|
-
}
|
177
|
-
|
178
|
-
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
179
|
-
//
|
180
|
-
// Just add .dropup after the standard .dropdown class and you're set, bro.
|
181
|
-
// TODO: abstract this so that the navbar fixed styles are not placed here?
|
182
|
-
|
183
|
-
.dropup,
|
184
|
-
.navbar-fixed-bottom .dropdown {
|
185
|
-
// Reverse the caret
|
186
|
-
.caret {
|
187
|
-
border-top: 0;
|
188
|
-
border-bottom: $caret-width-base dashed;
|
189
|
-
border-bottom: $caret-width-base solid \9; // IE8
|
190
|
-
content: "";
|
191
|
-
}
|
192
|
-
// Different positioning for bottom up menu
|
193
|
-
.dropdown-menu {
|
194
|
-
top: auto;
|
195
|
-
bottom: 100%;
|
196
|
-
margin-bottom: 2px;
|
197
|
-
}
|
198
|
-
}
|
199
|
-
|
200
|
-
|
201
|
-
// Component alignment
|
202
|
-
//
|
203
|
-
// Reiterate per navbar.less and the modified component alignment there.
|
204
|
-
|
205
|
-
@media (min-width: $grid-float-breakpoint) {
|
206
|
-
.navbar-right {
|
207
|
-
.dropdown-menu {
|
208
|
-
right: 0; left: auto;
|
209
|
-
}
|
210
|
-
// Necessary for overrides of the default right aligned menu.
|
211
|
-
// Will remove come v4 in all likelihood.
|
212
|
-
.dropdown-menu-left {
|
213
|
-
left: 0; right: auto;
|
214
|
-
}
|
215
|
-
}
|
216
|
-
}
|
@@ -1,307 +0,0 @@
|
|
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
|
-
@at-root {
|
11
|
-
// Import the fonts
|
12
|
-
@font-face {
|
13
|
-
font-family: 'Glyphicons Halflings';
|
14
|
-
src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot'), '#{$icon-font-path}#{$icon-font-name}.eot'));
|
15
|
-
src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot?#iefix'), '#{$icon-font-path}#{$icon-font-name}.eot?#iefix')) format('embedded-opentype'),
|
16
|
-
url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.woff2'), '#{$icon-font-path}#{$icon-font-name}.woff2')) format('woff2'),
|
17
|
-
url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.woff'), '#{$icon-font-path}#{$icon-font-name}.woff')) format('woff'),
|
18
|
-
url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.ttf'), '#{$icon-font-path}#{$icon-font-name}.ttf')) format('truetype'),
|
19
|
-
url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}'), '#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}')) format('svg');
|
20
|
-
}
|
21
|
-
}
|
22
|
-
|
23
|
-
// Catchall baseclass
|
24
|
-
.glyphicon {
|
25
|
-
position: relative;
|
26
|
-
top: 1px;
|
27
|
-
display: inline-block;
|
28
|
-
font-family: 'Glyphicons Halflings';
|
29
|
-
font-style: normal;
|
30
|
-
font-weight: normal;
|
31
|
-
line-height: 1;
|
32
|
-
-webkit-font-smoothing: antialiased;
|
33
|
-
-moz-osx-font-smoothing: grayscale;
|
34
|
-
}
|
35
|
-
|
36
|
-
// Individual icons
|
37
|
-
.glyphicon-asterisk { &:before { content: "\002a"; } }
|
38
|
-
.glyphicon-plus { &:before { content: "\002b"; } }
|
39
|
-
.glyphicon-euro,
|
40
|
-
.glyphicon-eur { &:before { content: "\20ac"; } }
|
41
|
-
.glyphicon-minus { &:before { content: "\2212"; } }
|
42
|
-
.glyphicon-cloud { &:before { content: "\2601"; } }
|
43
|
-
.glyphicon-envelope { &:before { content: "\2709"; } }
|
44
|
-
.glyphicon-pencil { &:before { content: "\270f"; } }
|
45
|
-
.glyphicon-glass { &:before { content: "\e001"; } }
|
46
|
-
.glyphicon-music { &:before { content: "\e002"; } }
|
47
|
-
.glyphicon-search { &:before { content: "\e003"; } }
|
48
|
-
.glyphicon-heart { &:before { content: "\e005"; } }
|
49
|
-
.glyphicon-star { &:before { content: "\e006"; } }
|
50
|
-
.glyphicon-star-empty { &:before { content: "\e007"; } }
|
51
|
-
.glyphicon-user { &:before { content: "\e008"; } }
|
52
|
-
.glyphicon-film { &:before { content: "\e009"; } }
|
53
|
-
.glyphicon-th-large { &:before { content: "\e010"; } }
|
54
|
-
.glyphicon-th { &:before { content: "\e011"; } }
|
55
|
-
.glyphicon-th-list { &:before { content: "\e012"; } }
|
56
|
-
.glyphicon-ok { &:before { content: "\e013"; } }
|
57
|
-
.glyphicon-remove { &:before { content: "\e014"; } }
|
58
|
-
.glyphicon-zoom-in { &:before { content: "\e015"; } }
|
59
|
-
.glyphicon-zoom-out { &:before { content: "\e016"; } }
|
60
|
-
.glyphicon-off { &:before { content: "\e017"; } }
|
61
|
-
.glyphicon-signal { &:before { content: "\e018"; } }
|
62
|
-
.glyphicon-cog { &:before { content: "\e019"; } }
|
63
|
-
.glyphicon-trash { &:before { content: "\e020"; } }
|
64
|
-
.glyphicon-home { &:before { content: "\e021"; } }
|
65
|
-
.glyphicon-file { &:before { content: "\e022"; } }
|
66
|
-
.glyphicon-time { &:before { content: "\e023"; } }
|
67
|
-
.glyphicon-road { &:before { content: "\e024"; } }
|
68
|
-
.glyphicon-download-alt { &:before { content: "\e025"; } }
|
69
|
-
.glyphicon-download { &:before { content: "\e026"; } }
|
70
|
-
.glyphicon-upload { &:before { content: "\e027"; } }
|
71
|
-
.glyphicon-inbox { &:before { content: "\e028"; } }
|
72
|
-
.glyphicon-play-circle { &:before { content: "\e029"; } }
|
73
|
-
.glyphicon-repeat { &:before { content: "\e030"; } }
|
74
|
-
.glyphicon-refresh { &:before { content: "\e031"; } }
|
75
|
-
.glyphicon-list-alt { &:before { content: "\e032"; } }
|
76
|
-
.glyphicon-lock { &:before { content: "\e033"; } }
|
77
|
-
.glyphicon-flag { &:before { content: "\e034"; } }
|
78
|
-
.glyphicon-headphones { &:before { content: "\e035"; } }
|
79
|
-
.glyphicon-volume-off { &:before { content: "\e036"; } }
|
80
|
-
.glyphicon-volume-down { &:before { content: "\e037"; } }
|
81
|
-
.glyphicon-volume-up { &:before { content: "\e038"; } }
|
82
|
-
.glyphicon-qrcode { &:before { content: "\e039"; } }
|
83
|
-
.glyphicon-barcode { &:before { content: "\e040"; } }
|
84
|
-
.glyphicon-tag { &:before { content: "\e041"; } }
|
85
|
-
.glyphicon-tags { &:before { content: "\e042"; } }
|
86
|
-
.glyphicon-book { &:before { content: "\e043"; } }
|
87
|
-
.glyphicon-bookmark { &:before { content: "\e044"; } }
|
88
|
-
.glyphicon-print { &:before { content: "\e045"; } }
|
89
|
-
.glyphicon-camera { &:before { content: "\e046"; } }
|
90
|
-
.glyphicon-font { &:before { content: "\e047"; } }
|
91
|
-
.glyphicon-bold { &:before { content: "\e048"; } }
|
92
|
-
.glyphicon-italic { &:before { content: "\e049"; } }
|
93
|
-
.glyphicon-text-height { &:before { content: "\e050"; } }
|
94
|
-
.glyphicon-text-width { &:before { content: "\e051"; } }
|
95
|
-
.glyphicon-align-left { &:before { content: "\e052"; } }
|
96
|
-
.glyphicon-align-center { &:before { content: "\e053"; } }
|
97
|
-
.glyphicon-align-right { &:before { content: "\e054"; } }
|
98
|
-
.glyphicon-align-justify { &:before { content: "\e055"; } }
|
99
|
-
.glyphicon-list { &:before { content: "\e056"; } }
|
100
|
-
.glyphicon-indent-left { &:before { content: "\e057"; } }
|
101
|
-
.glyphicon-indent-right { &:before { content: "\e058"; } }
|
102
|
-
.glyphicon-facetime-video { &:before { content: "\e059"; } }
|
103
|
-
.glyphicon-picture { &:before { content: "\e060"; } }
|
104
|
-
.glyphicon-map-marker { &:before { content: "\e062"; } }
|
105
|
-
.glyphicon-adjust { &:before { content: "\e063"; } }
|
106
|
-
.glyphicon-tint { &:before { content: "\e064"; } }
|
107
|
-
.glyphicon-edit { &:before { content: "\e065"; } }
|
108
|
-
.glyphicon-share { &:before { content: "\e066"; } }
|
109
|
-
.glyphicon-check { &:before { content: "\e067"; } }
|
110
|
-
.glyphicon-move { &:before { content: "\e068"; } }
|
111
|
-
.glyphicon-step-backward { &:before { content: "\e069"; } }
|
112
|
-
.glyphicon-fast-backward { &:before { content: "\e070"; } }
|
113
|
-
.glyphicon-backward { &:before { content: "\e071"; } }
|
114
|
-
.glyphicon-play { &:before { content: "\e072"; } }
|
115
|
-
.glyphicon-pause { &:before { content: "\e073"; } }
|
116
|
-
.glyphicon-stop { &:before { content: "\e074"; } }
|
117
|
-
.glyphicon-forward { &:before { content: "\e075"; } }
|
118
|
-
.glyphicon-fast-forward { &:before { content: "\e076"; } }
|
119
|
-
.glyphicon-step-forward { &:before { content: "\e077"; } }
|
120
|
-
.glyphicon-eject { &:before { content: "\e078"; } }
|
121
|
-
.glyphicon-chevron-left { &:before { content: "\e079"; } }
|
122
|
-
.glyphicon-chevron-right { &:before { content: "\e080"; } }
|
123
|
-
.glyphicon-plus-sign { &:before { content: "\e081"; } }
|
124
|
-
.glyphicon-minus-sign { &:before { content: "\e082"; } }
|
125
|
-
.glyphicon-remove-sign { &:before { content: "\e083"; } }
|
126
|
-
.glyphicon-ok-sign { &:before { content: "\e084"; } }
|
127
|
-
.glyphicon-question-sign { &:before { content: "\e085"; } }
|
128
|
-
.glyphicon-info-sign { &:before { content: "\e086"; } }
|
129
|
-
.glyphicon-screenshot { &:before { content: "\e087"; } }
|
130
|
-
.glyphicon-remove-circle { &:before { content: "\e088"; } }
|
131
|
-
.glyphicon-ok-circle { &:before { content: "\e089"; } }
|
132
|
-
.glyphicon-ban-circle { &:before { content: "\e090"; } }
|
133
|
-
.glyphicon-arrow-left { &:before { content: "\e091"; } }
|
134
|
-
.glyphicon-arrow-right { &:before { content: "\e092"; } }
|
135
|
-
.glyphicon-arrow-up { &:before { content: "\e093"; } }
|
136
|
-
.glyphicon-arrow-down { &:before { content: "\e094"; } }
|
137
|
-
.glyphicon-share-alt { &:before { content: "\e095"; } }
|
138
|
-
.glyphicon-resize-full { &:before { content: "\e096"; } }
|
139
|
-
.glyphicon-resize-small { &:before { content: "\e097"; } }
|
140
|
-
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
|
141
|
-
.glyphicon-gift { &:before { content: "\e102"; } }
|
142
|
-
.glyphicon-leaf { &:before { content: "\e103"; } }
|
143
|
-
.glyphicon-fire { &:before { content: "\e104"; } }
|
144
|
-
.glyphicon-eye-open { &:before { content: "\e105"; } }
|
145
|
-
.glyphicon-eye-close { &:before { content: "\e106"; } }
|
146
|
-
.glyphicon-warning-sign { &:before { content: "\e107"; } }
|
147
|
-
.glyphicon-plane { &:before { content: "\e108"; } }
|
148
|
-
.glyphicon-calendar { &:before { content: "\e109"; } }
|
149
|
-
.glyphicon-random { &:before { content: "\e110"; } }
|
150
|
-
.glyphicon-comment { &:before { content: "\e111"; } }
|
151
|
-
.glyphicon-magnet { &:before { content: "\e112"; } }
|
152
|
-
.glyphicon-chevron-up { &:before { content: "\e113"; } }
|
153
|
-
.glyphicon-chevron-down { &:before { content: "\e114"; } }
|
154
|
-
.glyphicon-retweet { &:before { content: "\e115"; } }
|
155
|
-
.glyphicon-shopping-cart { &:before { content: "\e116"; } }
|
156
|
-
.glyphicon-folder-close { &:before { content: "\e117"; } }
|
157
|
-
.glyphicon-folder-open { &:before { content: "\e118"; } }
|
158
|
-
.glyphicon-resize-vertical { &:before { content: "\e119"; } }
|
159
|
-
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
|
160
|
-
.glyphicon-hdd { &:before { content: "\e121"; } }
|
161
|
-
.glyphicon-bullhorn { &:before { content: "\e122"; } }
|
162
|
-
.glyphicon-bell { &:before { content: "\e123"; } }
|
163
|
-
.glyphicon-certificate { &:before { content: "\e124"; } }
|
164
|
-
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
|
165
|
-
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
|
166
|
-
.glyphicon-hand-right { &:before { content: "\e127"; } }
|
167
|
-
.glyphicon-hand-left { &:before { content: "\e128"; } }
|
168
|
-
.glyphicon-hand-up { &:before { content: "\e129"; } }
|
169
|
-
.glyphicon-hand-down { &:before { content: "\e130"; } }
|
170
|
-
.glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
|
171
|
-
.glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
|
172
|
-
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
|
173
|
-
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
|
174
|
-
.glyphicon-globe { &:before { content: "\e135"; } }
|
175
|
-
.glyphicon-wrench { &:before { content: "\e136"; } }
|
176
|
-
.glyphicon-tasks { &:before { content: "\e137"; } }
|
177
|
-
.glyphicon-filter { &:before { content: "\e138"; } }
|
178
|
-
.glyphicon-briefcase { &:before { content: "\e139"; } }
|
179
|
-
.glyphicon-fullscreen { &:before { content: "\e140"; } }
|
180
|
-
.glyphicon-dashboard { &:before { content: "\e141"; } }
|
181
|
-
.glyphicon-paperclip { &:before { content: "\e142"; } }
|
182
|
-
.glyphicon-heart-empty { &:before { content: "\e143"; } }
|
183
|
-
.glyphicon-link { &:before { content: "\e144"; } }
|
184
|
-
.glyphicon-phone { &:before { content: "\e145"; } }
|
185
|
-
.glyphicon-pushpin { &:before { content: "\e146"; } }
|
186
|
-
.glyphicon-usd { &:before { content: "\e148"; } }
|
187
|
-
.glyphicon-gbp { &:before { content: "\e149"; } }
|
188
|
-
.glyphicon-sort { &:before { content: "\e150"; } }
|
189
|
-
.glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
|
190
|
-
.glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
|
191
|
-
.glyphicon-sort-by-order { &:before { content: "\e153"; } }
|
192
|
-
.glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
|
193
|
-
.glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
|
194
|
-
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
|
195
|
-
.glyphicon-unchecked { &:before { content: "\e157"; } }
|
196
|
-
.glyphicon-expand { &:before { content: "\e158"; } }
|
197
|
-
.glyphicon-collapse-down { &:before { content: "\e159"; } }
|
198
|
-
.glyphicon-collapse-up { &:before { content: "\e160"; } }
|
199
|
-
.glyphicon-log-in { &:before { content: "\e161"; } }
|
200
|
-
.glyphicon-flash { &:before { content: "\e162"; } }
|
201
|
-
.glyphicon-log-out { &:before { content: "\e163"; } }
|
202
|
-
.glyphicon-new-window { &:before { content: "\e164"; } }
|
203
|
-
.glyphicon-record { &:before { content: "\e165"; } }
|
204
|
-
.glyphicon-save { &:before { content: "\e166"; } }
|
205
|
-
.glyphicon-open { &:before { content: "\e167"; } }
|
206
|
-
.glyphicon-saved { &:before { content: "\e168"; } }
|
207
|
-
.glyphicon-import { &:before { content: "\e169"; } }
|
208
|
-
.glyphicon-export { &:before { content: "\e170"; } }
|
209
|
-
.glyphicon-send { &:before { content: "\e171"; } }
|
210
|
-
.glyphicon-floppy-disk { &:before { content: "\e172"; } }
|
211
|
-
.glyphicon-floppy-saved { &:before { content: "\e173"; } }
|
212
|
-
.glyphicon-floppy-remove { &:before { content: "\e174"; } }
|
213
|
-
.glyphicon-floppy-save { &:before { content: "\e175"; } }
|
214
|
-
.glyphicon-floppy-open { &:before { content: "\e176"; } }
|
215
|
-
.glyphicon-credit-card { &:before { content: "\e177"; } }
|
216
|
-
.glyphicon-transfer { &:before { content: "\e178"; } }
|
217
|
-
.glyphicon-cutlery { &:before { content: "\e179"; } }
|
218
|
-
.glyphicon-header { &:before { content: "\e180"; } }
|
219
|
-
.glyphicon-compressed { &:before { content: "\e181"; } }
|
220
|
-
.glyphicon-earphone { &:before { content: "\e182"; } }
|
221
|
-
.glyphicon-phone-alt { &:before { content: "\e183"; } }
|
222
|
-
.glyphicon-tower { &:before { content: "\e184"; } }
|
223
|
-
.glyphicon-stats { &:before { content: "\e185"; } }
|
224
|
-
.glyphicon-sd-video { &:before { content: "\e186"; } }
|
225
|
-
.glyphicon-hd-video { &:before { content: "\e187"; } }
|
226
|
-
.glyphicon-subtitles { &:before { content: "\e188"; } }
|
227
|
-
.glyphicon-sound-stereo { &:before { content: "\e189"; } }
|
228
|
-
.glyphicon-sound-dolby { &:before { content: "\e190"; } }
|
229
|
-
.glyphicon-sound-5-1 { &:before { content: "\e191"; } }
|
230
|
-
.glyphicon-sound-6-1 { &:before { content: "\e192"; } }
|
231
|
-
.glyphicon-sound-7-1 { &:before { content: "\e193"; } }
|
232
|
-
.glyphicon-copyright-mark { &:before { content: "\e194"; } }
|
233
|
-
.glyphicon-registration-mark { &:before { content: "\e195"; } }
|
234
|
-
.glyphicon-cloud-download { &:before { content: "\e197"; } }
|
235
|
-
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
236
|
-
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
237
|
-
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
238
|
-
.glyphicon-cd { &:before { content: "\e201"; } }
|
239
|
-
.glyphicon-save-file { &:before { content: "\e202"; } }
|
240
|
-
.glyphicon-open-file { &:before { content: "\e203"; } }
|
241
|
-
.glyphicon-level-up { &:before { content: "\e204"; } }
|
242
|
-
.glyphicon-copy { &:before { content: "\e205"; } }
|
243
|
-
.glyphicon-paste { &:before { content: "\e206"; } }
|
244
|
-
// The following 2 Glyphicons are omitted for the time being because
|
245
|
-
// they currently use Unicode codepoints that are outside the
|
246
|
-
// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
|
247
|
-
// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
|
248
|
-
// Notably, the bug affects some older versions of the Android Browser.
|
249
|
-
// More info: https://github.com/twbs/bootstrap/issues/10106
|
250
|
-
// .glyphicon-door { &:before { content: "\1f6aa"; } }
|
251
|
-
// .glyphicon-key { &:before { content: "\1f511"; } }
|
252
|
-
.glyphicon-alert { &:before { content: "\e209"; } }
|
253
|
-
.glyphicon-equalizer { &:before { content: "\e210"; } }
|
254
|
-
.glyphicon-king { &:before { content: "\e211"; } }
|
255
|
-
.glyphicon-queen { &:before { content: "\e212"; } }
|
256
|
-
.glyphicon-pawn { &:before { content: "\e213"; } }
|
257
|
-
.glyphicon-bishop { &:before { content: "\e214"; } }
|
258
|
-
.glyphicon-knight { &:before { content: "\e215"; } }
|
259
|
-
.glyphicon-baby-formula { &:before { content: "\e216"; } }
|
260
|
-
.glyphicon-tent { &:before { content: "\26fa"; } }
|
261
|
-
.glyphicon-blackboard { &:before { content: "\e218"; } }
|
262
|
-
.glyphicon-bed { &:before { content: "\e219"; } }
|
263
|
-
.glyphicon-apple { &:before { content: "\f8ff"; } }
|
264
|
-
.glyphicon-erase { &:before { content: "\e221"; } }
|
265
|
-
.glyphicon-hourglass { &:before { content: "\231b"; } }
|
266
|
-
.glyphicon-lamp { &:before { content: "\e223"; } }
|
267
|
-
.glyphicon-duplicate { &:before { content: "\e224"; } }
|
268
|
-
.glyphicon-piggy-bank { &:before { content: "\e225"; } }
|
269
|
-
.glyphicon-scissors { &:before { content: "\e226"; } }
|
270
|
-
.glyphicon-bitcoin { &:before { content: "\e227"; } }
|
271
|
-
.glyphicon-btc { &:before { content: "\e227"; } }
|
272
|
-
.glyphicon-xbt { &:before { content: "\e227"; } }
|
273
|
-
.glyphicon-yen { &:before { content: "\00a5"; } }
|
274
|
-
.glyphicon-jpy { &:before { content: "\00a5"; } }
|
275
|
-
.glyphicon-ruble { &:before { content: "\20bd"; } }
|
276
|
-
.glyphicon-rub { &:before { content: "\20bd"; } }
|
277
|
-
.glyphicon-scale { &:before { content: "\e230"; } }
|
278
|
-
.glyphicon-ice-lolly { &:before { content: "\e231"; } }
|
279
|
-
.glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }
|
280
|
-
.glyphicon-education { &:before { content: "\e233"; } }
|
281
|
-
.glyphicon-option-horizontal { &:before { content: "\e234"; } }
|
282
|
-
.glyphicon-option-vertical { &:before { content: "\e235"; } }
|
283
|
-
.glyphicon-menu-hamburger { &:before { content: "\e236"; } }
|
284
|
-
.glyphicon-modal-window { &:before { content: "\e237"; } }
|
285
|
-
.glyphicon-oil { &:before { content: "\e238"; } }
|
286
|
-
.glyphicon-grain { &:before { content: "\e239"; } }
|
287
|
-
.glyphicon-sunglasses { &:before { content: "\e240"; } }
|
288
|
-
.glyphicon-text-size { &:before { content: "\e241"; } }
|
289
|
-
.glyphicon-text-color { &:before { content: "\e242"; } }
|
290
|
-
.glyphicon-text-background { &:before { content: "\e243"; } }
|
291
|
-
.glyphicon-object-align-top { &:before { content: "\e244"; } }
|
292
|
-
.glyphicon-object-align-bottom { &:before { content: "\e245"; } }
|
293
|
-
.glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
|
294
|
-
.glyphicon-object-align-left { &:before { content: "\e247"; } }
|
295
|
-
.glyphicon-object-align-vertical { &:before { content: "\e248"; } }
|
296
|
-
.glyphicon-object-align-right { &:before { content: "\e249"; } }
|
297
|
-
.glyphicon-triangle-right { &:before { content: "\e250"; } }
|
298
|
-
.glyphicon-triangle-left { &:before { content: "\e251"; } }
|
299
|
-
.glyphicon-triangle-bottom { &:before { content: "\e252"; } }
|
300
|
-
.glyphicon-triangle-top { &:before { content: "\e253"; } }
|
301
|
-
.glyphicon-console { &:before { content: "\e254"; } }
|
302
|
-
.glyphicon-superscript { &:before { content: "\e255"; } }
|
303
|
-
.glyphicon-subscript { &:before { content: "\e256"; } }
|
304
|
-
.glyphicon-menu-left { &:before { content: "\e257"; } }
|
305
|
-
.glyphicon-menu-right { &:before { content: "\e258"; } }
|
306
|
-
.glyphicon-menu-down { &:before { content: "\e259"; } }
|
307
|
-
.glyphicon-menu-up { &:before { content: "\e260"; } }
|