linaro-jekyll-theme 0.10.149 → 4.0.1
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.
- 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
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Custom rules for your website can be defined here. */
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// Theses are the Overrides of Bootstrap Sass Variables locatted in boostrap/_variables
|
|
2
|
+
$primary: rgb(110, 53, 148);
|
|
3
|
+
$secondary: #575757;
|
|
4
|
+
$theme-colors: (
|
|
5
|
+
"primary": $primary,
|
|
6
|
+
"secondary": $secondary,
|
|
7
|
+
"danger": #ff4136
|
|
8
|
+
);
|
|
9
|
+
// Universal Navbar
|
|
10
|
+
$universal_navbar_height_padding: 0px;
|
|
11
|
+
$universal_navbar_text_color: #fff;
|
|
12
|
+
$universal_navbar_bg_color: $primary;
|
|
13
|
+
// Main Navbar
|
|
14
|
+
$navbar_height_padding: 5px;
|
|
15
|
+
$navbar_text_color: #575757;
|
|
16
|
+
$navbar_bg_color: #fff;
|
|
17
|
+
// Jumbotron
|
|
18
|
+
$jumbotron_bg_color: lightgray;
|
|
19
|
+
$jumbotron_height: 350px;
|
|
20
|
+
// Typography
|
|
21
|
+
@font-face {
|
|
22
|
+
font-display: fallback;
|
|
23
|
+
font-family: 'Lato';
|
|
24
|
+
src: url('/assets/fonts/lato/Lato-regular.eot'); /* IE9 Compat Modes */
|
|
25
|
+
src: url('/assets/fonts/lato/Lato-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
|
26
|
+
url('/assets/fonts/lato/Lato-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
|
27
|
+
url('/assets/fonts/lato/Lato-regular.woff') format('woff'), /* Pretty Modern Browsers */
|
|
28
|
+
url('/assets/fonts/lato/Lato-regular.ttf') format('truetype'), /* Safari, Android, iOS */
|
|
29
|
+
url('/assets/fonts/lato/Lato-regular.svg') format('svg'); /* Legacy iOS */
|
|
30
|
+
}
|
|
31
|
+
// Fonts
|
|
32
|
+
$font-family-base: "Lato";
|
|
33
|
+
// Footer
|
|
34
|
+
$footer_bg_color: #00000b;
|
|
35
|
+
$footer_strip_bg_color: $secondary;
|
|
36
|
+
// Flow
|
|
37
|
+
$flow_row_padding: 10px;
|
|
38
|
+
$flow_component_padding: 15px;
|
|
39
|
+
// Cookie Consent
|
|
40
|
+
$cookie_consent_bg: #000;
|
|
41
|
+
$cookie_consent_text_color: #fff;
|
|
42
|
+
// Breadcrumb
|
|
43
|
+
$breadcrumb_bg_color: #e9ecef;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.fessWrapper .pagination > .active > a, .fessWrapper .pagination > .active > a:focus, .fessWrapper .pagination > .active > a:hover, .fessWrapper .pagination > .active > span, .fessWrapper .pagination > .active > span:focus, .fessWrapper .pagination > .active > span:hover {
|
|
2
|
+
z-index: 2;
|
|
3
|
+
color: #fff;
|
|
4
|
+
cursor: default;
|
|
5
|
+
background-color: $primary;
|
|
6
|
+
border-color: $primary;
|
|
7
|
+
}
|
|
8
|
+
.fessWrapper .pagination > li > a, .fessWrapper .pagination > li > span {
|
|
9
|
+
position: relative;
|
|
10
|
+
float: left;
|
|
11
|
+
padding: .5rem .75rem;
|
|
12
|
+
margin-left: -1px;
|
|
13
|
+
line-height: 1.5;
|
|
14
|
+
color: #939393;
|
|
15
|
+
text-decoration: none;
|
|
16
|
+
background-color: #fff;
|
|
17
|
+
border: 1px solid #ddd;
|
|
18
|
+
}
|
|
19
|
+
#content-container .fessWrapper .pagination > li > a, #content-container .fessWrapper .pagination > li > span {
|
|
20
|
+
position: relative;
|
|
21
|
+
float: left;
|
|
22
|
+
padding: .5rem .75rem;
|
|
23
|
+
margin-left: -1px;
|
|
24
|
+
line-height: 1.5;
|
|
25
|
+
color: #808080;
|
|
26
|
+
text-decoration: none;
|
|
27
|
+
background-color: #fff;
|
|
28
|
+
border: 1px solid #ddd;
|
|
29
|
+
}
|
|
30
|
+
#content-container .fessWrapper a {
|
|
31
|
+
color: $primary;
|
|
32
|
+
text-decoration: none;
|
|
33
|
+
}
|
|
34
|
+
#content-container .fessWrapper #result .body cite {
|
|
35
|
+
color: #a7a7a7;
|
|
36
|
+
font-style: normal;
|
|
37
|
+
}
|
|
38
|
+
.fessWrapper tbody > tr> td {
|
|
39
|
+
height: 100%;
|
|
40
|
+
padding: 0px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.fessWrapper table{
|
|
44
|
+
border-bottom:none;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.fessWrapper .searchButton {
|
|
48
|
+
background-color: $primary;
|
|
49
|
+
height: 38px;
|
|
50
|
+
width: 100%;
|
|
51
|
+
}
|
data/_sass/blog.scss
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Base styles
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
.alert {
|
|
6
|
+
position: relative;
|
|
7
|
+
padding: $alert-padding-y $alert-padding-x;
|
|
8
|
+
margin-bottom: $alert-margin-bottom;
|
|
9
|
+
border: $alert-border-width solid transparent;
|
|
10
|
+
@include border-radius($alert-border-radius);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// Headings for larger alerts
|
|
14
|
+
.alert-heading {
|
|
15
|
+
// Specified to prevent conflicts of changing $headings-color
|
|
16
|
+
color: inherit;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Provide class for links that match alerts
|
|
20
|
+
.alert-link {
|
|
21
|
+
font-weight: $alert-link-font-weight;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
// Dismissible alerts
|
|
26
|
+
//
|
|
27
|
+
// Expand the right padding and account for the close button's positioning.
|
|
28
|
+
|
|
29
|
+
.alert-dismissible {
|
|
30
|
+
padding-right: ($close-font-size + $alert-padding-x * 2);
|
|
31
|
+
|
|
32
|
+
// Adjust close link position
|
|
33
|
+
.close {
|
|
34
|
+
position: absolute;
|
|
35
|
+
top: 0;
|
|
36
|
+
right: 0;
|
|
37
|
+
padding: $alert-padding-y $alert-padding-x;
|
|
38
|
+
color: inherit;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
// Alternate styles
|
|
44
|
+
//
|
|
45
|
+
// Generate contextual modifier classes for colorizing the alert.
|
|
46
|
+
|
|
47
|
+
@each $color, $value in $theme-colors {
|
|
48
|
+
.alert-#{$color} {
|
|
49
|
+
@include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level));
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// Base class
|
|
2
|
+
//
|
|
3
|
+
// Requires one of the contextual, color modifier classes for `color` and
|
|
4
|
+
// `background-color`.
|
|
5
|
+
|
|
6
|
+
.badge {
|
|
7
|
+
display: inline-block;
|
|
8
|
+
padding: $badge-padding-y $badge-padding-x;
|
|
9
|
+
font-size: $badge-font-size;
|
|
10
|
+
font-weight: $badge-font-weight;
|
|
11
|
+
line-height: 1;
|
|
12
|
+
text-align: center;
|
|
13
|
+
white-space: nowrap;
|
|
14
|
+
vertical-align: baseline;
|
|
15
|
+
@include border-radius($badge-border-radius);
|
|
16
|
+
|
|
17
|
+
// Empty badges collapse automatically
|
|
18
|
+
&:empty {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Quick fix for badges in buttons
|
|
24
|
+
.btn .badge {
|
|
25
|
+
position: relative;
|
|
26
|
+
top: -1px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Pill badges
|
|
30
|
+
//
|
|
31
|
+
// Make them extra rounded with a modifier to replace v3's badges.
|
|
32
|
+
|
|
33
|
+
.badge-pill {
|
|
34
|
+
padding-right: $badge-pill-padding-x;
|
|
35
|
+
padding-left: $badge-pill-padding-x;
|
|
36
|
+
@include border-radius($badge-pill-border-radius);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Colors
|
|
40
|
+
//
|
|
41
|
+
// Contextual variations (linked badges get darker on :hover).
|
|
42
|
+
|
|
43
|
+
@each $color, $value in $theme-colors {
|
|
44
|
+
.badge-#{$color} {
|
|
45
|
+
@include badge-variant($value);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
.breadcrumb {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
padding: $breadcrumb-padding-y $breadcrumb-padding-x;
|
|
5
|
+
margin-bottom: $breadcrumb-margin-bottom;
|
|
6
|
+
list-style: none;
|
|
7
|
+
background-color: $breadcrumb-bg;
|
|
8
|
+
@include border-radius($breadcrumb-border-radius);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.breadcrumb-item {
|
|
12
|
+
// The separator between breadcrumbs (by default, a forward-slash: "/")
|
|
13
|
+
+ .breadcrumb-item {
|
|
14
|
+
padding-left: $breadcrumb-item-padding;
|
|
15
|
+
|
|
16
|
+
&::before {
|
|
17
|
+
display: inline-block; // Suppress underlining of the separator in modern browsers
|
|
18
|
+
padding-right: $breadcrumb-item-padding;
|
|
19
|
+
color: $breadcrumb-divider-color;
|
|
20
|
+
content: $breadcrumb-divider;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
|
|
25
|
+
// without `<ul>`s. The `::before` pseudo-element generates an element
|
|
26
|
+
// *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
|
|
27
|
+
//
|
|
28
|
+
// To trick IE into suppressing the underline, we give the pseudo-element an
|
|
29
|
+
// underline and then immediately remove it.
|
|
30
|
+
+ .breadcrumb-item:hover::before {
|
|
31
|
+
text-decoration: underline;
|
|
32
|
+
}
|
|
33
|
+
// stylelint-disable-next-line no-duplicate-selectors
|
|
34
|
+
+ .breadcrumb-item:hover::before {
|
|
35
|
+
text-decoration: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.active {
|
|
39
|
+
color: $breadcrumb-active-color;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
// stylelint-disable selector-no-qualifying-type
|
|
2
|
+
|
|
3
|
+
// Make the div behave like a button
|
|
4
|
+
.btn-group,
|
|
5
|
+
.btn-group-vertical {
|
|
6
|
+
position: relative;
|
|
7
|
+
display: inline-flex;
|
|
8
|
+
vertical-align: middle; // match .btn alignment given font-size hack above
|
|
9
|
+
|
|
10
|
+
> .btn {
|
|
11
|
+
position: relative;
|
|
12
|
+
flex: 0 1 auto;
|
|
13
|
+
|
|
14
|
+
// Bring the hover, focused, and "active" buttons to the front to overlay
|
|
15
|
+
// the borders properly
|
|
16
|
+
@include hover {
|
|
17
|
+
z-index: 1;
|
|
18
|
+
}
|
|
19
|
+
&:focus,
|
|
20
|
+
&:active,
|
|
21
|
+
&.active {
|
|
22
|
+
z-index: 1;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Prevent double borders when buttons are next to each other
|
|
27
|
+
.btn + .btn,
|
|
28
|
+
.btn + .btn-group,
|
|
29
|
+
.btn-group + .btn,
|
|
30
|
+
.btn-group + .btn-group {
|
|
31
|
+
margin-left: -$btn-border-width;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Optional: Group multiple button groups together for a toolbar
|
|
36
|
+
.btn-toolbar {
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-wrap: wrap;
|
|
39
|
+
justify-content: flex-start;
|
|
40
|
+
|
|
41
|
+
.input-group {
|
|
42
|
+
width: auto;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.btn-group {
|
|
47
|
+
> .btn:first-child {
|
|
48
|
+
margin-left: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Reset rounded corners
|
|
52
|
+
> .btn:not(:last-child):not(.dropdown-toggle),
|
|
53
|
+
> .btn-group:not(:last-child) > .btn {
|
|
54
|
+
@include border-right-radius(0);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
> .btn:not(:first-child),
|
|
58
|
+
> .btn-group:not(:first-child) > .btn {
|
|
59
|
+
@include border-left-radius(0);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Sizing
|
|
64
|
+
//
|
|
65
|
+
// Remix the default button sizing classes into new ones for easier manipulation.
|
|
66
|
+
|
|
67
|
+
.btn-group-sm > .btn { @extend .btn-sm; }
|
|
68
|
+
.btn-group-lg > .btn { @extend .btn-lg; }
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
//
|
|
72
|
+
// Split button dropdowns
|
|
73
|
+
//
|
|
74
|
+
|
|
75
|
+
.dropdown-toggle-split {
|
|
76
|
+
padding-right: $btn-padding-x * .75;
|
|
77
|
+
padding-left: $btn-padding-x * .75;
|
|
78
|
+
|
|
79
|
+
&::after,
|
|
80
|
+
.dropup &::after,
|
|
81
|
+
.dropright &::after {
|
|
82
|
+
margin-left: 0;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.dropleft &::before {
|
|
86
|
+
margin-right: 0;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.btn-sm + .dropdown-toggle-split {
|
|
91
|
+
padding-right: $btn-padding-x-sm * .75;
|
|
92
|
+
padding-left: $btn-padding-x-sm * .75;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.btn-lg + .dropdown-toggle-split {
|
|
96
|
+
padding-right: $btn-padding-x-lg * .75;
|
|
97
|
+
padding-left: $btn-padding-x-lg * .75;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
// The clickable button for toggling the menu
|
|
102
|
+
// Set the same inset shadow as the :active state
|
|
103
|
+
.btn-group.show .dropdown-toggle {
|
|
104
|
+
@include box-shadow($btn-active-box-shadow);
|
|
105
|
+
|
|
106
|
+
// Show no shadow for `.btn-link` since it has no other button styles.
|
|
107
|
+
&.btn-link {
|
|
108
|
+
@include box-shadow(none);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
//
|
|
114
|
+
// Vertical button groups
|
|
115
|
+
//
|
|
116
|
+
|
|
117
|
+
.btn-group-vertical {
|
|
118
|
+
flex-direction: column;
|
|
119
|
+
align-items: flex-start;
|
|
120
|
+
justify-content: center;
|
|
121
|
+
|
|
122
|
+
.btn,
|
|
123
|
+
.btn-group {
|
|
124
|
+
width: 100%;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
> .btn + .btn,
|
|
128
|
+
> .btn + .btn-group,
|
|
129
|
+
> .btn-group + .btn,
|
|
130
|
+
> .btn-group + .btn-group {
|
|
131
|
+
margin-top: -$btn-border-width;
|
|
132
|
+
margin-left: 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// Reset rounded corners
|
|
136
|
+
> .btn:not(:last-child):not(.dropdown-toggle),
|
|
137
|
+
> .btn-group:not(:last-child) > .btn {
|
|
138
|
+
@include border-bottom-radius(0);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
> .btn:not(:first-child),
|
|
142
|
+
> .btn-group:not(:first-child) > .btn {
|
|
143
|
+
@include border-top-radius(0);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
// Checkbox and radio options
|
|
149
|
+
//
|
|
150
|
+
// In order to support the browser's form validation feedback, powered by the
|
|
151
|
+
// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
|
|
152
|
+
// `display: none;` or `visibility: hidden;` as that also hides the popover.
|
|
153
|
+
// Simply visually hiding the inputs via `opacity` would leave them clickable in
|
|
154
|
+
// certain cases which is prevented by using `clip` and `pointer-events`.
|
|
155
|
+
// This way, we ensure a DOM element is visible to position the popover from.
|
|
156
|
+
//
|
|
157
|
+
// See https://github.com/twbs/bootstrap/pull/12794 and
|
|
158
|
+
// https://github.com/twbs/bootstrap/pull/14559 for more information.
|
|
159
|
+
|
|
160
|
+
.btn-group-toggle {
|
|
161
|
+
> .btn,
|
|
162
|
+
> .btn-group > .btn {
|
|
163
|
+
margin-bottom: 0; // Override default `<label>` value
|
|
164
|
+
|
|
165
|
+
input[type="radio"],
|
|
166
|
+
input[type="checkbox"] {
|
|
167
|
+
position: absolute;
|
|
168
|
+
clip: rect(0, 0, 0, 0);
|
|
169
|
+
pointer-events: none;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
@@ -1,161 +1,136 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Buttons
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
1
|
+
// stylelint-disable selector-no-qualifying-type
|
|
5
2
|
|
|
3
|
+
//
|
|
6
4
|
// Base styles
|
|
7
|
-
//
|
|
5
|
+
//
|
|
8
6
|
|
|
9
7
|
.btn {
|
|
10
8
|
display: inline-block;
|
|
11
|
-
margin-bottom: 0; // For input.btn
|
|
12
9
|
font-weight: $btn-font-weight;
|
|
13
10
|
text-align: center;
|
|
14
|
-
vertical-align: middle;
|
|
15
|
-
touch-action: manipulation;
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
|
18
|
-
border: 1px solid transparent;
|
|
19
11
|
white-space: nowrap;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
&.active {
|
|
26
|
-
&:focus,
|
|
27
|
-
&.focus {
|
|
28
|
-
@include tab-focus;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
12
|
+
vertical-align: middle;
|
|
13
|
+
user-select: none;
|
|
14
|
+
border: $btn-border-width solid transparent;
|
|
15
|
+
@include button-size($btn-padding-y, $btn-padding-x, $font-size-base, $btn-line-height, $btn-border-radius);
|
|
16
|
+
@include transition($btn-transition);
|
|
31
17
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
&.focus {
|
|
35
|
-
color: $btn-default-color;
|
|
18
|
+
// Share hover and focus styles
|
|
19
|
+
@include hover-focus {
|
|
36
20
|
text-decoration: none;
|
|
37
21
|
}
|
|
38
22
|
|
|
39
|
-
&:
|
|
40
|
-
&.
|
|
23
|
+
&:focus,
|
|
24
|
+
&.focus {
|
|
41
25
|
outline: 0;
|
|
42
|
-
|
|
43
|
-
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
|
26
|
+
box-shadow: $btn-focus-box-shadow;
|
|
44
27
|
}
|
|
45
28
|
|
|
29
|
+
// Disabled comes first so active can properly restyle
|
|
46
30
|
&.disabled,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
cursor: $cursor-disabled;
|
|
50
|
-
@include opacity(.65);
|
|
31
|
+
&:disabled {
|
|
32
|
+
opacity: $btn-disabled-opacity;
|
|
51
33
|
@include box-shadow(none);
|
|
52
34
|
}
|
|
53
35
|
|
|
54
|
-
//
|
|
55
|
-
|
|
36
|
+
// Opinionated: add "hand" cursor to non-disabled .btn elements
|
|
37
|
+
&:not(:disabled):not(.disabled) {
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
56
40
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
41
|
+
&:not(:disabled):not(.disabled):active,
|
|
42
|
+
&:not(:disabled):not(.disabled).active {
|
|
43
|
+
@include box-shadow($btn-active-box-shadow);
|
|
44
|
+
|
|
45
|
+
&:focus {
|
|
46
|
+
@include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);
|
|
47
|
+
}
|
|
61
48
|
}
|
|
62
49
|
}
|
|
63
50
|
|
|
51
|
+
// Future-proof disabling of clicks on `<a>` elements
|
|
52
|
+
a.btn.disabled,
|
|
53
|
+
fieldset:disabled a.btn {
|
|
54
|
+
pointer-events: none;
|
|
55
|
+
}
|
|
56
|
+
|
|
64
57
|
|
|
58
|
+
//
|
|
65
59
|
// Alternate buttons
|
|
66
|
-
//
|
|
60
|
+
//
|
|
67
61
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
|
|
73
|
-
}
|
|
74
|
-
// Success appears as green
|
|
75
|
-
.btn-success {
|
|
76
|
-
@include button-variant($btn-success-color, $btn-success-bg, $btn-success-border);
|
|
77
|
-
}
|
|
78
|
-
// Info appears as blue-green
|
|
79
|
-
.btn-info {
|
|
80
|
-
@include button-variant($btn-info-color, $btn-info-bg, $btn-info-border);
|
|
81
|
-
}
|
|
82
|
-
// Warning appears as orange
|
|
83
|
-
.btn-warning {
|
|
84
|
-
@include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border);
|
|
62
|
+
@each $color, $value in $theme-colors {
|
|
63
|
+
.btn-#{$color} {
|
|
64
|
+
@include button-variant($value, $value);
|
|
65
|
+
}
|
|
85
66
|
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
67
|
+
|
|
68
|
+
@each $color, $value in $theme-colors {
|
|
69
|
+
.btn-outline-#{$color} {
|
|
70
|
+
@include button-outline-variant($value);
|
|
71
|
+
}
|
|
89
72
|
}
|
|
90
73
|
|
|
91
74
|
|
|
75
|
+
//
|
|
92
76
|
// Link buttons
|
|
93
|
-
//
|
|
77
|
+
//
|
|
94
78
|
|
|
95
79
|
// Make a button look and behave like a link
|
|
96
80
|
.btn-link {
|
|
81
|
+
font-weight: $font-weight-normal;
|
|
97
82
|
color: $link-color;
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
&.active,
|
|
104
|
-
&[disabled],
|
|
105
|
-
fieldset[disabled] & {
|
|
83
|
+
background-color: transparent;
|
|
84
|
+
|
|
85
|
+
@include hover {
|
|
86
|
+
color: $link-hover-color;
|
|
87
|
+
text-decoration: $link-hover-decoration;
|
|
106
88
|
background-color: transparent;
|
|
107
|
-
@include box-shadow(none);
|
|
108
|
-
}
|
|
109
|
-
&,
|
|
110
|
-
&:hover,
|
|
111
|
-
&:focus,
|
|
112
|
-
&:active {
|
|
113
89
|
border-color: transparent;
|
|
114
90
|
}
|
|
115
|
-
|
|
116
|
-
&:focus
|
|
117
|
-
|
|
91
|
+
|
|
92
|
+
&:focus,
|
|
93
|
+
&.focus {
|
|
118
94
|
text-decoration: $link-hover-decoration;
|
|
119
|
-
|
|
95
|
+
border-color: transparent;
|
|
96
|
+
box-shadow: none;
|
|
120
97
|
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
text-decoration: none;
|
|
127
|
-
}
|
|
98
|
+
|
|
99
|
+
&:disabled,
|
|
100
|
+
&.disabled {
|
|
101
|
+
color: $btn-link-disabled-color;
|
|
102
|
+
pointer-events: none;
|
|
128
103
|
}
|
|
104
|
+
|
|
105
|
+
// No need for an active state here
|
|
129
106
|
}
|
|
130
107
|
|
|
131
108
|
|
|
109
|
+
//
|
|
132
110
|
// Button Sizes
|
|
133
|
-
//
|
|
111
|
+
//
|
|
134
112
|
|
|
135
113
|
.btn-lg {
|
|
136
|
-
|
|
137
|
-
@include button-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $btn-border-radius-large);
|
|
114
|
+
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $btn-line-height-lg, $btn-border-radius-lg);
|
|
138
115
|
}
|
|
116
|
+
|
|
139
117
|
.btn-sm {
|
|
140
|
-
|
|
141
|
-
@include button-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $btn-border-radius-small);
|
|
142
|
-
}
|
|
143
|
-
.btn-xs {
|
|
144
|
-
@include button-size($padding-xs-vertical, $padding-xs-horizontal, $font-size-small, $line-height-small, $btn-border-radius-small);
|
|
118
|
+
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-sm, $btn-line-height-sm, $btn-border-radius-sm);
|
|
145
119
|
}
|
|
146
120
|
|
|
147
121
|
|
|
122
|
+
//
|
|
148
123
|
// Block button
|
|
149
|
-
//
|
|
124
|
+
//
|
|
150
125
|
|
|
151
126
|
.btn-block {
|
|
152
127
|
display: block;
|
|
153
128
|
width: 100%;
|
|
154
|
-
}
|
|
155
129
|
|
|
156
|
-
// Vertically space out multiple block buttons
|
|
157
|
-
|
|
158
|
-
|
|
130
|
+
// Vertically space out multiple block buttons
|
|
131
|
+
+ .btn-block {
|
|
132
|
+
margin-top: $btn-block-spacing-y;
|
|
133
|
+
}
|
|
159
134
|
}
|
|
160
135
|
|
|
161
136
|
// Specificity overrides
|