linaro-jekyll-theme 1.1 → 4.1.0
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 +131 -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/blog/tags.html +67 -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 +66 -0
- data/_includes/components/http2.html +57 -0
- data/_includes/components/javascript.html +10 -0
- data/_includes/components/jumbotron.html +83 -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 +75 -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 +253 -327
- data/_sass/core/bootstrap-multiselect.scss +1 -0
- data/_sass/core/breadcrumb.scss +16 -88
- data/_sass/core/carousel-header.scss +91 -0
- data/_sass/core/carousel-styles.scss +1 -0
- data/_sass/core/carousel.scss +188 -28
- 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 -132
- 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 -440
- 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/core/forms.scss → assets/js/app/custom.js} +0 -0
- data/assets/js/app/main.js +384 -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 -274
- 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 -35
- data/_includes/_theme-includes/_navigation/nav.html +0 -128
- 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/_layouts/redirect.html +0 -11
- 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 -45
- data/_sass/core/lightbox.scss +0 -213
- data/_sass/core/nav.scss +0 -723
- data/_sass/core/old-search.scss +0 -239
- 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/_sass/core/youtube.scss +0 -65
- data/_sass/custom.scss +0 -0
- 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/loadCSS.js +0 -79
- data/assets/js/vendor/mc-validate.js +0 -14
- data/assets/js/vendor/owl.carousel.min.js +0 -27
data/_sass/bootstrap/_close.scss
CHANGED
@@ -1,36 +1,35 @@
|
|
1
|
-
//
|
2
|
-
// Close icons
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
1
|
.close {
|
7
2
|
float: right;
|
8
|
-
font-size:
|
3
|
+
font-size: $close-font-size;
|
9
4
|
font-weight: $close-font-weight;
|
10
5
|
line-height: 1;
|
11
6
|
color: $close-color;
|
12
7
|
text-shadow: $close-text-shadow;
|
13
|
-
|
8
|
+
opacity: .5;
|
9
|
+
|
10
|
+
&:not(:disabled):not(.disabled) {
|
14
11
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
12
|
+
@include hover-focus {
|
13
|
+
color: $close-color;
|
14
|
+
text-decoration: none;
|
15
|
+
opacity: .75;
|
16
|
+
}
|
17
|
+
|
18
|
+
// Opinionated: add "hand" cursor to non-disabled .close elements
|
19
19
|
cursor: pointer;
|
20
|
-
@include opacity(.5);
|
21
20
|
}
|
22
|
-
|
23
|
-
// [converter] extracted button& to button.close
|
24
21
|
}
|
25
22
|
|
26
23
|
// Additional properties for button version
|
27
24
|
// iOS requires the button element instead of an anchor tag.
|
28
25
|
// If you want the anchor version, it requires `href="#"`.
|
29
26
|
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
27
|
+
|
28
|
+
// stylelint-disable property-no-vendor-prefix, selector-no-qualifying-type
|
30
29
|
button.close {
|
31
30
|
padding: 0;
|
32
|
-
|
33
|
-
background: transparent;
|
31
|
+
background-color: transparent;
|
34
32
|
border: 0;
|
35
33
|
-webkit-appearance: none;
|
36
34
|
}
|
35
|
+
// stylelint-enable
|
data/_sass/bootstrap/_code.scss
CHANGED
@@ -1,64 +1,43 @@
|
|
1
|
-
//
|
2
|
-
// Code (inline and block)
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
// Inline and block code styles
|
7
|
-
code,
|
8
|
-
kbd,
|
9
|
-
pre,
|
10
|
-
samp {
|
11
|
-
font-family: $font-family-monospace;
|
12
|
-
}
|
13
|
-
|
14
1
|
// Inline code
|
15
2
|
code {
|
16
|
-
|
17
|
-
font-size: 90%;
|
3
|
+
font-size: $code-font-size;
|
18
4
|
color: $code-color;
|
19
|
-
|
20
|
-
|
5
|
+
word-break: break-word;
|
6
|
+
|
7
|
+
// Streamline the style when inside anchors to avoid broken underline and more
|
8
|
+
a > & {
|
9
|
+
color: inherit;
|
10
|
+
}
|
21
11
|
}
|
22
12
|
|
23
13
|
// User input typically entered via keyboard
|
24
14
|
kbd {
|
25
|
-
padding:
|
26
|
-
font-size:
|
15
|
+
padding: $kbd-padding-y $kbd-padding-x;
|
16
|
+
font-size: $kbd-font-size;
|
27
17
|
color: $kbd-color;
|
28
18
|
background-color: $kbd-bg;
|
29
|
-
border-radius
|
30
|
-
box-shadow
|
19
|
+
@include border-radius($border-radius-sm);
|
20
|
+
@include box-shadow($kbd-box-shadow);
|
31
21
|
|
32
22
|
kbd {
|
33
23
|
padding: 0;
|
34
24
|
font-size: 100%;
|
35
|
-
font-weight:
|
36
|
-
box-shadow
|
25
|
+
font-weight: $nested-kbd-font-weight;
|
26
|
+
@include box-shadow(none);
|
37
27
|
}
|
38
28
|
}
|
39
29
|
|
40
30
|
// Blocks of code
|
41
31
|
pre {
|
42
32
|
display: block;
|
43
|
-
|
44
|
-
margin: 0 0 ($line-height-computed / 2);
|
45
|
-
font-size: ($font-size-base - 1); // 14px to 13px
|
46
|
-
line-height: $line-height-base;
|
47
|
-
word-break: break-all;
|
48
|
-
word-wrap: break-word;
|
33
|
+
font-size: $code-font-size;
|
49
34
|
color: $pre-color;
|
50
|
-
background-color: $pre-bg;
|
51
|
-
border: 1px solid $pre-border-color;
|
52
|
-
border-radius: $border-radius-base;
|
53
35
|
|
54
36
|
// Account for some code outputs that place code tags in pre tags
|
55
37
|
code {
|
56
|
-
padding: 0;
|
57
38
|
font-size: inherit;
|
58
39
|
color: inherit;
|
59
|
-
|
60
|
-
background-color: transparent;
|
61
|
-
border-radius: 0;
|
40
|
+
word-break: normal;
|
62
41
|
}
|
63
42
|
}
|
64
43
|
|
@@ -0,0 +1,433 @@
|
|
1
|
+
// Embedded icons from Open Iconic.
|
2
|
+
// Released under MIT and copyright 2014 Waybury.
|
3
|
+
// https://useiconic.com/open
|
4
|
+
|
5
|
+
|
6
|
+
// Checkboxes and radios
|
7
|
+
//
|
8
|
+
// Base class takes care of all the key behavioral aspects.
|
9
|
+
|
10
|
+
.custom-control {
|
11
|
+
position: relative;
|
12
|
+
display: block;
|
13
|
+
min-height: ($font-size-base * $line-height-base);
|
14
|
+
padding-left: $custom-control-gutter;
|
15
|
+
}
|
16
|
+
|
17
|
+
.custom-control-inline {
|
18
|
+
display: inline-flex;
|
19
|
+
margin-right: $custom-control-spacer-x;
|
20
|
+
}
|
21
|
+
|
22
|
+
.custom-control-input {
|
23
|
+
position: absolute;
|
24
|
+
z-index: -1; // Put the input behind the label so it doesn't overlay text
|
25
|
+
opacity: 0;
|
26
|
+
|
27
|
+
&:checked ~ .custom-control-label::before {
|
28
|
+
color: $custom-control-indicator-checked-color;
|
29
|
+
@include gradient-bg($custom-control-indicator-checked-bg);
|
30
|
+
@include box-shadow($custom-control-indicator-checked-box-shadow);
|
31
|
+
}
|
32
|
+
|
33
|
+
&:focus ~ .custom-control-label::before {
|
34
|
+
// the mixin is not used here to make sure there is feedback
|
35
|
+
box-shadow: $custom-control-indicator-focus-box-shadow;
|
36
|
+
}
|
37
|
+
|
38
|
+
&:active ~ .custom-control-label::before {
|
39
|
+
color: $custom-control-indicator-active-color;
|
40
|
+
background-color: $custom-control-indicator-active-bg;
|
41
|
+
@include box-shadow($custom-control-indicator-active-box-shadow);
|
42
|
+
}
|
43
|
+
|
44
|
+
&:disabled {
|
45
|
+
~ .custom-control-label {
|
46
|
+
color: $custom-control-label-disabled-color;
|
47
|
+
|
48
|
+
&::before {
|
49
|
+
background-color: $custom-control-indicator-disabled-bg;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
// Custom control indicators
|
56
|
+
//
|
57
|
+
// Build the custom controls out of pseudo-elements.
|
58
|
+
|
59
|
+
.custom-control-label {
|
60
|
+
position: relative;
|
61
|
+
margin-bottom: 0;
|
62
|
+
|
63
|
+
// Background-color and (when enabled) gradient
|
64
|
+
&::before {
|
65
|
+
position: absolute;
|
66
|
+
top: (($font-size-base * $line-height-base - $custom-control-indicator-size) / 2);
|
67
|
+
left: -$custom-control-gutter;
|
68
|
+
display: block;
|
69
|
+
width: $custom-control-indicator-size;
|
70
|
+
height: $custom-control-indicator-size;
|
71
|
+
pointer-events: none;
|
72
|
+
content: "";
|
73
|
+
user-select: none;
|
74
|
+
background-color: $custom-control-indicator-bg;
|
75
|
+
@include box-shadow($custom-control-indicator-box-shadow);
|
76
|
+
}
|
77
|
+
|
78
|
+
// Foreground (icon)
|
79
|
+
&::after {
|
80
|
+
position: absolute;
|
81
|
+
top: (($font-size-base * $line-height-base - $custom-control-indicator-size) / 2);
|
82
|
+
left: -$custom-control-gutter;
|
83
|
+
display: block;
|
84
|
+
width: $custom-control-indicator-size;
|
85
|
+
height: $custom-control-indicator-size;
|
86
|
+
content: "";
|
87
|
+
background-repeat: no-repeat;
|
88
|
+
background-position: center center;
|
89
|
+
background-size: $custom-control-indicator-bg-size;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
|
94
|
+
// Checkboxes
|
95
|
+
//
|
96
|
+
// Tweak just a few things for checkboxes.
|
97
|
+
|
98
|
+
.custom-checkbox {
|
99
|
+
.custom-control-label::before {
|
100
|
+
@include border-radius($custom-checkbox-indicator-border-radius);
|
101
|
+
}
|
102
|
+
|
103
|
+
.custom-control-input:checked ~ .custom-control-label {
|
104
|
+
&::before {
|
105
|
+
@include gradient-bg($custom-control-indicator-checked-bg);
|
106
|
+
}
|
107
|
+
&::after {
|
108
|
+
background-image: $custom-checkbox-indicator-icon-checked;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
.custom-control-input:indeterminate ~ .custom-control-label {
|
113
|
+
&::before {
|
114
|
+
@include gradient-bg($custom-checkbox-indicator-indeterminate-bg);
|
115
|
+
@include box-shadow($custom-checkbox-indicator-indeterminate-box-shadow);
|
116
|
+
}
|
117
|
+
&::after {
|
118
|
+
background-image: $custom-checkbox-indicator-icon-indeterminate;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
|
122
|
+
.custom-control-input:disabled {
|
123
|
+
&:checked ~ .custom-control-label::before {
|
124
|
+
background-color: $custom-control-indicator-checked-disabled-bg;
|
125
|
+
}
|
126
|
+
&:indeterminate ~ .custom-control-label::before {
|
127
|
+
background-color: $custom-control-indicator-checked-disabled-bg;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
// Radios
|
133
|
+
//
|
134
|
+
// Tweak just a few things for radios.
|
135
|
+
|
136
|
+
.custom-radio {
|
137
|
+
.custom-control-label::before {
|
138
|
+
border-radius: $custom-radio-indicator-border-radius;
|
139
|
+
}
|
140
|
+
|
141
|
+
.custom-control-input:checked ~ .custom-control-label {
|
142
|
+
&::before {
|
143
|
+
@include gradient-bg($custom-control-indicator-checked-bg);
|
144
|
+
}
|
145
|
+
&::after {
|
146
|
+
background-image: $custom-radio-indicator-icon-checked;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
.custom-control-input:disabled {
|
151
|
+
&:checked ~ .custom-control-label::before {
|
152
|
+
background-color: $custom-control-indicator-checked-disabled-bg;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
}
|
156
|
+
|
157
|
+
|
158
|
+
// Select
|
159
|
+
//
|
160
|
+
// Replaces the browser default select with a custom one, mostly pulled from
|
161
|
+
// https://primer.github.io/.
|
162
|
+
//
|
163
|
+
|
164
|
+
.custom-select {
|
165
|
+
display: inline-block;
|
166
|
+
width: 100%;
|
167
|
+
height: $custom-select-height;
|
168
|
+
padding: $custom-select-padding-y ($custom-select-padding-x + $custom-select-indicator-padding) $custom-select-padding-y $custom-select-padding-x;
|
169
|
+
line-height: $custom-select-line-height;
|
170
|
+
color: $custom-select-color;
|
171
|
+
vertical-align: middle;
|
172
|
+
background: $custom-select-bg $custom-select-indicator no-repeat right $custom-select-padding-x center;
|
173
|
+
background-size: $custom-select-bg-size;
|
174
|
+
border: $custom-select-border-width solid $custom-select-border-color;
|
175
|
+
@if $enable-rounded {
|
176
|
+
border-radius: $custom-select-border-radius;
|
177
|
+
} @else {
|
178
|
+
border-radius: 0;
|
179
|
+
}
|
180
|
+
@include box-shadow($custom-select-box-shadow);
|
181
|
+
appearance: none;
|
182
|
+
|
183
|
+
&:focus {
|
184
|
+
border-color: $custom-select-focus-border-color;
|
185
|
+
outline: 0;
|
186
|
+
@if $enable-shadows {
|
187
|
+
box-shadow: $custom-select-box-shadow, $custom-select-focus-box-shadow;
|
188
|
+
} @else {
|
189
|
+
box-shadow: $custom-select-focus-box-shadow;
|
190
|
+
}
|
191
|
+
|
192
|
+
&::-ms-value {
|
193
|
+
// For visual consistency with other platforms/browsers,
|
194
|
+
// suppress the default white text on blue background highlight given to
|
195
|
+
// the selected option text when the (still closed) <select> receives focus
|
196
|
+
// in IE and (under certain conditions) Edge.
|
197
|
+
// See https://github.com/twbs/bootstrap/issues/19398.
|
198
|
+
color: $input-color;
|
199
|
+
background-color: $input-bg;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
&[multiple],
|
204
|
+
&[size]:not([size="1"]) {
|
205
|
+
height: auto;
|
206
|
+
padding-right: $custom-select-padding-x;
|
207
|
+
background-image: none;
|
208
|
+
}
|
209
|
+
|
210
|
+
&:disabled {
|
211
|
+
color: $custom-select-disabled-color;
|
212
|
+
background-color: $custom-select-disabled-bg;
|
213
|
+
}
|
214
|
+
|
215
|
+
// Hides the default caret in IE11
|
216
|
+
&::-ms-expand {
|
217
|
+
opacity: 0;
|
218
|
+
}
|
219
|
+
}
|
220
|
+
|
221
|
+
.custom-select-sm {
|
222
|
+
height: $custom-select-height-sm;
|
223
|
+
padding-top: $custom-select-padding-y;
|
224
|
+
padding-bottom: $custom-select-padding-y;
|
225
|
+
font-size: $custom-select-font-size-sm;
|
226
|
+
}
|
227
|
+
|
228
|
+
.custom-select-lg {
|
229
|
+
height: $custom-select-height-lg;
|
230
|
+
padding-top: $custom-select-padding-y;
|
231
|
+
padding-bottom: $custom-select-padding-y;
|
232
|
+
font-size: $custom-select-font-size-lg;
|
233
|
+
}
|
234
|
+
|
235
|
+
|
236
|
+
// File
|
237
|
+
//
|
238
|
+
// Custom file input.
|
239
|
+
|
240
|
+
.custom-file {
|
241
|
+
position: relative;
|
242
|
+
display: inline-block;
|
243
|
+
width: 100%;
|
244
|
+
height: $custom-file-height;
|
245
|
+
margin-bottom: 0;
|
246
|
+
}
|
247
|
+
|
248
|
+
.custom-file-input {
|
249
|
+
position: relative;
|
250
|
+
z-index: 2;
|
251
|
+
width: 100%;
|
252
|
+
height: $custom-file-height;
|
253
|
+
margin: 0;
|
254
|
+
opacity: 0;
|
255
|
+
|
256
|
+
&:focus ~ .custom-file-label {
|
257
|
+
border-color: $custom-file-focus-border-color;
|
258
|
+
box-shadow: $custom-file-focus-box-shadow;
|
259
|
+
|
260
|
+
&::after {
|
261
|
+
border-color: $custom-file-focus-border-color;
|
262
|
+
}
|
263
|
+
}
|
264
|
+
|
265
|
+
&:disabled ~ .custom-file-label {
|
266
|
+
background-color: $custom-file-disabled-bg;
|
267
|
+
}
|
268
|
+
|
269
|
+
@each $lang, $value in $custom-file-text {
|
270
|
+
&:lang(#{$lang}) ~ .custom-file-label::after {
|
271
|
+
content: $value;
|
272
|
+
}
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
.custom-file-label {
|
277
|
+
position: absolute;
|
278
|
+
top: 0;
|
279
|
+
right: 0;
|
280
|
+
left: 0;
|
281
|
+
z-index: 1;
|
282
|
+
height: $custom-file-height;
|
283
|
+
padding: $custom-file-padding-y $custom-file-padding-x;
|
284
|
+
line-height: $custom-file-line-height;
|
285
|
+
color: $custom-file-color;
|
286
|
+
background-color: $custom-file-bg;
|
287
|
+
border: $custom-file-border-width solid $custom-file-border-color;
|
288
|
+
@include border-radius($custom-file-border-radius);
|
289
|
+
@include box-shadow($custom-file-box-shadow);
|
290
|
+
|
291
|
+
&::after {
|
292
|
+
position: absolute;
|
293
|
+
top: 0;
|
294
|
+
right: 0;
|
295
|
+
bottom: 0;
|
296
|
+
z-index: 3;
|
297
|
+
display: block;
|
298
|
+
height: $custom-file-height-inner;
|
299
|
+
padding: $custom-file-padding-y $custom-file-padding-x;
|
300
|
+
line-height: $custom-file-line-height;
|
301
|
+
color: $custom-file-button-color;
|
302
|
+
content: "Browse";
|
303
|
+
@include gradient-bg($custom-file-button-bg);
|
304
|
+
border-left: $custom-file-border-width solid $custom-file-border-color;
|
305
|
+
@include border-radius(0 $custom-file-border-radius $custom-file-border-radius 0);
|
306
|
+
}
|
307
|
+
}
|
308
|
+
|
309
|
+
// Range
|
310
|
+
//
|
311
|
+
// Style range inputs the same across browsers. Vendor-specific rules for pseudo
|
312
|
+
// elements cannot be mixed. As such, there are no shared styles for focus or
|
313
|
+
// active states on prefixed selectors.
|
314
|
+
|
315
|
+
.custom-range {
|
316
|
+
width: 100%;
|
317
|
+
padding-left: 0; // Firefox specific
|
318
|
+
background-color: transparent;
|
319
|
+
appearance: none;
|
320
|
+
|
321
|
+
&:focus {
|
322
|
+
outline: none;
|
323
|
+
|
324
|
+
// Pseudo-elements must be split across multiple rulesets to have an affect.
|
325
|
+
// No box-shadow() mixin for focus accessibility.
|
326
|
+
&::-webkit-slider-thumb { box-shadow: $custom-range-thumb-focus-box-shadow; }
|
327
|
+
&::-moz-range-thumb { box-shadow: $custom-range-thumb-focus-box-shadow; }
|
328
|
+
&::-ms-thumb { box-shadow: $custom-range-thumb-focus-box-shadow; }
|
329
|
+
}
|
330
|
+
|
331
|
+
&::-moz-focus-outer {
|
332
|
+
border: 0;
|
333
|
+
}
|
334
|
+
|
335
|
+
&::-webkit-slider-thumb {
|
336
|
+
width: $custom-range-thumb-width;
|
337
|
+
height: $custom-range-thumb-height;
|
338
|
+
margin-top: (($custom-range-track-height - $custom-range-thumb-height) / 2); // Webkit specific
|
339
|
+
@include gradient-bg($custom-range-thumb-bg);
|
340
|
+
border: $custom-range-thumb-border;
|
341
|
+
@include border-radius($custom-range-thumb-border-radius);
|
342
|
+
@include box-shadow($custom-range-thumb-box-shadow);
|
343
|
+
@include transition($custom-forms-transition);
|
344
|
+
appearance: none;
|
345
|
+
|
346
|
+
&:active {
|
347
|
+
@include gradient-bg($custom-range-thumb-active-bg);
|
348
|
+
}
|
349
|
+
}
|
350
|
+
|
351
|
+
&::-webkit-slider-runnable-track {
|
352
|
+
width: $custom-range-track-width;
|
353
|
+
height: $custom-range-track-height;
|
354
|
+
color: transparent; // Why?
|
355
|
+
cursor: $custom-range-track-cursor;
|
356
|
+
background-color: $custom-range-track-bg;
|
357
|
+
border-color: transparent;
|
358
|
+
@include border-radius($custom-range-track-border-radius);
|
359
|
+
@include box-shadow($custom-range-track-box-shadow);
|
360
|
+
}
|
361
|
+
|
362
|
+
&::-moz-range-thumb {
|
363
|
+
width: $custom-range-thumb-width;
|
364
|
+
height: $custom-range-thumb-height;
|
365
|
+
@include gradient-bg($custom-range-thumb-bg);
|
366
|
+
border: $custom-range-thumb-border;
|
367
|
+
@include border-radius($custom-range-thumb-border-radius);
|
368
|
+
@include box-shadow($custom-range-thumb-box-shadow);
|
369
|
+
@include transition($custom-forms-transition);
|
370
|
+
appearance: none;
|
371
|
+
|
372
|
+
&:active {
|
373
|
+
@include gradient-bg($custom-range-thumb-active-bg);
|
374
|
+
}
|
375
|
+
}
|
376
|
+
|
377
|
+
&::-moz-range-track {
|
378
|
+
width: $custom-range-track-width;
|
379
|
+
height: $custom-range-track-height;
|
380
|
+
color: transparent;
|
381
|
+
cursor: $custom-range-track-cursor;
|
382
|
+
background-color: $custom-range-track-bg;
|
383
|
+
border-color: transparent; // Firefox specific?
|
384
|
+
@include border-radius($custom-range-track-border-radius);
|
385
|
+
@include box-shadow($custom-range-track-box-shadow);
|
386
|
+
}
|
387
|
+
|
388
|
+
&::-ms-thumb {
|
389
|
+
width: $custom-range-thumb-width;
|
390
|
+
height: $custom-range-thumb-height;
|
391
|
+
margin-top: 0; // Edge specific
|
392
|
+
margin-right: $custom-range-thumb-focus-box-shadow-width; // Workaround that overflowed box-shadow is hidden.
|
393
|
+
margin-left: $custom-range-thumb-focus-box-shadow-width; // Workaround that overflowed box-shadow is hidden.
|
394
|
+
@include gradient-bg($custom-range-thumb-bg);
|
395
|
+
border: $custom-range-thumb-border;
|
396
|
+
@include border-radius($custom-range-thumb-border-radius);
|
397
|
+
@include box-shadow($custom-range-thumb-box-shadow);
|
398
|
+
@include transition($custom-forms-transition);
|
399
|
+
appearance: none;
|
400
|
+
|
401
|
+
&:active {
|
402
|
+
@include gradient-bg($custom-range-thumb-active-bg);
|
403
|
+
}
|
404
|
+
}
|
405
|
+
|
406
|
+
&::-ms-track {
|
407
|
+
width: $custom-range-track-width;
|
408
|
+
height: $custom-range-track-height;
|
409
|
+
color: transparent;
|
410
|
+
cursor: $custom-range-track-cursor;
|
411
|
+
background-color: transparent;
|
412
|
+
border-color: transparent;
|
413
|
+
border-width: ($custom-range-thumb-height * .5);
|
414
|
+
@include box-shadow($custom-range-track-box-shadow);
|
415
|
+
}
|
416
|
+
|
417
|
+
&::-ms-fill-lower {
|
418
|
+
background-color: $custom-range-track-bg;
|
419
|
+
@include border-radius($custom-range-track-border-radius);
|
420
|
+
}
|
421
|
+
|
422
|
+
&::-ms-fill-upper {
|
423
|
+
margin-right: 15px; // arbitrary?
|
424
|
+
background-color: $custom-range-track-bg;
|
425
|
+
@include border-radius($custom-range-track-border-radius);
|
426
|
+
}
|
427
|
+
}
|
428
|
+
|
429
|
+
.custom-control-label::before,
|
430
|
+
.custom-file-label,
|
431
|
+
.custom-select {
|
432
|
+
@include transition($custom-forms-transition);
|
433
|
+
}
|