infotorg-api-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/README.md +3 -0
- data/_config.yml +37 -0
- data/_includes/footer.html +11 -0
- data/_includes/head-app-css.html +2 -0
- data/_includes/head-fonts.html +2 -0
- data/_includes/head-google-analytics.html +13 -0
- data/_includes/navigation.html +58 -0
- data/_includes/services.html +75 -0
- data/_includes/title.html +4 -0
- data/_layouts/default.html +38 -0
- data/_layouts/services.html +5 -0
- data/_layouts/swagger-ui.html +67 -0
- data/_sass/_bootstrap.scss +51 -0
- data/_sass/_bootstrap_variables.scss +124 -0
- data/_sass/_typography.scss +15 -0
- data/_sass/_variables.scss +75 -0
- data/_sass/bootstrap/_accordion.scss +125 -0
- data/_sass/bootstrap/_alert.scss +57 -0
- data/_sass/bootstrap/_badge.scss +29 -0
- data/_sass/bootstrap/_breadcrumb.scss +28 -0
- data/_sass/bootstrap/_button-group.scss +139 -0
- data/_sass/bootstrap/_buttons.scss +109 -0
- data/_sass/bootstrap/_card.scss +215 -0
- data/_sass/bootstrap/_carousel.scss +223 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +235 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +205 -0
- data/_sass/bootstrap/_grid.scss +22 -0
- data/_sass/bootstrap/_helpers.scss +7 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +163 -0
- data/_sass/bootstrap/_mixins.scss +41 -0
- data/_sass/bootstrap/_modal.scss +235 -0
- data/_sass/bootstrap/_nav.scss +127 -0
- data/_sass/bootstrap/_navbar.scss +293 -0
- data/_sass/bootstrap/_pagination.scss +64 -0
- data/_sass/bootstrap/_popover.scss +173 -0
- data/_sass/bootstrap/_progress.scss +45 -0
- data/_sass/bootstrap/_reboot.scss +635 -0
- data/_sass/bootstrap/_root.scss +16 -0
- data/_sass/bootstrap/_spinners.scss +65 -0
- data/_sass/bootstrap/_tables.scss +150 -0
- data/_sass/bootstrap/_toasts.scss +50 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +19 -0
- data/_sass/bootstrap/_type.scss +104 -0
- data/_sass/bootstrap/_utilities.scss +560 -0
- data/_sass/bootstrap/_variables.scss +1333 -0
- data/_sass/bootstrap/bootstrap-grid.scss +65 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +15 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +18 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +61 -0
- data/_sass/bootstrap/forms/_form-check.scss +151 -0
- data/_sass/bootstrap/forms/_form-control.scss +223 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +68 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +121 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +12 -0
- data/_sass/bootstrap/helpers/_position.scss +30 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +9 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +18 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +128 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_container.scss +9 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +117 -0
- data/_sass/bootstrap/mixins/_gradients.scss +43 -0
- data/_sass/bootstrap/mixins/_grid.scss +120 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +22 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +29 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +21 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +68 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +28 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +312 -0
- data/assets/bootstrap.min.js +7 -0
- data/assets/bootstrap.min.js.map +1 -0
- data/assets/css/main.scss +214 -0
- data/assets/css/print.scss +8 -0
- data/assets/css/swagger-ui/3.x/theme-feeling-blue.css +1672 -0
- data/assets/css/swagger-ui/3.x/theme-flattop.css +1672 -0
- data/assets/css/swagger-ui/3.x/theme-material.css +1719 -0
- data/assets/css/swagger-ui/3.x/theme-monokai.css +1792 -0
- data/assets/css/swagger-ui/3.x/theme-muted.css +1673 -0
- data/assets/css/swagger-ui/3.x/theme-newspaper.css +1671 -0
- data/assets/css/swagger-ui/3.x/theme-outline.css +1652 -0
- data/assets/images/cube.svg +11 -0
- data/assets/images/icons/collapse.svg +14 -0
- data/assets/images/icons/info.svg +14 -0
- data/assets/images/icons/services/eiendom.svg +9 -0
- data/assets/images/icons/services/foretak.svg +10 -0
- data/assets/images/icons/services/kreditt.svg +11 -0
- data/assets/images/icons/services/likningopplysning.svg +11 -0
- data/assets/images/icons/services/person.svg +11 -0
- data/assets/images/icons/services/small-boats.svg +9 -0
- data/assets/images/icons/services/vehicle.svg +9 -0
- data/assets/images/infotorg-developer.png +0 -0
- data/assets/images/infotorg-developer.svg +23 -0
- data/assets/images/infotorg-developer@2x.png +0 -0
- data/assets/images/infotorg-developer@3x.png +0 -0
- data/assets/images/it-gears.svg +14 -0
- data/assets/images/logo.svg +12 -0
- data/assets/images/tieto-evry-logo.svg +29 -0
- data/assets/openapi/eiendom.json +6817 -0
- metadata +180 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
:root {
|
2
|
+
// Custom variable values only support SassScript inside `#{}`.
|
3
|
+
@each $color, $value in $colors {
|
4
|
+
--#{$variable-prefix}#{$color}: #{$value};
|
5
|
+
}
|
6
|
+
|
7
|
+
@each $color, $value in $theme-colors {
|
8
|
+
--#{$variable-prefix}#{$color}: #{$value};
|
9
|
+
}
|
10
|
+
|
11
|
+
// Use `inspect` for lists so that quoted items keep the quotes.
|
12
|
+
// See https://github.com/sass/sass/issues/2383#issuecomment-336349172
|
13
|
+
--#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};
|
14
|
+
--#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};
|
15
|
+
--#{$variable-prefix}gradient: #{$gradient};
|
16
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
//
|
2
|
+
// Rotating border
|
3
|
+
//
|
4
|
+
|
5
|
+
@keyframes spinner-border {
|
6
|
+
to { transform: rotate(360deg) #{"/* rtl:ignore */"}; }
|
7
|
+
}
|
8
|
+
|
9
|
+
.spinner-border {
|
10
|
+
display: inline-block;
|
11
|
+
width: $spinner-width;
|
12
|
+
height: $spinner-height;
|
13
|
+
vertical-align: text-bottom;
|
14
|
+
border: $spinner-border-width solid currentColor;
|
15
|
+
border-right-color: transparent;
|
16
|
+
// stylelint-disable-next-line property-disallowed-list
|
17
|
+
border-radius: 50%;
|
18
|
+
animation: $spinner-animation-speed linear infinite spinner-border;
|
19
|
+
}
|
20
|
+
|
21
|
+
.spinner-border-sm {
|
22
|
+
width: $spinner-width-sm;
|
23
|
+
height: $spinner-height-sm;
|
24
|
+
border-width: $spinner-border-width-sm;
|
25
|
+
}
|
26
|
+
|
27
|
+
//
|
28
|
+
// Growing circle
|
29
|
+
//
|
30
|
+
|
31
|
+
@keyframes spinner-grow {
|
32
|
+
0% {
|
33
|
+
transform: scale(0);
|
34
|
+
}
|
35
|
+
50% {
|
36
|
+
opacity: 1;
|
37
|
+
transform: none;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.spinner-grow {
|
42
|
+
display: inline-block;
|
43
|
+
width: $spinner-width;
|
44
|
+
height: $spinner-height;
|
45
|
+
vertical-align: text-bottom;
|
46
|
+
background-color: currentColor;
|
47
|
+
// stylelint-disable-next-line property-disallowed-list
|
48
|
+
border-radius: 50%;
|
49
|
+
opacity: 0;
|
50
|
+
animation: $spinner-animation-speed linear infinite spinner-grow;
|
51
|
+
}
|
52
|
+
|
53
|
+
.spinner-grow-sm {
|
54
|
+
width: $spinner-width-sm;
|
55
|
+
height: $spinner-height-sm;
|
56
|
+
}
|
57
|
+
|
58
|
+
@if $enable-reduced-motion {
|
59
|
+
@media (prefers-reduced-motion: reduce) {
|
60
|
+
.spinner-border,
|
61
|
+
.spinner-grow {
|
62
|
+
animation-duration: $spinner-animation-speed * 2;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
@@ -0,0 +1,150 @@
|
|
1
|
+
//
|
2
|
+
// Basic Bootstrap table
|
3
|
+
//
|
4
|
+
|
5
|
+
.table {
|
6
|
+
--#{$variable-prefix}table-bg: #{$table-bg};
|
7
|
+
--#{$variable-prefix}table-striped-color: #{$table-striped-color};
|
8
|
+
--#{$variable-prefix}table-striped-bg: #{$table-striped-bg};
|
9
|
+
--#{$variable-prefix}table-active-color: #{$table-active-color};
|
10
|
+
--#{$variable-prefix}table-active-bg: #{$table-active-bg};
|
11
|
+
--#{$variable-prefix}table-hover-color: #{$table-hover-color};
|
12
|
+
--#{$variable-prefix}table-hover-bg: #{$table-hover-bg};
|
13
|
+
|
14
|
+
width: 100%;
|
15
|
+
margin-bottom: $spacer;
|
16
|
+
color: $table-color;
|
17
|
+
vertical-align: $table-cell-vertical-align;
|
18
|
+
border-color: $table-border-color;
|
19
|
+
|
20
|
+
// Target th & td
|
21
|
+
// We need the child combinator to prevent styles leaking to nested tables which doesn't have a `.table` class.
|
22
|
+
// We use the universal selectors here to simplify the selector (else we would need 6 different selectors).
|
23
|
+
// Another advantage is that this generates less code and makes the selector less specific making it easier to override.
|
24
|
+
// stylelint-disable-next-line selector-max-universal
|
25
|
+
> :not(caption) > * > * {
|
26
|
+
padding: $table-cell-padding-y $table-cell-padding-x;
|
27
|
+
background-color: var(--#{$variable-prefix}table-bg);
|
28
|
+
background-image: linear-gradient(var(--#{$variable-prefix}table-accent-bg), var(--#{$variable-prefix}table-accent-bg));
|
29
|
+
border-bottom-width: $table-border-width;
|
30
|
+
}
|
31
|
+
|
32
|
+
> tbody {
|
33
|
+
vertical-align: inherit;
|
34
|
+
}
|
35
|
+
|
36
|
+
> thead {
|
37
|
+
vertical-align: bottom;
|
38
|
+
}
|
39
|
+
|
40
|
+
// Highlight border color between thead, tbody and tfoot.
|
41
|
+
> :not(:last-child) > :last-child > * {
|
42
|
+
border-bottom-color: $table-group-separator-color;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
|
47
|
+
//
|
48
|
+
// Change placement of captions with a class
|
49
|
+
//
|
50
|
+
|
51
|
+
.caption-top {
|
52
|
+
caption-side: top;
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
//
|
57
|
+
// Condensed table w/ half padding
|
58
|
+
//
|
59
|
+
|
60
|
+
.table-sm {
|
61
|
+
// stylelint-disable-next-line selector-max-universal
|
62
|
+
> :not(caption) > * > * {
|
63
|
+
padding: $table-cell-padding-y-sm $table-cell-padding-x-sm;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
|
68
|
+
// Border versions
|
69
|
+
//
|
70
|
+
// Add or remove borders all around the table and between all the columns.
|
71
|
+
//
|
72
|
+
// When borders are added on all sides of the cells, the corners can render odd when
|
73
|
+
// these borders do not have the same color or if they are semi-transparent.
|
74
|
+
// Therefor we add top and border bottoms to the `tr`s and left and right borders
|
75
|
+
// to the `td`s or `th`s
|
76
|
+
|
77
|
+
.table-bordered {
|
78
|
+
> :not(caption) > * {
|
79
|
+
border-width: $table-border-width 0;
|
80
|
+
|
81
|
+
// stylelint-disable-next-line selector-max-universal
|
82
|
+
> * {
|
83
|
+
border-width: 0 $table-border-width;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
.table-borderless {
|
89
|
+
// stylelint-disable-next-line selector-max-universal
|
90
|
+
> :not(caption) > * > * {
|
91
|
+
border-bottom-width: 0;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
// Zebra-striping
|
96
|
+
//
|
97
|
+
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
98
|
+
|
99
|
+
.table-striped {
|
100
|
+
> tbody > tr:nth-of-type(#{$table-striped-order}) {
|
101
|
+
--#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-striped-bg);
|
102
|
+
color: var(--#{$variable-prefix}table-striped-color);
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
// Active table
|
107
|
+
//
|
108
|
+
// The `.table-active` class can be added to highlight rows or cells
|
109
|
+
|
110
|
+
.table-active {
|
111
|
+
--#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-active-bg);
|
112
|
+
color: var(--#{$variable-prefix}table-active-color);
|
113
|
+
}
|
114
|
+
|
115
|
+
// Hover effect
|
116
|
+
//
|
117
|
+
// Placed here since it has to come after the potential zebra striping
|
118
|
+
|
119
|
+
.table-hover {
|
120
|
+
> tbody > tr:hover {
|
121
|
+
--#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-hover-bg);
|
122
|
+
color: var(--#{$variable-prefix}table-hover-color);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
|
127
|
+
// Table variants
|
128
|
+
//
|
129
|
+
// Table variants set the table cell backgrounds, border colors
|
130
|
+
// and the colors of the striped, hovered & active tables
|
131
|
+
|
132
|
+
@each $color, $value in $table-variants {
|
133
|
+
@include table-variant($color, $value);
|
134
|
+
}
|
135
|
+
|
136
|
+
// Responsive tables
|
137
|
+
//
|
138
|
+
// Generate series of `.table-responsive-*` classes for configuring the screen
|
139
|
+
// size of where your table will overflow.
|
140
|
+
|
141
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
142
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
143
|
+
|
144
|
+
@include media-breakpoint-down($breakpoint) {
|
145
|
+
.table-responsive#{$infix} {
|
146
|
+
overflow-x: auto;
|
147
|
+
-webkit-overflow-scrolling: touch;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
.toast {
|
2
|
+
width: $toast-max-width;
|
3
|
+
max-width: 100%;
|
4
|
+
@include font-size($toast-font-size);
|
5
|
+
color: $toast-color;
|
6
|
+
pointer-events: auto;
|
7
|
+
background-color: $toast-background-color;
|
8
|
+
background-clip: padding-box;
|
9
|
+
border: $toast-border-width solid $toast-border-color;
|
10
|
+
box-shadow: $toast-box-shadow;
|
11
|
+
@include border-radius($toast-border-radius);
|
12
|
+
|
13
|
+
&:not(.showing):not(.show) {
|
14
|
+
opacity: 0;
|
15
|
+
}
|
16
|
+
|
17
|
+
&.hide {
|
18
|
+
display: none;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
.toast-container {
|
23
|
+
width: max-content;
|
24
|
+
max-width: 100%;
|
25
|
+
pointer-events: none;
|
26
|
+
|
27
|
+
> :not(:last-child) {
|
28
|
+
margin-bottom: $toast-spacing;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.toast-header {
|
33
|
+
display: flex;
|
34
|
+
align-items: center;
|
35
|
+
padding: $toast-padding-y $toast-padding-x;
|
36
|
+
color: $toast-header-color;
|
37
|
+
background-color: $toast-header-background-color;
|
38
|
+
background-clip: padding-box;
|
39
|
+
border-bottom: $toast-border-width solid $toast-header-border-color;
|
40
|
+
@include border-top-radius(subtract($toast-border-radius, $toast-border-width));
|
41
|
+
|
42
|
+
.btn-close {
|
43
|
+
margin-right: $toast-padding-x / -2;
|
44
|
+
margin-left: $toast-padding-x;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
.toast-body {
|
49
|
+
padding: $toast-padding-x; // apply to both vertical and horizontal
|
50
|
+
}
|
@@ -0,0 +1,115 @@
|
|
1
|
+
// Base class
|
2
|
+
.tooltip {
|
3
|
+
position: absolute;
|
4
|
+
z-index: $zindex-tooltip;
|
5
|
+
display: block;
|
6
|
+
margin: $tooltip-margin;
|
7
|
+
// Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
|
8
|
+
// So reset our font and text properties to avoid inheriting weird values.
|
9
|
+
@include reset-text();
|
10
|
+
@include font-size($tooltip-font-size);
|
11
|
+
// Allow breaking very long words so they don't overflow the tooltip's bounds
|
12
|
+
word-wrap: break-word;
|
13
|
+
opacity: 0;
|
14
|
+
|
15
|
+
&.show { opacity: $tooltip-opacity; }
|
16
|
+
|
17
|
+
.tooltip-arrow {
|
18
|
+
position: absolute;
|
19
|
+
display: block;
|
20
|
+
width: $tooltip-arrow-width;
|
21
|
+
height: $tooltip-arrow-height;
|
22
|
+
|
23
|
+
&::before {
|
24
|
+
position: absolute;
|
25
|
+
content: "";
|
26
|
+
border-color: transparent;
|
27
|
+
border-style: solid;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.bs-tooltip-top {
|
33
|
+
padding: $tooltip-arrow-height 0;
|
34
|
+
|
35
|
+
.tooltip-arrow {
|
36
|
+
bottom: 0;
|
37
|
+
|
38
|
+
&::before {
|
39
|
+
top: -1px;
|
40
|
+
border-width: $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
|
41
|
+
border-top-color: $tooltip-arrow-color;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
.bs-tooltip-end {
|
47
|
+
padding: 0 $tooltip-arrow-height;
|
48
|
+
|
49
|
+
.tooltip-arrow {
|
50
|
+
left: 0;
|
51
|
+
width: $tooltip-arrow-height;
|
52
|
+
height: $tooltip-arrow-width;
|
53
|
+
|
54
|
+
&::before {
|
55
|
+
right: -1px;
|
56
|
+
border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
|
57
|
+
border-right-color: $tooltip-arrow-color;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
.bs-tooltip-bottom {
|
63
|
+
padding: $tooltip-arrow-height 0;
|
64
|
+
|
65
|
+
.tooltip-arrow {
|
66
|
+
top: 0;
|
67
|
+
|
68
|
+
&::before {
|
69
|
+
bottom: -1px;
|
70
|
+
border-width: 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
|
71
|
+
border-bottom-color: $tooltip-arrow-color;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
.bs-tooltip-start {
|
77
|
+
padding: 0 $tooltip-arrow-height;
|
78
|
+
|
79
|
+
.tooltip-arrow {
|
80
|
+
right: 0;
|
81
|
+
width: $tooltip-arrow-height;
|
82
|
+
height: $tooltip-arrow-width;
|
83
|
+
|
84
|
+
&::before {
|
85
|
+
left: -1px;
|
86
|
+
border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
|
87
|
+
border-left-color: $tooltip-arrow-color;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
.bs-tooltip-auto {
|
93
|
+
&[data-popper-placement^="top"] {
|
94
|
+
@extend .bs-tooltip-top;
|
95
|
+
}
|
96
|
+
&[data-popper-placement^="right"] {
|
97
|
+
@extend .bs-tooltip-end;
|
98
|
+
}
|
99
|
+
&[data-popper-placement^="bottom"] {
|
100
|
+
@extend .bs-tooltip-bottom;
|
101
|
+
}
|
102
|
+
&[data-popper-placement^="left"] {
|
103
|
+
@extend .bs-tooltip-start;
|
104
|
+
}
|
105
|
+
}
|
106
|
+
|
107
|
+
// Wrapper for the tooltip content
|
108
|
+
.tooltip-inner {
|
109
|
+
max-width: $tooltip-max-width;
|
110
|
+
padding: $tooltip-padding-y $tooltip-padding-x;
|
111
|
+
color: $tooltip-color;
|
112
|
+
text-align: center;
|
113
|
+
background-color: $tooltip-bg;
|
114
|
+
@include border-radius($tooltip-border-radius);
|
115
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.fade {
|
2
|
+
@include transition($transition-fade);
|
3
|
+
|
4
|
+
&:not(.show) {
|
5
|
+
opacity: 0;
|
6
|
+
}
|
7
|
+
}
|
8
|
+
|
9
|
+
.collapse {
|
10
|
+
&:not(.show) {
|
11
|
+
display: none;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
.collapsing {
|
16
|
+
height: 0;
|
17
|
+
overflow: hidden;
|
18
|
+
@include transition($transition-collapse);
|
19
|
+
}
|
@@ -0,0 +1,104 @@
|
|
1
|
+
//
|
2
|
+
// Headings
|
3
|
+
//
|
4
|
+
.h1 {
|
5
|
+
@extend h1;
|
6
|
+
}
|
7
|
+
|
8
|
+
.h2 {
|
9
|
+
@extend h2;
|
10
|
+
}
|
11
|
+
|
12
|
+
.h3 {
|
13
|
+
@extend h3;
|
14
|
+
}
|
15
|
+
|
16
|
+
.h4 {
|
17
|
+
@extend h4;
|
18
|
+
}
|
19
|
+
|
20
|
+
.h5 {
|
21
|
+
@extend h5;
|
22
|
+
}
|
23
|
+
|
24
|
+
.h6 {
|
25
|
+
@extend h6;
|
26
|
+
}
|
27
|
+
|
28
|
+
|
29
|
+
.lead {
|
30
|
+
@include font-size($lead-font-size);
|
31
|
+
font-weight: $lead-font-weight;
|
32
|
+
}
|
33
|
+
|
34
|
+
// Type display classes
|
35
|
+
@each $display, $font-size in $display-font-sizes {
|
36
|
+
.display-#{$display} {
|
37
|
+
@include font-size($font-size);
|
38
|
+
font-weight: $display-font-weight;
|
39
|
+
line-height: $display-line-height;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
//
|
44
|
+
// Emphasis
|
45
|
+
//
|
46
|
+
.small {
|
47
|
+
@extend small;
|
48
|
+
}
|
49
|
+
|
50
|
+
.mark {
|
51
|
+
@extend mark;
|
52
|
+
}
|
53
|
+
|
54
|
+
//
|
55
|
+
// Lists
|
56
|
+
//
|
57
|
+
|
58
|
+
.list-unstyled {
|
59
|
+
@include list-unstyled();
|
60
|
+
}
|
61
|
+
|
62
|
+
// Inline turns list items into inline-block
|
63
|
+
.list-inline {
|
64
|
+
@include list-unstyled();
|
65
|
+
}
|
66
|
+
.list-inline-item {
|
67
|
+
display: inline-block;
|
68
|
+
|
69
|
+
&:not(:last-child) {
|
70
|
+
margin-right: $list-inline-padding;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
//
|
76
|
+
// Misc
|
77
|
+
//
|
78
|
+
|
79
|
+
// Builds on `abbr`
|
80
|
+
.initialism {
|
81
|
+
@include font-size($initialism-font-size);
|
82
|
+
text-transform: uppercase;
|
83
|
+
}
|
84
|
+
|
85
|
+
// Blockquotes
|
86
|
+
.blockquote {
|
87
|
+
margin-bottom: $blockquote-margin-y;
|
88
|
+
@include font-size($blockquote-font-size);
|
89
|
+
|
90
|
+
> :last-child {
|
91
|
+
margin-bottom: 0;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
.blockquote-footer {
|
96
|
+
margin-top: -$blockquote-margin-y;
|
97
|
+
margin-bottom: $blockquote-margin-y;
|
98
|
+
@include font-size($blockquote-footer-font-size);
|
99
|
+
color: $blockquote-footer-color;
|
100
|
+
|
101
|
+
&::before {
|
102
|
+
content: "\2014\00A0"; // em dash, nbsp
|
103
|
+
}
|
104
|
+
}
|