django-cotton-bs5 0.2.1__py3-none-any.whl
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.
- cotton_bs5/__init__.py +0 -0
- cotton_bs5/apps.py +5 -0
- cotton_bs5/static/_variables.scss +61 -0
- cotton_bs5/static/bs5/_accordion.scss +158 -0
- cotton_bs5/static/bs5/_alert.scss +68 -0
- cotton_bs5/static/bs5/_badge.scss +38 -0
- cotton_bs5/static/bs5/_breadcrumb.scss +40 -0
- cotton_bs5/static/bs5/_button-group.scss +142 -0
- cotton_bs5/static/bs5/_buttons.scss +216 -0
- cotton_bs5/static/bs5/_card.scss +239 -0
- cotton_bs5/static/bs5/_carousel.scss +236 -0
- cotton_bs5/static/bs5/_close.scss +63 -0
- cotton_bs5/static/bs5/_containers.scss +41 -0
- cotton_bs5/static/bs5/_dropdown.scss +250 -0
- cotton_bs5/static/bs5/_forms.scss +9 -0
- cotton_bs5/static/bs5/_functions.scss +302 -0
- cotton_bs5/static/bs5/_grid.scss +39 -0
- cotton_bs5/static/bs5/_helpers.scss +12 -0
- cotton_bs5/static/bs5/_images.scss +42 -0
- cotton_bs5/static/bs5/_list-group.scss +197 -0
- cotton_bs5/static/bs5/_maps.scss +174 -0
- cotton_bs5/static/bs5/_mixins.scss +42 -0
- cotton_bs5/static/bs5/_modal.scss +236 -0
- cotton_bs5/static/bs5/_nav.scss +197 -0
- cotton_bs5/static/bs5/_navbar.scss +289 -0
- cotton_bs5/static/bs5/_offcanvas.scss +143 -0
- cotton_bs5/static/bs5/_pagination.scss +109 -0
- cotton_bs5/static/bs5/_placeholders.scss +51 -0
- cotton_bs5/static/bs5/_popover.scss +196 -0
- cotton_bs5/static/bs5/_progress.scss +68 -0
- cotton_bs5/static/bs5/_reboot.scss +611 -0
- cotton_bs5/static/bs5/_root.scss +187 -0
- cotton_bs5/static/bs5/_spinners.scss +85 -0
- cotton_bs5/static/bs5/_tables.scss +171 -0
- cotton_bs5/static/bs5/_toasts.scss +73 -0
- cotton_bs5/static/bs5/_tooltip.scss +119 -0
- cotton_bs5/static/bs5/_transitions.scss +27 -0
- cotton_bs5/static/bs5/_type.scss +106 -0
- cotton_bs5/static/bs5/_utilities.scss +806 -0
- cotton_bs5/static/bs5/_variables-dark.scss +87 -0
- cotton_bs5/static/bs5/_variables.scss +1751 -0
- cotton_bs5/static/bs5/bootstrap-grid.scss +62 -0
- cotton_bs5/static/bs5/bootstrap-reboot.scss +10 -0
- cotton_bs5/static/bs5/bootstrap-utilities.scss +19 -0
- cotton_bs5/static/bs5/bootstrap.scss +52 -0
- cotton_bs5/static/bs5/forms/_floating-labels.scss +95 -0
- cotton_bs5/static/bs5/forms/_form-check.scss +189 -0
- cotton_bs5/static/bs5/forms/_form-control.scss +214 -0
- cotton_bs5/static/bs5/forms/_form-range.scss +91 -0
- cotton_bs5/static/bs5/forms/_form-select.scss +80 -0
- cotton_bs5/static/bs5/forms/_form-text.scss +11 -0
- cotton_bs5/static/bs5/forms/_input-group.scss +132 -0
- cotton_bs5/static/bs5/forms/_labels.scss +36 -0
- cotton_bs5/static/bs5/forms/_validation.scss +12 -0
- cotton_bs5/static/bs5/helpers/_clearfix.scss +3 -0
- cotton_bs5/static/bs5/helpers/_color-bg.scss +7 -0
- cotton_bs5/static/bs5/helpers/_colored-links.scss +30 -0
- cotton_bs5/static/bs5/helpers/_focus-ring.scss +5 -0
- cotton_bs5/static/bs5/helpers/_icon-link.scss +25 -0
- cotton_bs5/static/bs5/helpers/_position.scss +36 -0
- cotton_bs5/static/bs5/helpers/_ratio.scss +26 -0
- cotton_bs5/static/bs5/helpers/_stacks.scss +15 -0
- cotton_bs5/static/bs5/helpers/_stretched-link.scss +15 -0
- cotton_bs5/static/bs5/helpers/_text-truncation.scss +7 -0
- cotton_bs5/static/bs5/helpers/_visually-hidden.scss +8 -0
- cotton_bs5/static/bs5/helpers/_vr.scss +8 -0
- cotton_bs5/static/bs5/mixins/_alert.scss +18 -0
- cotton_bs5/static/bs5/mixins/_backdrop.scss +14 -0
- cotton_bs5/static/bs5/mixins/_banner.scss +7 -0
- cotton_bs5/static/bs5/mixins/_border-radius.scss +78 -0
- cotton_bs5/static/bs5/mixins/_box-shadow.scss +18 -0
- cotton_bs5/static/bs5/mixins/_breakpoints.scss +127 -0
- cotton_bs5/static/bs5/mixins/_buttons.scss +70 -0
- cotton_bs5/static/bs5/mixins/_caret.scss +69 -0
- cotton_bs5/static/bs5/mixins/_clearfix.scss +9 -0
- cotton_bs5/static/bs5/mixins/_color-mode.scss +21 -0
- cotton_bs5/static/bs5/mixins/_color-scheme.scss +7 -0
- cotton_bs5/static/bs5/mixins/_container.scss +11 -0
- cotton_bs5/static/bs5/mixins/_deprecate.scss +10 -0
- cotton_bs5/static/bs5/mixins/_forms.scss +163 -0
- cotton_bs5/static/bs5/mixins/_gradients.scss +47 -0
- cotton_bs5/static/bs5/mixins/_grid.scss +151 -0
- cotton_bs5/static/bs5/mixins/_image.scss +16 -0
- cotton_bs5/static/bs5/mixins/_list-group.scss +26 -0
- cotton_bs5/static/bs5/mixins/_lists.scss +7 -0
- cotton_bs5/static/bs5/mixins/_pagination.scss +10 -0
- cotton_bs5/static/bs5/mixins/_reset-text.scss +17 -0
- cotton_bs5/static/bs5/mixins/_resize.scss +6 -0
- cotton_bs5/static/bs5/mixins/_table-variants.scss +24 -0
- cotton_bs5/static/bs5/mixins/_text-truncate.scss +8 -0
- cotton_bs5/static/bs5/mixins/_transition.scss +26 -0
- cotton_bs5/static/bs5/mixins/_utilities.scss +97 -0
- cotton_bs5/static/bs5/mixins/_visually-hidden.scss +33 -0
- cotton_bs5/static/bs5/utilities/_api.scss +47 -0
- cotton_bs5/static/bs5/vendor/_rfs.scss +348 -0
- cotton_bs5/static/stylesheet.scss +120 -0
- cotton_bs5/templates/cotton/accordion/body.html +6 -0
- cotton_bs5/templates/cotton/accordion/header.html +12 -0
- cotton_bs5/templates/cotton/accordion/index.html +6 -0
- cotton_bs5/templates/cotton/accordion/item.html +8 -0
- cotton_bs5/templates/cotton/alert.html +11 -0
- cotton_bs5/templates/cotton/badge.html +6 -0
- cotton_bs5/templates/cotton/breadcrumbs/index.html +9 -0
- cotton_bs5/templates/cotton/breadcrumbs/item.html +13 -0
- cotton_bs5/templates/cotton/button/dismiss.html +9 -0
- cotton_bs5/templates/cotton/button/index.html +15 -0
- cotton_bs5/templates/cotton/button_group.html +9 -0
- cotton_bs5/templates/cotton/card/body.html +4 -0
- cotton_bs5/templates/cotton/card/footer.html +4 -0
- cotton_bs5/templates/cotton/card/header.html +4 -0
- cotton_bs5/templates/cotton/card/index.html +13 -0
- cotton_bs5/templates/cotton/card/subtitle.html +2 -0
- cotton_bs5/templates/cotton/card/title.html +2 -0
- cotton_bs5/templates/cotton/carousel/button.html +9 -0
- cotton_bs5/templates/cotton/carousel/caption.html +4 -0
- cotton_bs5/templates/cotton/carousel/index.html +12 -0
- cotton_bs5/templates/cotton/carousel/item.html +5 -0
- cotton_bs5/templates/cotton/collapse.html +11 -0
- cotton_bs5/templates/cotton/dropdown/divider.html +1 -0
- cotton_bs5/templates/cotton/dropdown/header.html +4 -0
- cotton_bs5/templates/cotton/dropdown/index.html +11 -0
- cotton_bs5/templates/cotton/dropdown/item.html +15 -0
- cotton_bs5/templates/cotton/dropdown/toggle.html +15 -0
- cotton_bs5/templates/cotton/grid/col.html +5 -0
- cotton_bs5/templates/cotton/grid/index.html +5 -0
- cotton_bs5/templates/cotton/list_group/index.html +11 -0
- cotton_bs5/templates/cotton/list_group/item.html +9 -0
- cotton_bs5/templates/cotton/modal/body.html +1 -0
- cotton_bs5/templates/cotton/modal/footer.html +3 -0
- cotton_bs5/templates/cotton/modal/header.html +8 -0
- cotton_bs5/templates/cotton/modal/index.html +23 -0
- cotton_bs5/templates/cotton/modal/title.html +3 -0
- cotton_bs5/templates/cotton/nav/index.html +5 -0
- cotton_bs5/templates/cotton/nav/link.html +4 -0
- cotton_bs5/templates/cotton/navbar/index.html +26 -0
- cotton_bs5/templates/cotton/navbar/link.html +9 -0
- cotton_bs5/templates/cotton/navbar/links.html +4 -0
- cotton_bs5/templates/cotton/offcanvas/body.html +2 -0
- cotton_bs5/templates/cotton/offcanvas/footer.html +6 -0
- cotton_bs5/templates/cotton/offcanvas/header.html +5 -0
- cotton_bs5/templates/cotton/offcanvas/index.html +7 -0
- cotton_bs5/templates/cotton/offcanvas/title.html +2 -0
- cotton_bs5/templates/cotton/pagination/index.html +6 -0
- cotton_bs5/templates/cotton/pagination/link.html +14 -0
- cotton_bs5/templates/cotton/placeholder.html +4 -0
- cotton_bs5/templates/cotton/progress.html +24 -0
- cotton_bs5/templates/cotton/ratio.html +5 -0
- cotton_bs5/templates/cotton/spinner.html +9 -0
- cotton_bs5/templates/cotton/table.html +15 -0
- cotton_bs5/templates/cotton/tabs/content.html +4 -0
- cotton_bs5/templates/cotton/tabs/index.html +13 -0
- cotton_bs5/templates/cotton/tabs/item.html +18 -0
- cotton_bs5/templates/cotton/tabs/pane.html +11 -0
- cotton_bs5/templates/cotton/toast/activate.html +17 -0
- cotton_bs5/templates/cotton/toast/body.html +3 -0
- cotton_bs5/templates/cotton/toast/header.html +5 -0
- cotton_bs5/templates/cotton/toast/index.html +9 -0
- django_cotton_bs5-0.2.1.dist-info/LICENSE +21 -0
- django_cotton_bs5-0.2.1.dist-info/METADATA +78 -0
- django_cotton_bs5-0.2.1.dist-info/RECORD +161 -0
- django_cotton_bs5-0.2.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
// stylelint-disable function-disallowed-list
|
|
2
|
+
|
|
3
|
+
// .modal-open - body class for killing the scroll
|
|
4
|
+
// .modal - container to scroll within
|
|
5
|
+
// .modal-dialog - positioning shell for the actual modal
|
|
6
|
+
// .modal-content - actual modal w/ bg and corners and stuff
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
// Container that the modal scrolls within
|
|
10
|
+
.modal {
|
|
11
|
+
// scss-docs-start modal-css-vars
|
|
12
|
+
--#{$prefix}modal-zindex: #{$zindex-modal};
|
|
13
|
+
--#{$prefix}modal-width: #{$modal-md};
|
|
14
|
+
--#{$prefix}modal-padding: #{$modal-inner-padding};
|
|
15
|
+
--#{$prefix}modal-margin: #{$modal-dialog-margin};
|
|
16
|
+
--#{$prefix}modal-color: #{$modal-content-color};
|
|
17
|
+
--#{$prefix}modal-bg: #{$modal-content-bg};
|
|
18
|
+
--#{$prefix}modal-border-color: #{$modal-content-border-color};
|
|
19
|
+
--#{$prefix}modal-border-width: #{$modal-content-border-width};
|
|
20
|
+
--#{$prefix}modal-border-radius: #{$modal-content-border-radius};
|
|
21
|
+
--#{$prefix}modal-box-shadow: #{$modal-content-box-shadow-xs};
|
|
22
|
+
--#{$prefix}modal-inner-border-radius: #{$modal-content-inner-border-radius};
|
|
23
|
+
--#{$prefix}modal-header-padding-x: #{$modal-header-padding-x};
|
|
24
|
+
--#{$prefix}modal-header-padding-y: #{$modal-header-padding-y};
|
|
25
|
+
--#{$prefix}modal-header-padding: #{$modal-header-padding}; // Todo in v6: Split this padding into x and y
|
|
26
|
+
--#{$prefix}modal-header-border-color: #{$modal-header-border-color};
|
|
27
|
+
--#{$prefix}modal-header-border-width: #{$modal-header-border-width};
|
|
28
|
+
--#{$prefix}modal-title-line-height: #{$modal-title-line-height};
|
|
29
|
+
--#{$prefix}modal-footer-gap: #{$modal-footer-margin-between};
|
|
30
|
+
--#{$prefix}modal-footer-bg: #{$modal-footer-bg};
|
|
31
|
+
--#{$prefix}modal-footer-border-color: #{$modal-footer-border-color};
|
|
32
|
+
--#{$prefix}modal-footer-border-width: #{$modal-footer-border-width};
|
|
33
|
+
// scss-docs-end modal-css-vars
|
|
34
|
+
|
|
35
|
+
position: fixed;
|
|
36
|
+
top: 0;
|
|
37
|
+
left: 0;
|
|
38
|
+
z-index: var(--#{$prefix}modal-zindex);
|
|
39
|
+
display: none;
|
|
40
|
+
width: 100%;
|
|
41
|
+
height: 100%;
|
|
42
|
+
overflow-x: hidden;
|
|
43
|
+
overflow-y: auto;
|
|
44
|
+
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
|
45
|
+
// https://github.com/twbs/bootstrap/pull/10951.
|
|
46
|
+
outline: 0;
|
|
47
|
+
// We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a
|
|
48
|
+
// gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342
|
|
49
|
+
// See also https://github.com/twbs/bootstrap/issues/17695
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Shell div to position the modal with bottom padding
|
|
53
|
+
.modal-dialog {
|
|
54
|
+
position: relative;
|
|
55
|
+
width: auto;
|
|
56
|
+
margin: var(--#{$prefix}modal-margin);
|
|
57
|
+
// allow clicks to pass through for custom click handling to close modal
|
|
58
|
+
pointer-events: none;
|
|
59
|
+
|
|
60
|
+
// When fading in the modal, animate it to slide down
|
|
61
|
+
.modal.fade & {
|
|
62
|
+
@include transition($modal-transition);
|
|
63
|
+
transform: $modal-fade-transform;
|
|
64
|
+
}
|
|
65
|
+
.modal.show & {
|
|
66
|
+
transform: $modal-show-transform;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// When trying to close, animate focus to scale
|
|
70
|
+
.modal.modal-static & {
|
|
71
|
+
transform: $modal-scale-transform;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.modal-dialog-scrollable {
|
|
76
|
+
height: calc(100% - var(--#{$prefix}modal-margin) * 2);
|
|
77
|
+
|
|
78
|
+
.modal-content {
|
|
79
|
+
max-height: 100%;
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.modal-body {
|
|
84
|
+
overflow-y: auto;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.modal-dialog-centered {
|
|
89
|
+
display: flex;
|
|
90
|
+
align-items: center;
|
|
91
|
+
min-height: calc(100% - var(--#{$prefix}modal-margin) * 2);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Actual modal
|
|
95
|
+
.modal-content {
|
|
96
|
+
position: relative;
|
|
97
|
+
display: flex;
|
|
98
|
+
flex-direction: column;
|
|
99
|
+
width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`
|
|
100
|
+
// counteract the pointer-events: none; in the .modal-dialog
|
|
101
|
+
color: var(--#{$prefix}modal-color);
|
|
102
|
+
pointer-events: auto;
|
|
103
|
+
background-color: var(--#{$prefix}modal-bg);
|
|
104
|
+
background-clip: padding-box;
|
|
105
|
+
border: var(--#{$prefix}modal-border-width) solid var(--#{$prefix}modal-border-color);
|
|
106
|
+
@include border-radius(var(--#{$prefix}modal-border-radius));
|
|
107
|
+
@include box-shadow(var(--#{$prefix}modal-box-shadow));
|
|
108
|
+
// Remove focus outline from opened modal
|
|
109
|
+
outline: 0;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// Modal background
|
|
113
|
+
.modal-backdrop {
|
|
114
|
+
// scss-docs-start modal-backdrop-css-vars
|
|
115
|
+
--#{$prefix}backdrop-zindex: #{$zindex-modal-backdrop};
|
|
116
|
+
--#{$prefix}backdrop-bg: #{$modal-backdrop-bg};
|
|
117
|
+
--#{$prefix}backdrop-opacity: #{$modal-backdrop-opacity};
|
|
118
|
+
// scss-docs-end modal-backdrop-css-vars
|
|
119
|
+
|
|
120
|
+
@include overlay-backdrop(var(--#{$prefix}backdrop-zindex), var(--#{$prefix}backdrop-bg), var(--#{$prefix}backdrop-opacity));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Modal header
|
|
124
|
+
// Top section of the modal w/ title and dismiss
|
|
125
|
+
.modal-header {
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-shrink: 0;
|
|
128
|
+
align-items: center;
|
|
129
|
+
padding: var(--#{$prefix}modal-header-padding);
|
|
130
|
+
border-bottom: var(--#{$prefix}modal-header-border-width) solid var(--#{$prefix}modal-header-border-color);
|
|
131
|
+
@include border-top-radius(var(--#{$prefix}modal-inner-border-radius));
|
|
132
|
+
|
|
133
|
+
.btn-close {
|
|
134
|
+
padding: calc(var(--#{$prefix}modal-header-padding-y) * .5) calc(var(--#{$prefix}modal-header-padding-x) * .5);
|
|
135
|
+
margin: calc(-.5 * var(--#{$prefix}modal-header-padding-y)) calc(-.5 * var(--#{$prefix}modal-header-padding-x)) calc(-.5 * var(--#{$prefix}modal-header-padding-y)) auto;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// Title text within header
|
|
140
|
+
.modal-title {
|
|
141
|
+
margin-bottom: 0;
|
|
142
|
+
line-height: var(--#{$prefix}modal-title-line-height);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// Modal body
|
|
146
|
+
// Where all modal content resides (sibling of .modal-header and .modal-footer)
|
|
147
|
+
.modal-body {
|
|
148
|
+
position: relative;
|
|
149
|
+
// Enable `flex-grow: 1` so that the body take up as much space as possible
|
|
150
|
+
// when there should be a fixed height on `.modal-dialog`.
|
|
151
|
+
flex: 1 1 auto;
|
|
152
|
+
padding: var(--#{$prefix}modal-padding);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// Footer (for actions)
|
|
156
|
+
.modal-footer {
|
|
157
|
+
display: flex;
|
|
158
|
+
flex-shrink: 0;
|
|
159
|
+
flex-wrap: wrap;
|
|
160
|
+
align-items: center; // vertically center
|
|
161
|
+
justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items
|
|
162
|
+
padding: calc(var(--#{$prefix}modal-padding) - var(--#{$prefix}modal-footer-gap) * .5);
|
|
163
|
+
background-color: var(--#{$prefix}modal-footer-bg);
|
|
164
|
+
border-top: var(--#{$prefix}modal-footer-border-width) solid var(--#{$prefix}modal-footer-border-color);
|
|
165
|
+
@include border-bottom-radius(var(--#{$prefix}modal-inner-border-radius));
|
|
166
|
+
|
|
167
|
+
// Place margin between footer elements
|
|
168
|
+
// This solution is far from ideal because of the universal selector usage,
|
|
169
|
+
// but is needed to fix https://github.com/twbs/bootstrap/issues/24800
|
|
170
|
+
> * {
|
|
171
|
+
margin: calc(var(--#{$prefix}modal-footer-gap) * .5); // Todo in v6: replace with gap on parent class
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// Scale up the modal
|
|
176
|
+
@include media-breakpoint-up(sm) {
|
|
177
|
+
.modal {
|
|
178
|
+
--#{$prefix}modal-margin: #{$modal-dialog-margin-y-sm-up};
|
|
179
|
+
--#{$prefix}modal-box-shadow: #{$modal-content-box-shadow-sm-up};
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// Automatically set modal's width for larger viewports
|
|
183
|
+
.modal-dialog {
|
|
184
|
+
max-width: var(--#{$prefix}modal-width);
|
|
185
|
+
margin-right: auto;
|
|
186
|
+
margin-left: auto;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.modal-sm {
|
|
190
|
+
--#{$prefix}modal-width: #{$modal-sm};
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
@include media-breakpoint-up(lg) {
|
|
195
|
+
.modal-lg,
|
|
196
|
+
.modal-xl {
|
|
197
|
+
--#{$prefix}modal-width: #{$modal-lg};
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
@include media-breakpoint-up(xl) {
|
|
202
|
+
.modal-xl {
|
|
203
|
+
--#{$prefix}modal-width: #{$modal-xl};
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// scss-docs-start modal-fullscreen-loop
|
|
208
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
209
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
210
|
+
$postfix: if($infix != "", $infix + "-down", "");
|
|
211
|
+
|
|
212
|
+
@include media-breakpoint-down($breakpoint) {
|
|
213
|
+
.modal-fullscreen#{$postfix} {
|
|
214
|
+
width: 100vw;
|
|
215
|
+
max-width: none;
|
|
216
|
+
height: 100%;
|
|
217
|
+
margin: 0;
|
|
218
|
+
|
|
219
|
+
.modal-content {
|
|
220
|
+
height: 100%;
|
|
221
|
+
border: 0;
|
|
222
|
+
@include border-radius(0);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.modal-header,
|
|
226
|
+
.modal-footer {
|
|
227
|
+
@include border-radius(0);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.modal-body {
|
|
231
|
+
overflow-y: auto;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
// scss-docs-end modal-fullscreen-loop
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
// Base class
|
|
2
|
+
//
|
|
3
|
+
// Kickstart any navigation component with a set of style resets. Works with
|
|
4
|
+
// `<nav>`s, `<ul>`s or `<ol>`s.
|
|
5
|
+
|
|
6
|
+
.nav {
|
|
7
|
+
// scss-docs-start nav-css-vars
|
|
8
|
+
--#{$prefix}nav-link-padding-x: #{$nav-link-padding-x};
|
|
9
|
+
--#{$prefix}nav-link-padding-y: #{$nav-link-padding-y};
|
|
10
|
+
@include rfs($nav-link-font-size, --#{$prefix}nav-link-font-size);
|
|
11
|
+
--#{$prefix}nav-link-font-weight: #{$nav-link-font-weight};
|
|
12
|
+
--#{$prefix}nav-link-color: #{$nav-link-color};
|
|
13
|
+
--#{$prefix}nav-link-hover-color: #{$nav-link-hover-color};
|
|
14
|
+
--#{$prefix}nav-link-disabled-color: #{$nav-link-disabled-color};
|
|
15
|
+
// scss-docs-end nav-css-vars
|
|
16
|
+
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-wrap: wrap;
|
|
19
|
+
padding-left: 0;
|
|
20
|
+
margin-bottom: 0;
|
|
21
|
+
list-style: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.nav-link {
|
|
25
|
+
display: block;
|
|
26
|
+
padding: var(--#{$prefix}nav-link-padding-y) var(--#{$prefix}nav-link-padding-x);
|
|
27
|
+
@include font-size(var(--#{$prefix}nav-link-font-size));
|
|
28
|
+
font-weight: var(--#{$prefix}nav-link-font-weight);
|
|
29
|
+
color: var(--#{$prefix}nav-link-color);
|
|
30
|
+
text-decoration: if($link-decoration == none, null, none);
|
|
31
|
+
background: none;
|
|
32
|
+
border: 0;
|
|
33
|
+
@include transition($nav-link-transition);
|
|
34
|
+
|
|
35
|
+
&:hover,
|
|
36
|
+
&:focus {
|
|
37
|
+
color: var(--#{$prefix}nav-link-hover-color);
|
|
38
|
+
text-decoration: if($link-hover-decoration == underline, none, null);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&:focus-visible {
|
|
42
|
+
outline: 0;
|
|
43
|
+
box-shadow: $nav-link-focus-box-shadow;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Disabled state lightens text
|
|
47
|
+
&.disabled,
|
|
48
|
+
&:disabled {
|
|
49
|
+
color: var(--#{$prefix}nav-link-disabled-color);
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
cursor: default;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
//
|
|
56
|
+
// Tabs
|
|
57
|
+
//
|
|
58
|
+
|
|
59
|
+
.nav-tabs {
|
|
60
|
+
// scss-docs-start nav-tabs-css-vars
|
|
61
|
+
--#{$prefix}nav-tabs-border-width: #{$nav-tabs-border-width};
|
|
62
|
+
--#{$prefix}nav-tabs-border-color: #{$nav-tabs-border-color};
|
|
63
|
+
--#{$prefix}nav-tabs-border-radius: #{$nav-tabs-border-radius};
|
|
64
|
+
--#{$prefix}nav-tabs-link-hover-border-color: #{$nav-tabs-link-hover-border-color};
|
|
65
|
+
--#{$prefix}nav-tabs-link-active-color: #{$nav-tabs-link-active-color};
|
|
66
|
+
--#{$prefix}nav-tabs-link-active-bg: #{$nav-tabs-link-active-bg};
|
|
67
|
+
--#{$prefix}nav-tabs-link-active-border-color: #{$nav-tabs-link-active-border-color};
|
|
68
|
+
// scss-docs-end nav-tabs-css-vars
|
|
69
|
+
|
|
70
|
+
border-bottom: var(--#{$prefix}nav-tabs-border-width) solid var(--#{$prefix}nav-tabs-border-color);
|
|
71
|
+
|
|
72
|
+
.nav-link {
|
|
73
|
+
margin-bottom: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
|
|
74
|
+
border: var(--#{$prefix}nav-tabs-border-width) solid transparent;
|
|
75
|
+
@include border-top-radius(var(--#{$prefix}nav-tabs-border-radius));
|
|
76
|
+
|
|
77
|
+
&:hover,
|
|
78
|
+
&:focus {
|
|
79
|
+
// Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link
|
|
80
|
+
isolation: isolate;
|
|
81
|
+
border-color: var(--#{$prefix}nav-tabs-link-hover-border-color);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.nav-link.active,
|
|
86
|
+
.nav-item.show .nav-link {
|
|
87
|
+
color: var(--#{$prefix}nav-tabs-link-active-color);
|
|
88
|
+
background-color: var(--#{$prefix}nav-tabs-link-active-bg);
|
|
89
|
+
border-color: var(--#{$prefix}nav-tabs-link-active-border-color);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.dropdown-menu {
|
|
93
|
+
// Make dropdown border overlap tab border
|
|
94
|
+
margin-top: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
|
|
95
|
+
// Remove the top rounded corners here since there is a hard edge above the menu
|
|
96
|
+
@include border-top-radius(0);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
//
|
|
102
|
+
// Pills
|
|
103
|
+
//
|
|
104
|
+
|
|
105
|
+
.nav-pills {
|
|
106
|
+
// scss-docs-start nav-pills-css-vars
|
|
107
|
+
--#{$prefix}nav-pills-border-radius: #{$nav-pills-border-radius};
|
|
108
|
+
--#{$prefix}nav-pills-link-active-color: #{$nav-pills-link-active-color};
|
|
109
|
+
--#{$prefix}nav-pills-link-active-bg: #{$nav-pills-link-active-bg};
|
|
110
|
+
// scss-docs-end nav-pills-css-vars
|
|
111
|
+
|
|
112
|
+
.nav-link {
|
|
113
|
+
@include border-radius(var(--#{$prefix}nav-pills-border-radius));
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.nav-link.active,
|
|
117
|
+
.show > .nav-link {
|
|
118
|
+
color: var(--#{$prefix}nav-pills-link-active-color);
|
|
119
|
+
@include gradient-bg(var(--#{$prefix}nav-pills-link-active-bg));
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
//
|
|
125
|
+
// Underline
|
|
126
|
+
//
|
|
127
|
+
|
|
128
|
+
.nav-underline {
|
|
129
|
+
// scss-docs-start nav-underline-css-vars
|
|
130
|
+
--#{$prefix}nav-underline-gap: #{$nav-underline-gap};
|
|
131
|
+
--#{$prefix}nav-underline-border-width: #{$nav-underline-border-width};
|
|
132
|
+
--#{$prefix}nav-underline-link-active-color: #{$nav-underline-link-active-color};
|
|
133
|
+
// scss-docs-end nav-underline-css-vars
|
|
134
|
+
|
|
135
|
+
gap: var(--#{$prefix}nav-underline-gap);
|
|
136
|
+
|
|
137
|
+
.nav-link {
|
|
138
|
+
padding-right: 0;
|
|
139
|
+
padding-left: 0;
|
|
140
|
+
border-bottom: var(--#{$prefix}nav-underline-border-width) solid transparent;
|
|
141
|
+
|
|
142
|
+
&:hover,
|
|
143
|
+
&:focus {
|
|
144
|
+
border-bottom-color: currentcolor;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.nav-link.active,
|
|
149
|
+
.show > .nav-link {
|
|
150
|
+
font-weight: $font-weight-bold;
|
|
151
|
+
color: var(--#{$prefix}nav-underline-link-active-color);
|
|
152
|
+
border-bottom-color: currentcolor;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
//
|
|
158
|
+
// Justified variants
|
|
159
|
+
//
|
|
160
|
+
|
|
161
|
+
.nav-fill {
|
|
162
|
+
> .nav-link,
|
|
163
|
+
.nav-item {
|
|
164
|
+
flex: 1 1 auto;
|
|
165
|
+
text-align: center;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.nav-justified {
|
|
170
|
+
> .nav-link,
|
|
171
|
+
.nav-item {
|
|
172
|
+
flex-basis: 0;
|
|
173
|
+
flex-grow: 1;
|
|
174
|
+
text-align: center;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.nav-fill,
|
|
179
|
+
.nav-justified {
|
|
180
|
+
.nav-item .nav-link {
|
|
181
|
+
width: 100%; // Make sure button will grow
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
// Tabbable tabs
|
|
187
|
+
//
|
|
188
|
+
// Hide tabbable panes to start, show them when `.active`
|
|
189
|
+
|
|
190
|
+
.tab-content {
|
|
191
|
+
> .tab-pane {
|
|
192
|
+
display: none;
|
|
193
|
+
}
|
|
194
|
+
> .active {
|
|
195
|
+
display: block;
|
|
196
|
+
}
|
|
197
|
+
}
|