vertx-howtos-jekyll-theme 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_layouts/page.html +61 -0
- data/_sass/bootstrap/js/dist/alert.js +199 -0
- data/_sass/bootstrap/js/dist/alert.js.map +1 -0
- data/_sass/bootstrap/js/dist/button.js +187 -0
- data/_sass/bootstrap/js/dist/button.js.map +1 -0
- data/_sass/bootstrap/js/dist/carousel.js +666 -0
- data/_sass/bootstrap/js/dist/carousel.js.map +1 -0
- data/_sass/bootstrap/js/dist/collapse.js +428 -0
- data/_sass/bootstrap/js/dist/collapse.js.map +1 -0
- data/_sass/bootstrap/js/dist/dropdown.js +591 -0
- data/_sass/bootstrap/js/dist/dropdown.js.map +1 -0
- data/_sass/bootstrap/js/dist/index.js +23 -0
- data/_sass/bootstrap/js/dist/index.js.map +1 -0
- data/_sass/bootstrap/js/dist/modal.js +644 -0
- data/_sass/bootstrap/js/dist/modal.js.map +1 -0
- data/_sass/bootstrap/js/dist/popover.js +261 -0
- data/_sass/bootstrap/js/dist/popover.js.map +1 -0
- data/_sass/bootstrap/js/dist/scrollspy.js +375 -0
- data/_sass/bootstrap/js/dist/scrollspy.js.map +1 -0
- data/_sass/bootstrap/js/dist/tab.js +266 -0
- data/_sass/bootstrap/js/dist/tab.js.map +1 -0
- data/_sass/bootstrap/js/dist/toast.js +278 -0
- data/_sass/bootstrap/js/dist/toast.js.map +1 -0
- data/_sass/bootstrap/js/dist/tooltip.js +745 -0
- data/_sass/bootstrap/js/dist/tooltip.js.map +1 -0
- data/_sass/bootstrap/js/dist/util.js +168 -0
- data/_sass/bootstrap/js/dist/util.js.map +1 -0
- data/_sass/bootstrap/js/src/alert.js +179 -0
- data/_sass/bootstrap/js/src/button.js +171 -0
- data/_sass/bootstrap/js/src/carousel.js +604 -0
- data/_sass/bootstrap/js/src/collapse.js +402 -0
- data/_sass/bootstrap/js/src/dropdown.js +538 -0
- data/_sass/bootstrap/js/src/index.js +52 -0
- data/_sass/bootstrap/js/src/modal.js +587 -0
- data/_sass/bootstrap/js/src/popover.js +184 -0
- data/_sass/bootstrap/js/src/scrollspy.js +326 -0
- data/_sass/bootstrap/js/src/tab.js +257 -0
- data/_sass/bootstrap/js/src/toast.js +223 -0
- data/_sass/bootstrap/js/src/tooltip.js +735 -0
- data/_sass/bootstrap/js/src/util.js +173 -0
- data/_sass/bootstrap/js/tests/README.md +69 -0
- data/_sass/bootstrap/js/tests/browsers.js +82 -0
- data/_sass/bootstrap/js/tests/index.html +145 -0
- data/_sass/bootstrap/js/tests/integration/bundle.js +8 -0
- data/_sass/bootstrap/js/tests/integration/index.html +66 -0
- data/_sass/bootstrap/js/tests/integration/rollup.bundle.js +20 -0
- data/_sass/bootstrap/js/tests/karma.conf.js +145 -0
- data/_sass/bootstrap/js/tests/unit/.eslintrc.json +40 -0
- data/_sass/bootstrap/js/tests/unit/alert.js +123 -0
- data/_sass/bootstrap/js/tests/unit/button.js +222 -0
- data/_sass/bootstrap/js/tests/unit/carousel.js +1273 -0
- data/_sass/bootstrap/js/tests/unit/collapse.js +892 -0
- data/_sass/bootstrap/js/tests/unit/dropdown.js +1364 -0
- data/_sass/bootstrap/js/tests/unit/modal.js +796 -0
- data/_sass/bootstrap/js/tests/unit/popover.js +471 -0
- data/_sass/bootstrap/js/tests/unit/scrollspy.js +728 -0
- data/_sass/bootstrap/js/tests/unit/tab.js +462 -0
- data/_sass/bootstrap/js/tests/unit/toast.js +239 -0
- data/_sass/bootstrap/js/tests/unit/tooltip.js +1072 -0
- data/_sass/bootstrap/js/tests/unit/util.js +164 -0
- data/_sass/bootstrap/js/tests/visual/alert.html +58 -0
- data/_sass/bootstrap/js/tests/visual/button.html +51 -0
- data/_sass/bootstrap/js/tests/visual/carousel.html +66 -0
- data/_sass/bootstrap/js/tests/visual/collapse.html +78 -0
- data/_sass/bootstrap/js/tests/visual/dropdown.html +212 -0
- data/_sass/bootstrap/js/tests/visual/modal.html +268 -0
- data/_sass/bootstrap/js/tests/visual/popover.html +46 -0
- data/_sass/bootstrap/js/tests/visual/scrollspy.html +95 -0
- data/_sass/bootstrap/js/tests/visual/tab.html +234 -0
- data/_sass/bootstrap/js/tests/visual/toast.html +72 -0
- data/_sass/bootstrap/js/tests/visual/tooltip.html +106 -0
- data/_sass/bootstrap/scss/_alert.scss +51 -0
- data/_sass/bootstrap/scss/_badge.scss +53 -0
- data/_sass/bootstrap/scss/_breadcrumb.scss +41 -0
- data/_sass/bootstrap/scss/_button-group.scss +163 -0
- data/_sass/bootstrap/scss/_buttons.scss +140 -0
- data/_sass/bootstrap/scss/_card.scss +310 -0
- data/_sass/bootstrap/scss/_carousel.scss +198 -0
- data/_sass/bootstrap/scss/_close.scss +44 -0
- data/_sass/bootstrap/scss/_code.scss +48 -0
- data/_sass/bootstrap/scss/_custom-forms.scss +507 -0
- data/_sass/bootstrap/scss/_dropdown.scss +191 -0
- data/_sass/bootstrap/scss/_forms.scss +334 -0
- data/_sass/bootstrap/scss/_functions.scss +86 -0
- data/_sass/bootstrap/scss/_grid.scss +52 -0
- data/_sass/bootstrap/scss/_images.scss +42 -0
- data/_sass/bootstrap/scss/_input-group.scss +193 -0
- data/_sass/bootstrap/scss/_jumbotron.scss +16 -0
- data/_sass/bootstrap/scss/_list-group.scss +121 -0
- data/_sass/bootstrap/scss/_media.scss +8 -0
- data/_sass/bootstrap/scss/_mixins.scss +41 -0
- data/_sass/bootstrap/scss/_modal.scss +186 -0
- data/_sass/bootstrap/scss/_nav.scss +120 -0
- data/_sass/bootstrap/scss/_navbar.scss +299 -0
- data/_sass/bootstrap/scss/_pagination.scss +78 -0
- data/_sass/bootstrap/scss/_popover.scss +183 -0
- data/_sass/bootstrap/scss/_print.scss +141 -0
- data/_sass/bootstrap/scss/_progress.scss +34 -0
- data/_sass/bootstrap/scss/_reboot.scss +462 -0
- data/_sass/bootstrap/scss/_root.scss +19 -0
- data/_sass/bootstrap/scss/_spinners.scss +53 -0
- data/_sass/bootstrap/scss/_tables.scss +187 -0
- data/_sass/bootstrap/scss/_toasts.scss +43 -0
- data/_sass/bootstrap/scss/_tooltip.scss +115 -0
- data/_sass/bootstrap/scss/_transitions.scss +22 -0
- data/_sass/bootstrap/scss/_type.scss +125 -0
- data/_sass/bootstrap/scss/_utilities.scss +16 -0
- data/_sass/bootstrap/scss/_variables.scss +1091 -0
- data/_sass/bootstrap/scss/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/scss/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/scss/bootstrap.scss +44 -0
- data/_sass/bootstrap/scss/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/scss/mixins/_background-variant.scss +21 -0
- data/_sass/bootstrap/scss/mixins/_badge.scss +11 -0
- data/_sass/bootstrap/scss/mixins/_border-radius.scss +35 -0
- data/_sass/bootstrap/scss/mixins/_box-shadow.scss +5 -0
- data/_sass/bootstrap/scss/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/scss/mixins/_buttons.scss +111 -0
- data/_sass/bootstrap/scss/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/scss/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_float.scss +11 -0
- data/_sass/bootstrap/scss/mixins/_forms.scss +198 -0
- data/_sass/bootstrap/scss/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/scss/mixins/_grid-framework.scss +66 -0
- data/_sass/bootstrap/scss/mixins/_grid.scss +51 -0
- data/_sass/bootstrap/scss/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/scss/mixins/_image.scss +36 -0
- data/_sass/bootstrap/scss/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/scss/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/scss/mixins/_screen-reader.scss +33 -0
- data/_sass/bootstrap/scss/mixins/_size.scss +6 -0
- data/_sass/bootstrap/scss/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/scss/mixins/_text-emphasis.scss +14 -0
- data/_sass/bootstrap/scss/mixins/_text-hide.scss +13 -0
- data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/scss/mixins/_transition.scss +16 -0
- data/_sass/bootstrap/scss/mixins/_visibility.scss +7 -0
- data/_sass/bootstrap/scss/utilities/_align.scss +8 -0
- data/_sass/bootstrap/scss/utilities/_background.scss +19 -0
- data/_sass/bootstrap/scss/utilities/_borders.scss +63 -0
- data/_sass/bootstrap/scss/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/scss/utilities/_display.scss +38 -0
- data/_sass/bootstrap/scss/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/scss/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/scss/utilities/_float.scss +9 -0
- data/_sass/bootstrap/scss/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/scss/utilities/_position.scss +32 -0
- data/_sass/bootstrap/scss/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/scss/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/scss/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/scss/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/scss/utilities/_text.scss +67 -0
- data/_sass/bootstrap/scss/utilities/_visibility.scss +11 -0
- data/_sass/custom.scss +1 -0
- data/assets/css/style.scss +65 -0
- data/assets/images/vertx-square.svg +1 -0
- metadata +248 -0
@@ -0,0 +1,72 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6
|
+
<link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
|
7
|
+
<title>Toast</title>
|
8
|
+
<style>
|
9
|
+
.notifications {
|
10
|
+
position: absolute;
|
11
|
+
top: 10px;
|
12
|
+
right: 10px;
|
13
|
+
}
|
14
|
+
</style>
|
15
|
+
</head>
|
16
|
+
<body>
|
17
|
+
<div class="container">
|
18
|
+
<h1>Toast <small>Bootstrap Visual Test</small></h1>
|
19
|
+
|
20
|
+
<div class="row mt-3">
|
21
|
+
<div class="col-md-12">
|
22
|
+
<button id="btnShowToast" class="btn btn-primary">Show toast</button>
|
23
|
+
<button id="btnHideToast" class="btn btn-primary">Hide toast</button>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
</div>
|
27
|
+
|
28
|
+
<div class="notifications">
|
29
|
+
<div id="toastAutoHide" class="toast" role="alert" aria-live="assertive" aria-atomic="true" data-delay="2000">
|
30
|
+
<div class="toast-header">
|
31
|
+
<span class="d-block bg-primary rounded mr-2" style="width: 20px; height: 20px;"></span>
|
32
|
+
<strong class="mr-auto">Bootstrap</strong>
|
33
|
+
<small>11 mins ago</small>
|
34
|
+
</div>
|
35
|
+
<div class="toast-body">
|
36
|
+
Hello, world! This is a toast message with <strong>autohide</strong> in 2 seconds
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
|
40
|
+
<div class="toast" data-autohide="false" role="alert" aria-live="assertive" aria-atomic="true">
|
41
|
+
<div class="toast-header">
|
42
|
+
<span class="d-block bg-primary rounded mr-2" style="width: 20px; height: 20px;"></span>
|
43
|
+
<strong class="mr-auto">Bootstrap</strong>
|
44
|
+
<small class="text-muted">2 seconds ago</small>
|
45
|
+
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
|
46
|
+
<span aria-hidden="true">×</span>
|
47
|
+
</button>
|
48
|
+
</div>
|
49
|
+
<div class="toast-body">
|
50
|
+
Heads up, toasts will stack automatically
|
51
|
+
</div>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
|
55
|
+
<script src="../../../site/docs/4.2/assets/js/vendor/jquery-slim.min.js"></script>
|
56
|
+
<script src="../../dist/util.js"></script>
|
57
|
+
<script src="../../dist/toast.js"></script>
|
58
|
+
<script>
|
59
|
+
$(function () {
|
60
|
+
$('.toast').toast()
|
61
|
+
|
62
|
+
$('#btnShowToast').on('click', function () {
|
63
|
+
$('.toast').toast('show')
|
64
|
+
})
|
65
|
+
|
66
|
+
$('#btnHideToast').on('click', function () {
|
67
|
+
$('.toast').toast('hide')
|
68
|
+
})
|
69
|
+
})
|
70
|
+
</script>
|
71
|
+
</body>
|
72
|
+
</html>
|
@@ -0,0 +1,106 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6
|
+
<link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
|
7
|
+
<title>Tooltip</title>
|
8
|
+
<style>
|
9
|
+
#target {
|
10
|
+
border: 1px solid;
|
11
|
+
width: 100px;
|
12
|
+
height: 50px;
|
13
|
+
border: 1px solid;
|
14
|
+
margin-left: 50px;
|
15
|
+
-webkit-transform: rotate(270deg);
|
16
|
+
-ms-transform: rotate(270deg);
|
17
|
+
transform: rotate(270deg);
|
18
|
+
margin-top: 100px;
|
19
|
+
}
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
<body>
|
23
|
+
<div class="container">
|
24
|
+
<h1>Tooltip <small>Bootstrap Visual Test</small></h1>
|
25
|
+
|
26
|
+
<p class="text-muted">Tight pants next level keffiyeh <a href="#" data-toggle="tooltip" title="Default tooltip">you probably</a> haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel <a href="#" data-toggle="tooltip" title="Another tooltip">have a</a> terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse vegan chambray. A really ironic artisan <a href="#" data-toggle="tooltip" title="Another one here too">whatever keytar</a>, scenester farm-to-table banksy Austin <a href="#" data-toggle="tooltip" title="The last tip!">twitter handle</a> freegan cred raw denim single-origin coffee viral.</p>
|
27
|
+
|
28
|
+
<hr>
|
29
|
+
|
30
|
+
<div class="row">
|
31
|
+
<p>
|
32
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="auto" title="Tooltip on auto">
|
33
|
+
Tooltip on auto
|
34
|
+
</button>
|
35
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="top" title="Tooltip on top">
|
36
|
+
Tooltip on top
|
37
|
+
</button>
|
38
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="right" title="Tooltip on right">
|
39
|
+
Tooltip on right
|
40
|
+
</button>
|
41
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="bottom" title="Tooltip on bottom">
|
42
|
+
Tooltip on bottom
|
43
|
+
</button>
|
44
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="left" title="Tooltip on left">
|
45
|
+
Tooltip on left
|
46
|
+
</button>
|
47
|
+
</p>
|
48
|
+
</div>
|
49
|
+
<div class="row">
|
50
|
+
<p>
|
51
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="left" title="Tooltip with XSS" data-container="<img src=1 onerror=alert(123) />">
|
52
|
+
Tooltip with XSS
|
53
|
+
</button>
|
54
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="left" title="Tooltip with container (selector)" data-container="#customContainer">
|
55
|
+
Tooltip with container (selector)
|
56
|
+
</button>
|
57
|
+
<button id="tooltipElement" type="button" class="btn btn-secondary" data-placement="left" title="Tooltip with container (element)">
|
58
|
+
Tooltip with container (element)
|
59
|
+
</button>
|
60
|
+
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-html="true" title="<em>Tooltip</em> <u>with</u> <b>HTML</b>">
|
61
|
+
Tooltip with HTML
|
62
|
+
</button>
|
63
|
+
</p>
|
64
|
+
</div>
|
65
|
+
<div class="row">
|
66
|
+
<div class="col-sm-3">
|
67
|
+
<div id="target" title="Test tooltip on transformed element"></div>
|
68
|
+
</div>
|
69
|
+
<div id="shadow" class="pt-5"></div>
|
70
|
+
</div>
|
71
|
+
<div id="customContainer"></div>
|
72
|
+
</div>
|
73
|
+
|
74
|
+
<script src="../../../site/docs/4.2/assets/js/vendor/jquery-slim.min.js"></script>
|
75
|
+
<script src="../../../node_modules/popper.js/dist/umd/popper.min.js"></script>
|
76
|
+
<script src="../../dist/util.js"></script>
|
77
|
+
<script src="../../dist/tooltip.js"></script>
|
78
|
+
<script>
|
79
|
+
$(function () {
|
80
|
+
if (typeof document.body.attachShadow === 'function') {
|
81
|
+
var shadowRoot = $('#shadow')[0].attachShadow({ mode: 'open' })
|
82
|
+
shadowRoot.innerHTML =
|
83
|
+
'<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="top" title="Tooltip on top in a shadow dom">' +
|
84
|
+
' Tooltip on top in a shadow dom' +
|
85
|
+
'</button>' +
|
86
|
+
'<button id="secondTooltip" type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="top" title="Tooltip on top in a shadow dom with container option">' +
|
87
|
+
' Tooltip on top in a shadow dom' +
|
88
|
+
'</button>'
|
89
|
+
|
90
|
+
$(shadowRoot.firstChild).tooltip()
|
91
|
+
$(shadowRoot.getElementById('secondTooltip')).tooltip({
|
92
|
+
container: shadowRoot
|
93
|
+
})
|
94
|
+
}
|
95
|
+
$('[data-toggle="tooltip"]').tooltip()
|
96
|
+
$('#tooltipElement').tooltip({
|
97
|
+
container: $('#customContainer')[0]
|
98
|
+
})
|
99
|
+
$('#target').tooltip({
|
100
|
+
placement : 'top',
|
101
|
+
trigger : 'manual'
|
102
|
+
}).tooltip('show')
|
103
|
+
})
|
104
|
+
</script>
|
105
|
+
</body>
|
106
|
+
</html>
|
@@ -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,53 @@
|
|
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
|
+
@at-root a#{&} {
|
18
|
+
@include hover-focus {
|
19
|
+
text-decoration: none;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
// Empty badges collapse automatically
|
24
|
+
&:empty {
|
25
|
+
display: none;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
// Quick fix for badges in buttons
|
30
|
+
.btn .badge {
|
31
|
+
position: relative;
|
32
|
+
top: -1px;
|
33
|
+
}
|
34
|
+
|
35
|
+
// Pill badges
|
36
|
+
//
|
37
|
+
// Make them extra rounded with a modifier to replace v3's badges.
|
38
|
+
|
39
|
+
.badge-pill {
|
40
|
+
padding-right: $badge-pill-padding-x;
|
41
|
+
padding-left: $badge-pill-padding-x;
|
42
|
+
@include border-radius($badge-pill-border-radius);
|
43
|
+
}
|
44
|
+
|
45
|
+
// Colors
|
46
|
+
//
|
47
|
+
// Contextual variations (linked badges get darker on :hover).
|
48
|
+
|
49
|
+
@each $color, $value in $theme-colors {
|
50
|
+
.badge-#{$color} {
|
51
|
+
@include badge-variant($value);
|
52
|
+
}
|
53
|
+
}
|
@@ -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,163 @@
|
|
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: 1 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
|
+
|
27
|
+
// Optional: Group multiple button groups together for a toolbar
|
28
|
+
.btn-toolbar {
|
29
|
+
display: flex;
|
30
|
+
flex-wrap: wrap;
|
31
|
+
justify-content: flex-start;
|
32
|
+
|
33
|
+
.input-group {
|
34
|
+
width: auto;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
.btn-group {
|
39
|
+
// Prevent double borders when buttons are next to each other
|
40
|
+
> .btn:not(:first-child),
|
41
|
+
> .btn-group:not(:first-child) {
|
42
|
+
margin-left: -$btn-border-width;
|
43
|
+
}
|
44
|
+
|
45
|
+
// Reset rounded corners
|
46
|
+
> .btn:not(:last-child):not(.dropdown-toggle),
|
47
|
+
> .btn-group:not(:last-child) > .btn {
|
48
|
+
@include border-right-radius(0);
|
49
|
+
}
|
50
|
+
|
51
|
+
> .btn:not(:first-child),
|
52
|
+
> .btn-group:not(:first-child) > .btn {
|
53
|
+
@include border-left-radius(0);
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
// Sizing
|
58
|
+
//
|
59
|
+
// Remix the default button sizing classes into new ones for easier manipulation.
|
60
|
+
|
61
|
+
.btn-group-sm > .btn { @extend .btn-sm; }
|
62
|
+
.btn-group-lg > .btn { @extend .btn-lg; }
|
63
|
+
|
64
|
+
|
65
|
+
//
|
66
|
+
// Split button dropdowns
|
67
|
+
//
|
68
|
+
|
69
|
+
.dropdown-toggle-split {
|
70
|
+
padding-right: $btn-padding-x * .75;
|
71
|
+
padding-left: $btn-padding-x * .75;
|
72
|
+
|
73
|
+
&::after,
|
74
|
+
.dropup &::after,
|
75
|
+
.dropright &::after {
|
76
|
+
margin-left: 0;
|
77
|
+
}
|
78
|
+
|
79
|
+
.dropleft &::before {
|
80
|
+
margin-right: 0;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
.btn-sm + .dropdown-toggle-split {
|
85
|
+
padding-right: $btn-padding-x-sm * .75;
|
86
|
+
padding-left: $btn-padding-x-sm * .75;
|
87
|
+
}
|
88
|
+
|
89
|
+
.btn-lg + .dropdown-toggle-split {
|
90
|
+
padding-right: $btn-padding-x-lg * .75;
|
91
|
+
padding-left: $btn-padding-x-lg * .75;
|
92
|
+
}
|
93
|
+
|
94
|
+
|
95
|
+
// The clickable button for toggling the menu
|
96
|
+
// Set the same inset shadow as the :active state
|
97
|
+
.btn-group.show .dropdown-toggle {
|
98
|
+
@include box-shadow($btn-active-box-shadow);
|
99
|
+
|
100
|
+
// Show no shadow for `.btn-link` since it has no other button styles.
|
101
|
+
&.btn-link {
|
102
|
+
@include box-shadow(none);
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
|
107
|
+
//
|
108
|
+
// Vertical button groups
|
109
|
+
//
|
110
|
+
|
111
|
+
.btn-group-vertical {
|
112
|
+
flex-direction: column;
|
113
|
+
align-items: flex-start;
|
114
|
+
justify-content: center;
|
115
|
+
|
116
|
+
> .btn,
|
117
|
+
> .btn-group {
|
118
|
+
width: 100%;
|
119
|
+
}
|
120
|
+
|
121
|
+
> .btn:not(:first-child),
|
122
|
+
> .btn-group:not(:first-child) {
|
123
|
+
margin-top: -$btn-border-width;
|
124
|
+
}
|
125
|
+
|
126
|
+
// Reset rounded corners
|
127
|
+
> .btn:not(:last-child):not(.dropdown-toggle),
|
128
|
+
> .btn-group:not(:last-child) > .btn {
|
129
|
+
@include border-bottom-radius(0);
|
130
|
+
}
|
131
|
+
|
132
|
+
> .btn:not(:first-child),
|
133
|
+
> .btn-group:not(:first-child) > .btn {
|
134
|
+
@include border-top-radius(0);
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
|
139
|
+
// Checkbox and radio options
|
140
|
+
//
|
141
|
+
// In order to support the browser's form validation feedback, powered by the
|
142
|
+
// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
|
143
|
+
// `display: none;` or `visibility: hidden;` as that also hides the popover.
|
144
|
+
// Simply visually hiding the inputs via `opacity` would leave them clickable in
|
145
|
+
// certain cases which is prevented by using `clip` and `pointer-events`.
|
146
|
+
// This way, we ensure a DOM element is visible to position the popover from.
|
147
|
+
//
|
148
|
+
// See https://github.com/twbs/bootstrap/pull/12794 and
|
149
|
+
// https://github.com/twbs/bootstrap/pull/14559 for more information.
|
150
|
+
|
151
|
+
.btn-group-toggle {
|
152
|
+
> .btn,
|
153
|
+
> .btn-group > .btn {
|
154
|
+
margin-bottom: 0; // Override default `<label>` value
|
155
|
+
|
156
|
+
input[type="radio"],
|
157
|
+
input[type="checkbox"] {
|
158
|
+
position: absolute;
|
159
|
+
clip: rect(0, 0, 0, 0);
|
160
|
+
pointer-events: none;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|