@clayui/css 3.38.0 → 3.41.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.
- package/index.js +7 -2
- package/lib/css/atlas.css +819 -966
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +668 -814
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +1013 -881
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/geolocation.svg +1 -1
- package/lib/images/icons/heading.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/maps.svg +10 -0
- package/lib/images/icons/order-ascending.svg +11 -0
- package/lib/images/icons/order-descending.svg +11 -0
- package/package.json +5 -3
- package/src/images/icons/geolocation.svg +1 -1
- package/src/images/icons/heading.svg +9 -0
- package/src/images/icons/maps.svg +10 -0
- package/src/images/icons/order-ascending.svg +11 -0
- package/src/images/icons/order-descending.svg +11 -0
- package/src/scss/_mixins.scss +1 -0
- package/src/scss/atlas/variables/_alerts.scss +10 -0
- package/src/scss/atlas/variables/_breadcrumbs.scss +4 -2
- package/src/scss/atlas/variables/_cards.scss +2 -2
- package/src/scss/atlas/variables/_custom-forms.scss +190 -14
- package/src/scss/atlas/variables/_dropdowns.scss +188 -17
- package/src/scss/atlas/variables/_forms.scss +33 -1
- package/src/scss/atlas/variables/_globals.scss +14 -1
- package/src/scss/atlas/variables/_labels.scss +171 -71
- package/src/scss/atlas/variables/_navs.scss +20 -8
- package/src/scss/atlas/variables/_pagination.scss +2 -2
- package/src/scss/atlas/variables/_sheets.scss +4 -2
- package/src/scss/atlas/variables/_stickers.scss +167 -3
- package/src/scss/atlas/variables/_tables.scss +58 -28
- package/src/scss/cadmin/components/_alerts.scss +1 -17
- package/src/scss/cadmin/components/_cards.scss +14 -16
- package/src/scss/cadmin/components/_custom-forms.scss +15 -165
- package/src/scss/cadmin/components/_dropdowns.scss +66 -205
- package/src/scss/cadmin/components/_form-validation.scss +10 -237
- package/src/scss/cadmin/components/_forms.scss +1 -1
- package/src/scss/cadmin/components/_grid.scss +20 -20
- package/src/scss/cadmin/components/_icons.scss +1 -6
- package/src/scss/cadmin/components/_images.scss +1 -1
- package/src/scss/cadmin/components/_input-groups.scss +17 -14
- package/src/scss/cadmin/components/_labels.scss +33 -101
- package/src/scss/cadmin/components/_list-group.scss +4 -4
- package/src/scss/cadmin/components/_modals.scss +1 -1
- package/src/scss/cadmin/components/_multi-step-nav.scss +2 -2
- package/src/scss/cadmin/components/_navbar.scss +2 -2
- package/src/scss/cadmin/components/_popovers.scss +34 -30
- package/src/scss/cadmin/components/_reboot.scss +1 -8
- package/src/scss/cadmin/components/_sidebar.scss +1 -1
- package/src/scss/cadmin/components/_stickers.scss +39 -94
- package/src/scss/cadmin/components/_toggle-switch.scss +20 -358
- package/src/scss/cadmin/components/_tooltip.scss +16 -14
- package/src/scss/cadmin/components/_type.scss +9 -1
- package/src/scss/cadmin/variables/_alerts.scss +38 -14
- package/src/scss/cadmin/variables/_breadcrumbs.scss +10 -6
- package/src/scss/cadmin/variables/_cards.scss +96 -28
- package/src/scss/cadmin/variables/_custom-forms.scss +262 -20
- package/src/scss/cadmin/variables/_dropdowns.scss +449 -137
- package/src/scss/cadmin/variables/_forms.scss +356 -5
- package/src/scss/cadmin/variables/_globals.scss +15 -1
- package/src/scss/cadmin/variables/_icons.scss +15 -2
- package/src/scss/cadmin/variables/_labels.scss +288 -101
- package/src/scss/cadmin/variables/_links.scss +9 -7
- package/src/scss/cadmin/variables/_menubar.scss +4 -4
- package/src/scss/cadmin/variables/_multi-step-nav.scss +2 -2
- package/src/scss/cadmin/variables/_navbar.scss +2 -2
- package/src/scss/cadmin/variables/_navs.scss +2 -2
- package/src/scss/cadmin/variables/_stickers.scss +258 -45
- package/src/scss/cadmin/variables/_tables.scss +1 -1
- package/src/scss/cadmin/variables/_timelines.scss +1 -1
- package/src/scss/cadmin/variables/_toggle-switch.scss +404 -1
- package/src/scss/cadmin/variables/_type.scss +3 -0
- package/src/scss/components/_alerts.scss +5 -17
- package/src/scss/components/_cards.scss +7 -7
- package/src/scss/components/_carousel.scss +2 -2
- package/src/scss/components/_custom-forms.scss +20 -164
- package/src/scss/components/_dropdowns.scss +52 -209
- package/src/scss/components/_form-validation.scss +8 -237
- package/src/scss/components/_forms.scss +66 -9
- package/src/scss/components/_grid.scss +15 -17
- package/src/scss/components/_icons.scss +4 -9
- package/src/scss/components/_images.scss +1 -1
- package/src/scss/components/_input-groups.scss +17 -14
- package/src/scss/components/_jumbotron.scss +1 -1
- package/src/scss/components/_labels.scss +29 -99
- package/src/scss/components/_list-group.scss +4 -4
- package/src/scss/components/_modals.scss +1 -1
- package/src/scss/components/_multi-step-nav.scss +2 -2
- package/src/scss/components/_navbar.scss +2 -2
- package/src/scss/components/_popovers.scss +30 -30
- package/src/scss/components/_reboot.scss +3 -39
- package/src/scss/components/_side-navigation.scss +2 -2
- package/src/scss/components/_sidebar.scss +1 -1
- package/src/scss/components/_stickers.scss +36 -94
- package/src/scss/components/_toggle-switch.scss +36 -351
- package/src/scss/components/_tooltip.scss +14 -14
- package/src/scss/components/_type.scss +9 -1
- package/src/scss/components/_utilities-functional-important.scss +4 -3
- package/src/scss/functions/_global-functions.scss +26 -6
- package/src/scss/functions/_lx-icons-generated.scss +125 -117
- package/src/scss/functions/_polyfills.scss +17 -0
- package/src/scss/functions/_type-conversion-functions.scss +5 -4
- package/src/scss/mixins/_alerts.scss +25 -0
- package/src/scss/mixins/_aspect-ratio.scss +1 -1
- package/src/scss/mixins/_buttons.scss +256 -15
- package/src/scss/mixins/_cards.scss +610 -114
- package/src/scss/mixins/_custom-forms.scss +668 -0
- package/src/scss/mixins/_dropdown-menu.scss +168 -48
- package/src/scss/mixins/_forms.scss +427 -12
- package/src/scss/mixins/_globals.scss +244 -234
- package/src/scss/mixins/_grid.scss +13 -15
- package/src/scss/mixins/_labels.scss +331 -97
- package/src/scss/mixins/_links.scss +453 -33
- package/src/scss/mixins/_navbar.scss +10 -10
- package/src/scss/mixins/_rfs.scss +14 -9
- package/src/scss/mixins/_stickers.scss +168 -17
- package/src/scss/mixins/_toggle-switch.scss +1076 -14
- package/src/scss/variables/_alerts.scss +38 -14
- package/src/scss/variables/_breadcrumbs.scss +8 -4
- package/src/scss/variables/_cards.scss +46 -8
- package/src/scss/variables/_custom-forms.scss +253 -18
- package/src/scss/variables/_dropdowns.scss +583 -132
- package/src/scss/variables/_forms.scss +304 -2
- package/src/scss/variables/_globals.scss +54 -1
- package/src/scss/variables/_icons.scss +60 -9
- package/src/scss/variables/_labels.scss +303 -107
- package/src/scss/variables/_links.scss +15 -13
- package/src/scss/variables/_menubar.scss +4 -4
- package/src/scss/variables/_multi-step-nav.scss +2 -2
- package/src/scss/variables/_navbar.scss +2 -2
- package/src/scss/variables/_navs.scss +37 -17
- package/src/scss/variables/_pagination.scss +15 -13
- package/src/scss/variables/_sheets.scss +4 -2
- package/src/scss/variables/_stickers.scss +327 -50
- package/src/scss/variables/_tables.scss +25 -9
- package/src/scss/variables/_timelines.scss +1 -1
- package/src/scss/variables/_toggle-switch.scss +404 -5
- package/src/scss/variables/_type.scss +3 -0
package/lib/css/base.css
CHANGED
|
@@ -154,14 +154,12 @@ sup {
|
|
|
154
154
|
|
|
155
155
|
a {
|
|
156
156
|
color: #007bff;
|
|
157
|
-
cursor: pointer;
|
|
158
157
|
text-decoration: none;
|
|
159
158
|
}
|
|
160
159
|
a:hover {
|
|
161
160
|
color: #0056b3;
|
|
162
161
|
text-decoration: underline;
|
|
163
162
|
}
|
|
164
|
-
|
|
165
163
|
pre,
|
|
166
164
|
code,
|
|
167
165
|
kbd,
|
|
@@ -538,7 +536,6 @@ mark:before,
|
|
|
538
536
|
.c-kbd-group-sm {
|
|
539
537
|
font-size: 0.75rem;
|
|
540
538
|
}
|
|
541
|
-
|
|
542
539
|
.c-kbd-lg,
|
|
543
540
|
.c-kbd.c-kbd-lg {
|
|
544
541
|
font-size: 1rem;
|
|
@@ -547,7 +544,6 @@ mark:before,
|
|
|
547
544
|
.c-kbd-group-lg {
|
|
548
545
|
font-size: 1rem;
|
|
549
546
|
}
|
|
550
|
-
|
|
551
547
|
.c-kbd-group-light {
|
|
552
548
|
color: #6c757d;
|
|
553
549
|
}
|
|
@@ -982,7 +978,7 @@ button.collapse-icon .c-inner {
|
|
|
982
978
|
height: 1em;
|
|
983
979
|
position: absolute;
|
|
984
980
|
right: 0.9375rem;
|
|
985
|
-
top: calc(0.5rem + 0.0625rem + (((0.9375em * 1.5) - 1em)
|
|
981
|
+
top: calc(0.5rem + 0.0625rem + (((0.9375em * 1.5) - 1em) * 0.5));
|
|
986
982
|
width: 1em;
|
|
987
983
|
}
|
|
988
984
|
.collapse-icon .collapse-icon-closed .lexicon-icon,
|
|
@@ -1015,7 +1011,7 @@ button.collapse-icon .c-inner {
|
|
|
1015
1011
|
display: block;
|
|
1016
1012
|
overflow: hidden;
|
|
1017
1013
|
position: relative;
|
|
1018
|
-
padding-bottom: 100
|
|
1014
|
+
padding-bottom: calc(1 / 1 * 100%);
|
|
1019
1015
|
}
|
|
1020
1016
|
|
|
1021
1017
|
.aspect-ratio-item {
|
|
@@ -1125,19 +1121,19 @@ button.collapse-icon .c-inner {
|
|
|
1125
1121
|
}
|
|
1126
1122
|
|
|
1127
1123
|
.aspect-ratio-3-to-2 {
|
|
1128
|
-
padding-bottom:
|
|
1124
|
+
padding-bottom: calc(2 / 3 * 100%);
|
|
1129
1125
|
}
|
|
1130
1126
|
|
|
1131
1127
|
.aspect-ratio-4-to-3 {
|
|
1132
|
-
padding-bottom:
|
|
1128
|
+
padding-bottom: calc(3 / 4 * 100%);
|
|
1133
1129
|
}
|
|
1134
1130
|
|
|
1135
1131
|
.aspect-ratio-8-to-5 {
|
|
1136
|
-
padding-bottom:
|
|
1132
|
+
padding-bottom: calc(5 / 8 * 100%);
|
|
1137
1133
|
}
|
|
1138
1134
|
|
|
1139
1135
|
.aspect-ratio-16-to-9 {
|
|
1140
|
-
padding-bottom:
|
|
1136
|
+
padding-bottom: calc(9 / 16 * 100%);
|
|
1141
1137
|
}
|
|
1142
1138
|
|
|
1143
1139
|
.aspect-ratio-bg-contain {
|
|
@@ -2015,33 +2011,33 @@ input[type=button].btn-block {
|
|
|
2015
2011
|
}
|
|
2016
2012
|
|
|
2017
2013
|
.row-cols-1 > * {
|
|
2018
|
-
flex: 0 0 100
|
|
2019
|
-
max-width: 100
|
|
2014
|
+
flex: 0 0 calc(100% / 1);
|
|
2015
|
+
max-width: calc(100% / 1);
|
|
2020
2016
|
}
|
|
2021
2017
|
|
|
2022
2018
|
.row-cols-2 > * {
|
|
2023
|
-
flex: 0 0
|
|
2024
|
-
max-width:
|
|
2019
|
+
flex: 0 0 calc(100% / 2);
|
|
2020
|
+
max-width: calc(100% / 2);
|
|
2025
2021
|
}
|
|
2026
2022
|
|
|
2027
2023
|
.row-cols-3 > * {
|
|
2028
|
-
flex: 0 0
|
|
2029
|
-
max-width:
|
|
2024
|
+
flex: 0 0 calc(100% / 3);
|
|
2025
|
+
max-width: calc(100% / 3);
|
|
2030
2026
|
}
|
|
2031
2027
|
|
|
2032
2028
|
.row-cols-4 > * {
|
|
2033
|
-
flex: 0 0
|
|
2034
|
-
max-width:
|
|
2029
|
+
flex: 0 0 calc(100% / 4);
|
|
2030
|
+
max-width: calc(100% / 4);
|
|
2035
2031
|
}
|
|
2036
2032
|
|
|
2037
2033
|
.row-cols-5 > * {
|
|
2038
|
-
flex: 0 0
|
|
2039
|
-
max-width:
|
|
2034
|
+
flex: 0 0 calc(100% / 5);
|
|
2035
|
+
max-width: calc(100% / 5);
|
|
2040
2036
|
}
|
|
2041
2037
|
|
|
2042
2038
|
.row-cols-6 > * {
|
|
2043
|
-
flex: 0 0
|
|
2044
|
-
max-width:
|
|
2039
|
+
flex: 0 0 calc(100% / 6);
|
|
2040
|
+
max-width: calc(100% / 6);
|
|
2045
2041
|
}
|
|
2046
2042
|
|
|
2047
2043
|
.col-auto {
|
|
@@ -2051,63 +2047,63 @@ input[type=button].btn-block {
|
|
|
2051
2047
|
}
|
|
2052
2048
|
|
|
2053
2049
|
.col-1 {
|
|
2054
|
-
flex: 0 0
|
|
2055
|
-
max-width:
|
|
2050
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2051
|
+
max-width: calc(1 / 12 * 100%);
|
|
2056
2052
|
}
|
|
2057
2053
|
|
|
2058
2054
|
.col-2 {
|
|
2059
|
-
flex: 0 0
|
|
2060
|
-
max-width:
|
|
2055
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2056
|
+
max-width: calc(2 / 12 * 100%);
|
|
2061
2057
|
}
|
|
2062
2058
|
|
|
2063
2059
|
.col-3 {
|
|
2064
|
-
flex: 0 0
|
|
2065
|
-
max-width:
|
|
2060
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2061
|
+
max-width: calc(3 / 12 * 100%);
|
|
2066
2062
|
}
|
|
2067
2063
|
|
|
2068
2064
|
.col-4 {
|
|
2069
|
-
flex: 0 0
|
|
2070
|
-
max-width:
|
|
2065
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2066
|
+
max-width: calc(4 / 12 * 100%);
|
|
2071
2067
|
}
|
|
2072
2068
|
|
|
2073
2069
|
.col-5 {
|
|
2074
|
-
flex: 0 0
|
|
2075
|
-
max-width:
|
|
2070
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2071
|
+
max-width: calc(5 / 12 * 100%);
|
|
2076
2072
|
}
|
|
2077
2073
|
|
|
2078
2074
|
.col-6 {
|
|
2079
|
-
flex: 0 0
|
|
2080
|
-
max-width:
|
|
2075
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2076
|
+
max-width: calc(6 / 12 * 100%);
|
|
2081
2077
|
}
|
|
2082
2078
|
|
|
2083
2079
|
.col-7 {
|
|
2084
|
-
flex: 0 0
|
|
2085
|
-
max-width:
|
|
2080
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2081
|
+
max-width: calc(7 / 12 * 100%);
|
|
2086
2082
|
}
|
|
2087
2083
|
|
|
2088
2084
|
.col-8 {
|
|
2089
|
-
flex: 0 0
|
|
2090
|
-
max-width:
|
|
2085
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2086
|
+
max-width: calc(8 / 12 * 100%);
|
|
2091
2087
|
}
|
|
2092
2088
|
|
|
2093
2089
|
.col-9 {
|
|
2094
|
-
flex: 0 0
|
|
2095
|
-
max-width:
|
|
2090
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2091
|
+
max-width: calc(9 / 12 * 100%);
|
|
2096
2092
|
}
|
|
2097
2093
|
|
|
2098
2094
|
.col-10 {
|
|
2099
|
-
flex: 0 0
|
|
2100
|
-
max-width:
|
|
2095
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2096
|
+
max-width: calc(10 / 12 * 100%);
|
|
2101
2097
|
}
|
|
2102
2098
|
|
|
2103
2099
|
.col-11 {
|
|
2104
|
-
flex: 0 0
|
|
2105
|
-
max-width:
|
|
2100
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2101
|
+
max-width: calc(11 / 12 * 100%);
|
|
2106
2102
|
}
|
|
2107
2103
|
|
|
2108
2104
|
.col-12 {
|
|
2109
|
-
flex: 0 0 100
|
|
2110
|
-
max-width: 100
|
|
2105
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2106
|
+
max-width: calc(12 / 12 * 100%);
|
|
2111
2107
|
}
|
|
2112
2108
|
|
|
2113
2109
|
.order-first {
|
|
@@ -2171,47 +2167,47 @@ input[type=button].btn-block {
|
|
|
2171
2167
|
}
|
|
2172
2168
|
|
|
2173
2169
|
.offset-1 {
|
|
2174
|
-
margin-left:
|
|
2170
|
+
margin-left: calc(1 / 12 * 100%);
|
|
2175
2171
|
}
|
|
2176
2172
|
|
|
2177
2173
|
.offset-2 {
|
|
2178
|
-
margin-left:
|
|
2174
|
+
margin-left: calc(2 / 12 * 100%);
|
|
2179
2175
|
}
|
|
2180
2176
|
|
|
2181
2177
|
.offset-3 {
|
|
2182
|
-
margin-left:
|
|
2178
|
+
margin-left: calc(3 / 12 * 100%);
|
|
2183
2179
|
}
|
|
2184
2180
|
|
|
2185
2181
|
.offset-4 {
|
|
2186
|
-
margin-left:
|
|
2182
|
+
margin-left: calc(4 / 12 * 100%);
|
|
2187
2183
|
}
|
|
2188
2184
|
|
|
2189
2185
|
.offset-5 {
|
|
2190
|
-
margin-left:
|
|
2186
|
+
margin-left: calc(5 / 12 * 100%);
|
|
2191
2187
|
}
|
|
2192
2188
|
|
|
2193
2189
|
.offset-6 {
|
|
2194
|
-
margin-left:
|
|
2190
|
+
margin-left: calc(6 / 12 * 100%);
|
|
2195
2191
|
}
|
|
2196
2192
|
|
|
2197
2193
|
.offset-7 {
|
|
2198
|
-
margin-left:
|
|
2194
|
+
margin-left: calc(7 / 12 * 100%);
|
|
2199
2195
|
}
|
|
2200
2196
|
|
|
2201
2197
|
.offset-8 {
|
|
2202
|
-
margin-left:
|
|
2198
|
+
margin-left: calc(8 / 12 * 100%);
|
|
2203
2199
|
}
|
|
2204
2200
|
|
|
2205
2201
|
.offset-9 {
|
|
2206
|
-
margin-left:
|
|
2202
|
+
margin-left: calc(9 / 12 * 100%);
|
|
2207
2203
|
}
|
|
2208
2204
|
|
|
2209
2205
|
.offset-10 {
|
|
2210
|
-
margin-left:
|
|
2206
|
+
margin-left: calc(10 / 12 * 100%);
|
|
2211
2207
|
}
|
|
2212
2208
|
|
|
2213
2209
|
.offset-11 {
|
|
2214
|
-
margin-left:
|
|
2210
|
+
margin-left: calc(11 / 12 * 100%);
|
|
2215
2211
|
}
|
|
2216
2212
|
|
|
2217
2213
|
@media (min-width: 576px) {
|
|
@@ -2222,33 +2218,33 @@ input[type=button].btn-block {
|
|
|
2222
2218
|
}
|
|
2223
2219
|
|
|
2224
2220
|
.row-cols-sm-1 > * {
|
|
2225
|
-
flex: 0 0 100
|
|
2226
|
-
max-width: 100
|
|
2221
|
+
flex: 0 0 calc(100% / 1);
|
|
2222
|
+
max-width: calc(100% / 1);
|
|
2227
2223
|
}
|
|
2228
2224
|
|
|
2229
2225
|
.row-cols-sm-2 > * {
|
|
2230
|
-
flex: 0 0
|
|
2231
|
-
max-width:
|
|
2226
|
+
flex: 0 0 calc(100% / 2);
|
|
2227
|
+
max-width: calc(100% / 2);
|
|
2232
2228
|
}
|
|
2233
2229
|
|
|
2234
2230
|
.row-cols-sm-3 > * {
|
|
2235
|
-
flex: 0 0
|
|
2236
|
-
max-width:
|
|
2231
|
+
flex: 0 0 calc(100% / 3);
|
|
2232
|
+
max-width: calc(100% / 3);
|
|
2237
2233
|
}
|
|
2238
2234
|
|
|
2239
2235
|
.row-cols-sm-4 > * {
|
|
2240
|
-
flex: 0 0
|
|
2241
|
-
max-width:
|
|
2236
|
+
flex: 0 0 calc(100% / 4);
|
|
2237
|
+
max-width: calc(100% / 4);
|
|
2242
2238
|
}
|
|
2243
2239
|
|
|
2244
2240
|
.row-cols-sm-5 > * {
|
|
2245
|
-
flex: 0 0
|
|
2246
|
-
max-width:
|
|
2241
|
+
flex: 0 0 calc(100% / 5);
|
|
2242
|
+
max-width: calc(100% / 5);
|
|
2247
2243
|
}
|
|
2248
2244
|
|
|
2249
2245
|
.row-cols-sm-6 > * {
|
|
2250
|
-
flex: 0 0
|
|
2251
|
-
max-width:
|
|
2246
|
+
flex: 0 0 calc(100% / 6);
|
|
2247
|
+
max-width: calc(100% / 6);
|
|
2252
2248
|
}
|
|
2253
2249
|
|
|
2254
2250
|
.col-sm-auto {
|
|
@@ -2258,63 +2254,63 @@ input[type=button].btn-block {
|
|
|
2258
2254
|
}
|
|
2259
2255
|
|
|
2260
2256
|
.col-sm-1 {
|
|
2261
|
-
flex: 0 0
|
|
2262
|
-
max-width:
|
|
2257
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2258
|
+
max-width: calc(1 / 12 * 100%);
|
|
2263
2259
|
}
|
|
2264
2260
|
|
|
2265
2261
|
.col-sm-2 {
|
|
2266
|
-
flex: 0 0
|
|
2267
|
-
max-width:
|
|
2262
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2263
|
+
max-width: calc(2 / 12 * 100%);
|
|
2268
2264
|
}
|
|
2269
2265
|
|
|
2270
2266
|
.col-sm-3 {
|
|
2271
|
-
flex: 0 0
|
|
2272
|
-
max-width:
|
|
2267
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2268
|
+
max-width: calc(3 / 12 * 100%);
|
|
2273
2269
|
}
|
|
2274
2270
|
|
|
2275
2271
|
.col-sm-4 {
|
|
2276
|
-
flex: 0 0
|
|
2277
|
-
max-width:
|
|
2272
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2273
|
+
max-width: calc(4 / 12 * 100%);
|
|
2278
2274
|
}
|
|
2279
2275
|
|
|
2280
2276
|
.col-sm-5 {
|
|
2281
|
-
flex: 0 0
|
|
2282
|
-
max-width:
|
|
2277
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2278
|
+
max-width: calc(5 / 12 * 100%);
|
|
2283
2279
|
}
|
|
2284
2280
|
|
|
2285
2281
|
.col-sm-6 {
|
|
2286
|
-
flex: 0 0
|
|
2287
|
-
max-width:
|
|
2282
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2283
|
+
max-width: calc(6 / 12 * 100%);
|
|
2288
2284
|
}
|
|
2289
2285
|
|
|
2290
2286
|
.col-sm-7 {
|
|
2291
|
-
flex: 0 0
|
|
2292
|
-
max-width:
|
|
2287
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2288
|
+
max-width: calc(7 / 12 * 100%);
|
|
2293
2289
|
}
|
|
2294
2290
|
|
|
2295
2291
|
.col-sm-8 {
|
|
2296
|
-
flex: 0 0
|
|
2297
|
-
max-width:
|
|
2292
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2293
|
+
max-width: calc(8 / 12 * 100%);
|
|
2298
2294
|
}
|
|
2299
2295
|
|
|
2300
2296
|
.col-sm-9 {
|
|
2301
|
-
flex: 0 0
|
|
2302
|
-
max-width:
|
|
2297
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2298
|
+
max-width: calc(9 / 12 * 100%);
|
|
2303
2299
|
}
|
|
2304
2300
|
|
|
2305
2301
|
.col-sm-10 {
|
|
2306
|
-
flex: 0 0
|
|
2307
|
-
max-width:
|
|
2302
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2303
|
+
max-width: calc(10 / 12 * 100%);
|
|
2308
2304
|
}
|
|
2309
2305
|
|
|
2310
2306
|
.col-sm-11 {
|
|
2311
|
-
flex: 0 0
|
|
2312
|
-
max-width:
|
|
2307
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2308
|
+
max-width: calc(11 / 12 * 100%);
|
|
2313
2309
|
}
|
|
2314
2310
|
|
|
2315
2311
|
.col-sm-12 {
|
|
2316
|
-
flex: 0 0 100
|
|
2317
|
-
max-width: 100
|
|
2312
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2313
|
+
max-width: calc(12 / 12 * 100%);
|
|
2318
2314
|
}
|
|
2319
2315
|
|
|
2320
2316
|
.order-sm-first {
|
|
@@ -2378,51 +2374,51 @@ input[type=button].btn-block {
|
|
|
2378
2374
|
}
|
|
2379
2375
|
|
|
2380
2376
|
.offset-sm-0 {
|
|
2381
|
-
margin-left: 0;
|
|
2377
|
+
margin-left: calc(0 / 12 * 100%);
|
|
2382
2378
|
}
|
|
2383
2379
|
|
|
2384
2380
|
.offset-sm-1 {
|
|
2385
|
-
margin-left:
|
|
2381
|
+
margin-left: calc(1 / 12 * 100%);
|
|
2386
2382
|
}
|
|
2387
2383
|
|
|
2388
2384
|
.offset-sm-2 {
|
|
2389
|
-
margin-left:
|
|
2385
|
+
margin-left: calc(2 / 12 * 100%);
|
|
2390
2386
|
}
|
|
2391
2387
|
|
|
2392
2388
|
.offset-sm-3 {
|
|
2393
|
-
margin-left:
|
|
2389
|
+
margin-left: calc(3 / 12 * 100%);
|
|
2394
2390
|
}
|
|
2395
2391
|
|
|
2396
2392
|
.offset-sm-4 {
|
|
2397
|
-
margin-left:
|
|
2393
|
+
margin-left: calc(4 / 12 * 100%);
|
|
2398
2394
|
}
|
|
2399
2395
|
|
|
2400
2396
|
.offset-sm-5 {
|
|
2401
|
-
margin-left:
|
|
2397
|
+
margin-left: calc(5 / 12 * 100%);
|
|
2402
2398
|
}
|
|
2403
2399
|
|
|
2404
2400
|
.offset-sm-6 {
|
|
2405
|
-
margin-left:
|
|
2401
|
+
margin-left: calc(6 / 12 * 100%);
|
|
2406
2402
|
}
|
|
2407
2403
|
|
|
2408
2404
|
.offset-sm-7 {
|
|
2409
|
-
margin-left:
|
|
2405
|
+
margin-left: calc(7 / 12 * 100%);
|
|
2410
2406
|
}
|
|
2411
2407
|
|
|
2412
2408
|
.offset-sm-8 {
|
|
2413
|
-
margin-left:
|
|
2409
|
+
margin-left: calc(8 / 12 * 100%);
|
|
2414
2410
|
}
|
|
2415
2411
|
|
|
2416
2412
|
.offset-sm-9 {
|
|
2417
|
-
margin-left:
|
|
2413
|
+
margin-left: calc(9 / 12 * 100%);
|
|
2418
2414
|
}
|
|
2419
2415
|
|
|
2420
2416
|
.offset-sm-10 {
|
|
2421
|
-
margin-left:
|
|
2417
|
+
margin-left: calc(10 / 12 * 100%);
|
|
2422
2418
|
}
|
|
2423
2419
|
|
|
2424
2420
|
.offset-sm-11 {
|
|
2425
|
-
margin-left:
|
|
2421
|
+
margin-left: calc(11 / 12 * 100%);
|
|
2426
2422
|
}
|
|
2427
2423
|
}
|
|
2428
2424
|
@media (min-width: 768px) {
|
|
@@ -2433,33 +2429,33 @@ input[type=button].btn-block {
|
|
|
2433
2429
|
}
|
|
2434
2430
|
|
|
2435
2431
|
.row-cols-md-1 > * {
|
|
2436
|
-
flex: 0 0 100
|
|
2437
|
-
max-width: 100
|
|
2432
|
+
flex: 0 0 calc(100% / 1);
|
|
2433
|
+
max-width: calc(100% / 1);
|
|
2438
2434
|
}
|
|
2439
2435
|
|
|
2440
2436
|
.row-cols-md-2 > * {
|
|
2441
|
-
flex: 0 0
|
|
2442
|
-
max-width:
|
|
2437
|
+
flex: 0 0 calc(100% / 2);
|
|
2438
|
+
max-width: calc(100% / 2);
|
|
2443
2439
|
}
|
|
2444
2440
|
|
|
2445
2441
|
.row-cols-md-3 > * {
|
|
2446
|
-
flex: 0 0
|
|
2447
|
-
max-width:
|
|
2442
|
+
flex: 0 0 calc(100% / 3);
|
|
2443
|
+
max-width: calc(100% / 3);
|
|
2448
2444
|
}
|
|
2449
2445
|
|
|
2450
2446
|
.row-cols-md-4 > * {
|
|
2451
|
-
flex: 0 0
|
|
2452
|
-
max-width:
|
|
2447
|
+
flex: 0 0 calc(100% / 4);
|
|
2448
|
+
max-width: calc(100% / 4);
|
|
2453
2449
|
}
|
|
2454
2450
|
|
|
2455
2451
|
.row-cols-md-5 > * {
|
|
2456
|
-
flex: 0 0
|
|
2457
|
-
max-width:
|
|
2452
|
+
flex: 0 0 calc(100% / 5);
|
|
2453
|
+
max-width: calc(100% / 5);
|
|
2458
2454
|
}
|
|
2459
2455
|
|
|
2460
2456
|
.row-cols-md-6 > * {
|
|
2461
|
-
flex: 0 0
|
|
2462
|
-
max-width:
|
|
2457
|
+
flex: 0 0 calc(100% / 6);
|
|
2458
|
+
max-width: calc(100% / 6);
|
|
2463
2459
|
}
|
|
2464
2460
|
|
|
2465
2461
|
.col-md-auto {
|
|
@@ -2469,63 +2465,63 @@ input[type=button].btn-block {
|
|
|
2469
2465
|
}
|
|
2470
2466
|
|
|
2471
2467
|
.col-md-1 {
|
|
2472
|
-
flex: 0 0
|
|
2473
|
-
max-width:
|
|
2468
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2469
|
+
max-width: calc(1 / 12 * 100%);
|
|
2474
2470
|
}
|
|
2475
2471
|
|
|
2476
2472
|
.col-md-2 {
|
|
2477
|
-
flex: 0 0
|
|
2478
|
-
max-width:
|
|
2473
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2474
|
+
max-width: calc(2 / 12 * 100%);
|
|
2479
2475
|
}
|
|
2480
2476
|
|
|
2481
2477
|
.col-md-3 {
|
|
2482
|
-
flex: 0 0
|
|
2483
|
-
max-width:
|
|
2478
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2479
|
+
max-width: calc(3 / 12 * 100%);
|
|
2484
2480
|
}
|
|
2485
2481
|
|
|
2486
2482
|
.col-md-4 {
|
|
2487
|
-
flex: 0 0
|
|
2488
|
-
max-width:
|
|
2483
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2484
|
+
max-width: calc(4 / 12 * 100%);
|
|
2489
2485
|
}
|
|
2490
2486
|
|
|
2491
2487
|
.col-md-5 {
|
|
2492
|
-
flex: 0 0
|
|
2493
|
-
max-width:
|
|
2488
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2489
|
+
max-width: calc(5 / 12 * 100%);
|
|
2494
2490
|
}
|
|
2495
2491
|
|
|
2496
2492
|
.col-md-6 {
|
|
2497
|
-
flex: 0 0
|
|
2498
|
-
max-width:
|
|
2493
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2494
|
+
max-width: calc(6 / 12 * 100%);
|
|
2499
2495
|
}
|
|
2500
2496
|
|
|
2501
2497
|
.col-md-7 {
|
|
2502
|
-
flex: 0 0
|
|
2503
|
-
max-width:
|
|
2498
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2499
|
+
max-width: calc(7 / 12 * 100%);
|
|
2504
2500
|
}
|
|
2505
2501
|
|
|
2506
2502
|
.col-md-8 {
|
|
2507
|
-
flex: 0 0
|
|
2508
|
-
max-width:
|
|
2503
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2504
|
+
max-width: calc(8 / 12 * 100%);
|
|
2509
2505
|
}
|
|
2510
2506
|
|
|
2511
2507
|
.col-md-9 {
|
|
2512
|
-
flex: 0 0
|
|
2513
|
-
max-width:
|
|
2508
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2509
|
+
max-width: calc(9 / 12 * 100%);
|
|
2514
2510
|
}
|
|
2515
2511
|
|
|
2516
2512
|
.col-md-10 {
|
|
2517
|
-
flex: 0 0
|
|
2518
|
-
max-width:
|
|
2513
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2514
|
+
max-width: calc(10 / 12 * 100%);
|
|
2519
2515
|
}
|
|
2520
2516
|
|
|
2521
2517
|
.col-md-11 {
|
|
2522
|
-
flex: 0 0
|
|
2523
|
-
max-width:
|
|
2518
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2519
|
+
max-width: calc(11 / 12 * 100%);
|
|
2524
2520
|
}
|
|
2525
2521
|
|
|
2526
2522
|
.col-md-12 {
|
|
2527
|
-
flex: 0 0 100
|
|
2528
|
-
max-width: 100
|
|
2523
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2524
|
+
max-width: calc(12 / 12 * 100%);
|
|
2529
2525
|
}
|
|
2530
2526
|
|
|
2531
2527
|
.order-md-first {
|
|
@@ -2589,51 +2585,51 @@ input[type=button].btn-block {
|
|
|
2589
2585
|
}
|
|
2590
2586
|
|
|
2591
2587
|
.offset-md-0 {
|
|
2592
|
-
margin-left: 0;
|
|
2588
|
+
margin-left: calc(0 / 12 * 100%);
|
|
2593
2589
|
}
|
|
2594
2590
|
|
|
2595
2591
|
.offset-md-1 {
|
|
2596
|
-
margin-left:
|
|
2592
|
+
margin-left: calc(1 / 12 * 100%);
|
|
2597
2593
|
}
|
|
2598
2594
|
|
|
2599
2595
|
.offset-md-2 {
|
|
2600
|
-
margin-left:
|
|
2596
|
+
margin-left: calc(2 / 12 * 100%);
|
|
2601
2597
|
}
|
|
2602
2598
|
|
|
2603
2599
|
.offset-md-3 {
|
|
2604
|
-
margin-left:
|
|
2600
|
+
margin-left: calc(3 / 12 * 100%);
|
|
2605
2601
|
}
|
|
2606
2602
|
|
|
2607
2603
|
.offset-md-4 {
|
|
2608
|
-
margin-left:
|
|
2604
|
+
margin-left: calc(4 / 12 * 100%);
|
|
2609
2605
|
}
|
|
2610
2606
|
|
|
2611
2607
|
.offset-md-5 {
|
|
2612
|
-
margin-left:
|
|
2608
|
+
margin-left: calc(5 / 12 * 100%);
|
|
2613
2609
|
}
|
|
2614
2610
|
|
|
2615
2611
|
.offset-md-6 {
|
|
2616
|
-
margin-left:
|
|
2612
|
+
margin-left: calc(6 / 12 * 100%);
|
|
2617
2613
|
}
|
|
2618
2614
|
|
|
2619
2615
|
.offset-md-7 {
|
|
2620
|
-
margin-left:
|
|
2616
|
+
margin-left: calc(7 / 12 * 100%);
|
|
2621
2617
|
}
|
|
2622
2618
|
|
|
2623
2619
|
.offset-md-8 {
|
|
2624
|
-
margin-left:
|
|
2620
|
+
margin-left: calc(8 / 12 * 100%);
|
|
2625
2621
|
}
|
|
2626
2622
|
|
|
2627
2623
|
.offset-md-9 {
|
|
2628
|
-
margin-left:
|
|
2624
|
+
margin-left: calc(9 / 12 * 100%);
|
|
2629
2625
|
}
|
|
2630
2626
|
|
|
2631
2627
|
.offset-md-10 {
|
|
2632
|
-
margin-left:
|
|
2628
|
+
margin-left: calc(10 / 12 * 100%);
|
|
2633
2629
|
}
|
|
2634
2630
|
|
|
2635
2631
|
.offset-md-11 {
|
|
2636
|
-
margin-left:
|
|
2632
|
+
margin-left: calc(11 / 12 * 100%);
|
|
2637
2633
|
}
|
|
2638
2634
|
}
|
|
2639
2635
|
@media (min-width: 992px) {
|
|
@@ -2644,33 +2640,33 @@ input[type=button].btn-block {
|
|
|
2644
2640
|
}
|
|
2645
2641
|
|
|
2646
2642
|
.row-cols-lg-1 > * {
|
|
2647
|
-
flex: 0 0 100
|
|
2648
|
-
max-width: 100
|
|
2643
|
+
flex: 0 0 calc(100% / 1);
|
|
2644
|
+
max-width: calc(100% / 1);
|
|
2649
2645
|
}
|
|
2650
2646
|
|
|
2651
2647
|
.row-cols-lg-2 > * {
|
|
2652
|
-
flex: 0 0
|
|
2653
|
-
max-width:
|
|
2648
|
+
flex: 0 0 calc(100% / 2);
|
|
2649
|
+
max-width: calc(100% / 2);
|
|
2654
2650
|
}
|
|
2655
2651
|
|
|
2656
2652
|
.row-cols-lg-3 > * {
|
|
2657
|
-
flex: 0 0
|
|
2658
|
-
max-width:
|
|
2653
|
+
flex: 0 0 calc(100% / 3);
|
|
2654
|
+
max-width: calc(100% / 3);
|
|
2659
2655
|
}
|
|
2660
2656
|
|
|
2661
2657
|
.row-cols-lg-4 > * {
|
|
2662
|
-
flex: 0 0
|
|
2663
|
-
max-width:
|
|
2658
|
+
flex: 0 0 calc(100% / 4);
|
|
2659
|
+
max-width: calc(100% / 4);
|
|
2664
2660
|
}
|
|
2665
2661
|
|
|
2666
2662
|
.row-cols-lg-5 > * {
|
|
2667
|
-
flex: 0 0
|
|
2668
|
-
max-width:
|
|
2663
|
+
flex: 0 0 calc(100% / 5);
|
|
2664
|
+
max-width: calc(100% / 5);
|
|
2669
2665
|
}
|
|
2670
2666
|
|
|
2671
2667
|
.row-cols-lg-6 > * {
|
|
2672
|
-
flex: 0 0
|
|
2673
|
-
max-width:
|
|
2668
|
+
flex: 0 0 calc(100% / 6);
|
|
2669
|
+
max-width: calc(100% / 6);
|
|
2674
2670
|
}
|
|
2675
2671
|
|
|
2676
2672
|
.col-lg-auto {
|
|
@@ -2680,63 +2676,63 @@ input[type=button].btn-block {
|
|
|
2680
2676
|
}
|
|
2681
2677
|
|
|
2682
2678
|
.col-lg-1 {
|
|
2683
|
-
flex: 0 0
|
|
2684
|
-
max-width:
|
|
2679
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2680
|
+
max-width: calc(1 / 12 * 100%);
|
|
2685
2681
|
}
|
|
2686
2682
|
|
|
2687
2683
|
.col-lg-2 {
|
|
2688
|
-
flex: 0 0
|
|
2689
|
-
max-width:
|
|
2684
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2685
|
+
max-width: calc(2 / 12 * 100%);
|
|
2690
2686
|
}
|
|
2691
2687
|
|
|
2692
2688
|
.col-lg-3 {
|
|
2693
|
-
flex: 0 0
|
|
2694
|
-
max-width:
|
|
2689
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2690
|
+
max-width: calc(3 / 12 * 100%);
|
|
2695
2691
|
}
|
|
2696
2692
|
|
|
2697
2693
|
.col-lg-4 {
|
|
2698
|
-
flex: 0 0
|
|
2699
|
-
max-width:
|
|
2694
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2695
|
+
max-width: calc(4 / 12 * 100%);
|
|
2700
2696
|
}
|
|
2701
2697
|
|
|
2702
2698
|
.col-lg-5 {
|
|
2703
|
-
flex: 0 0
|
|
2704
|
-
max-width:
|
|
2699
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2700
|
+
max-width: calc(5 / 12 * 100%);
|
|
2705
2701
|
}
|
|
2706
2702
|
|
|
2707
2703
|
.col-lg-6 {
|
|
2708
|
-
flex: 0 0
|
|
2709
|
-
max-width:
|
|
2704
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2705
|
+
max-width: calc(6 / 12 * 100%);
|
|
2710
2706
|
}
|
|
2711
2707
|
|
|
2712
2708
|
.col-lg-7 {
|
|
2713
|
-
flex: 0 0
|
|
2714
|
-
max-width:
|
|
2709
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2710
|
+
max-width: calc(7 / 12 * 100%);
|
|
2715
2711
|
}
|
|
2716
2712
|
|
|
2717
2713
|
.col-lg-8 {
|
|
2718
|
-
flex: 0 0
|
|
2719
|
-
max-width:
|
|
2714
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2715
|
+
max-width: calc(8 / 12 * 100%);
|
|
2720
2716
|
}
|
|
2721
2717
|
|
|
2722
2718
|
.col-lg-9 {
|
|
2723
|
-
flex: 0 0
|
|
2724
|
-
max-width:
|
|
2719
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2720
|
+
max-width: calc(9 / 12 * 100%);
|
|
2725
2721
|
}
|
|
2726
2722
|
|
|
2727
2723
|
.col-lg-10 {
|
|
2728
|
-
flex: 0 0
|
|
2729
|
-
max-width:
|
|
2724
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2725
|
+
max-width: calc(10 / 12 * 100%);
|
|
2730
2726
|
}
|
|
2731
2727
|
|
|
2732
2728
|
.col-lg-11 {
|
|
2733
|
-
flex: 0 0
|
|
2734
|
-
max-width:
|
|
2729
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2730
|
+
max-width: calc(11 / 12 * 100%);
|
|
2735
2731
|
}
|
|
2736
2732
|
|
|
2737
2733
|
.col-lg-12 {
|
|
2738
|
-
flex: 0 0 100
|
|
2739
|
-
max-width: 100
|
|
2734
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2735
|
+
max-width: calc(12 / 12 * 100%);
|
|
2740
2736
|
}
|
|
2741
2737
|
|
|
2742
2738
|
.order-lg-first {
|
|
@@ -2800,51 +2796,51 @@ input[type=button].btn-block {
|
|
|
2800
2796
|
}
|
|
2801
2797
|
|
|
2802
2798
|
.offset-lg-0 {
|
|
2803
|
-
margin-left: 0;
|
|
2799
|
+
margin-left: calc(0 / 12 * 100%);
|
|
2804
2800
|
}
|
|
2805
2801
|
|
|
2806
2802
|
.offset-lg-1 {
|
|
2807
|
-
margin-left:
|
|
2803
|
+
margin-left: calc(1 / 12 * 100%);
|
|
2808
2804
|
}
|
|
2809
2805
|
|
|
2810
2806
|
.offset-lg-2 {
|
|
2811
|
-
margin-left:
|
|
2807
|
+
margin-left: calc(2 / 12 * 100%);
|
|
2812
2808
|
}
|
|
2813
2809
|
|
|
2814
2810
|
.offset-lg-3 {
|
|
2815
|
-
margin-left:
|
|
2811
|
+
margin-left: calc(3 / 12 * 100%);
|
|
2816
2812
|
}
|
|
2817
2813
|
|
|
2818
2814
|
.offset-lg-4 {
|
|
2819
|
-
margin-left:
|
|
2815
|
+
margin-left: calc(4 / 12 * 100%);
|
|
2820
2816
|
}
|
|
2821
2817
|
|
|
2822
2818
|
.offset-lg-5 {
|
|
2823
|
-
margin-left:
|
|
2819
|
+
margin-left: calc(5 / 12 * 100%);
|
|
2824
2820
|
}
|
|
2825
2821
|
|
|
2826
2822
|
.offset-lg-6 {
|
|
2827
|
-
margin-left:
|
|
2823
|
+
margin-left: calc(6 / 12 * 100%);
|
|
2828
2824
|
}
|
|
2829
2825
|
|
|
2830
2826
|
.offset-lg-7 {
|
|
2831
|
-
margin-left:
|
|
2827
|
+
margin-left: calc(7 / 12 * 100%);
|
|
2832
2828
|
}
|
|
2833
2829
|
|
|
2834
2830
|
.offset-lg-8 {
|
|
2835
|
-
margin-left:
|
|
2831
|
+
margin-left: calc(8 / 12 * 100%);
|
|
2836
2832
|
}
|
|
2837
2833
|
|
|
2838
2834
|
.offset-lg-9 {
|
|
2839
|
-
margin-left:
|
|
2835
|
+
margin-left: calc(9 / 12 * 100%);
|
|
2840
2836
|
}
|
|
2841
2837
|
|
|
2842
2838
|
.offset-lg-10 {
|
|
2843
|
-
margin-left:
|
|
2839
|
+
margin-left: calc(10 / 12 * 100%);
|
|
2844
2840
|
}
|
|
2845
2841
|
|
|
2846
2842
|
.offset-lg-11 {
|
|
2847
|
-
margin-left:
|
|
2843
|
+
margin-left: calc(11 / 12 * 100%);
|
|
2848
2844
|
}
|
|
2849
2845
|
}
|
|
2850
2846
|
@media (min-width: 1200px) {
|
|
@@ -2855,33 +2851,33 @@ input[type=button].btn-block {
|
|
|
2855
2851
|
}
|
|
2856
2852
|
|
|
2857
2853
|
.row-cols-xl-1 > * {
|
|
2858
|
-
flex: 0 0 100
|
|
2859
|
-
max-width: 100
|
|
2854
|
+
flex: 0 0 calc(100% / 1);
|
|
2855
|
+
max-width: calc(100% / 1);
|
|
2860
2856
|
}
|
|
2861
2857
|
|
|
2862
2858
|
.row-cols-xl-2 > * {
|
|
2863
|
-
flex: 0 0
|
|
2864
|
-
max-width:
|
|
2859
|
+
flex: 0 0 calc(100% / 2);
|
|
2860
|
+
max-width: calc(100% / 2);
|
|
2865
2861
|
}
|
|
2866
2862
|
|
|
2867
2863
|
.row-cols-xl-3 > * {
|
|
2868
|
-
flex: 0 0
|
|
2869
|
-
max-width:
|
|
2864
|
+
flex: 0 0 calc(100% / 3);
|
|
2865
|
+
max-width: calc(100% / 3);
|
|
2870
2866
|
}
|
|
2871
2867
|
|
|
2872
2868
|
.row-cols-xl-4 > * {
|
|
2873
|
-
flex: 0 0
|
|
2874
|
-
max-width:
|
|
2869
|
+
flex: 0 0 calc(100% / 4);
|
|
2870
|
+
max-width: calc(100% / 4);
|
|
2875
2871
|
}
|
|
2876
2872
|
|
|
2877
2873
|
.row-cols-xl-5 > * {
|
|
2878
|
-
flex: 0 0
|
|
2879
|
-
max-width:
|
|
2874
|
+
flex: 0 0 calc(100% / 5);
|
|
2875
|
+
max-width: calc(100% / 5);
|
|
2880
2876
|
}
|
|
2881
2877
|
|
|
2882
2878
|
.row-cols-xl-6 > * {
|
|
2883
|
-
flex: 0 0
|
|
2884
|
-
max-width:
|
|
2879
|
+
flex: 0 0 calc(100% / 6);
|
|
2880
|
+
max-width: calc(100% / 6);
|
|
2885
2881
|
}
|
|
2886
2882
|
|
|
2887
2883
|
.col-xl-auto {
|
|
@@ -2891,63 +2887,63 @@ input[type=button].btn-block {
|
|
|
2891
2887
|
}
|
|
2892
2888
|
|
|
2893
2889
|
.col-xl-1 {
|
|
2894
|
-
flex: 0 0
|
|
2895
|
-
max-width:
|
|
2890
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2891
|
+
max-width: calc(1 / 12 * 100%);
|
|
2896
2892
|
}
|
|
2897
2893
|
|
|
2898
2894
|
.col-xl-2 {
|
|
2899
|
-
flex: 0 0
|
|
2900
|
-
max-width:
|
|
2895
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2896
|
+
max-width: calc(2 / 12 * 100%);
|
|
2901
2897
|
}
|
|
2902
2898
|
|
|
2903
2899
|
.col-xl-3 {
|
|
2904
|
-
flex: 0 0
|
|
2905
|
-
max-width:
|
|
2900
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2901
|
+
max-width: calc(3 / 12 * 100%);
|
|
2906
2902
|
}
|
|
2907
2903
|
|
|
2908
2904
|
.col-xl-4 {
|
|
2909
|
-
flex: 0 0
|
|
2910
|
-
max-width:
|
|
2905
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2906
|
+
max-width: calc(4 / 12 * 100%);
|
|
2911
2907
|
}
|
|
2912
2908
|
|
|
2913
2909
|
.col-xl-5 {
|
|
2914
|
-
flex: 0 0
|
|
2915
|
-
max-width:
|
|
2910
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2911
|
+
max-width: calc(5 / 12 * 100%);
|
|
2916
2912
|
}
|
|
2917
2913
|
|
|
2918
2914
|
.col-xl-6 {
|
|
2919
|
-
flex: 0 0
|
|
2920
|
-
max-width:
|
|
2915
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2916
|
+
max-width: calc(6 / 12 * 100%);
|
|
2921
2917
|
}
|
|
2922
2918
|
|
|
2923
2919
|
.col-xl-7 {
|
|
2924
|
-
flex: 0 0
|
|
2925
|
-
max-width:
|
|
2920
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2921
|
+
max-width: calc(7 / 12 * 100%);
|
|
2926
2922
|
}
|
|
2927
2923
|
|
|
2928
2924
|
.col-xl-8 {
|
|
2929
|
-
flex: 0 0
|
|
2930
|
-
max-width:
|
|
2925
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2926
|
+
max-width: calc(8 / 12 * 100%);
|
|
2931
2927
|
}
|
|
2932
2928
|
|
|
2933
2929
|
.col-xl-9 {
|
|
2934
|
-
flex: 0 0
|
|
2935
|
-
max-width:
|
|
2930
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2931
|
+
max-width: calc(9 / 12 * 100%);
|
|
2936
2932
|
}
|
|
2937
2933
|
|
|
2938
2934
|
.col-xl-10 {
|
|
2939
|
-
flex: 0 0
|
|
2940
|
-
max-width:
|
|
2935
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2936
|
+
max-width: calc(10 / 12 * 100%);
|
|
2941
2937
|
}
|
|
2942
2938
|
|
|
2943
2939
|
.col-xl-11 {
|
|
2944
|
-
flex: 0 0
|
|
2945
|
-
max-width:
|
|
2940
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2941
|
+
max-width: calc(11 / 12 * 100%);
|
|
2946
2942
|
}
|
|
2947
2943
|
|
|
2948
2944
|
.col-xl-12 {
|
|
2949
|
-
flex: 0 0 100
|
|
2950
|
-
max-width: 100
|
|
2945
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2946
|
+
max-width: calc(12 / 12 * 100%);
|
|
2951
2947
|
}
|
|
2952
2948
|
|
|
2953
2949
|
.order-xl-first {
|
|
@@ -3011,51 +3007,51 @@ input[type=button].btn-block {
|
|
|
3011
3007
|
}
|
|
3012
3008
|
|
|
3013
3009
|
.offset-xl-0 {
|
|
3014
|
-
margin-left: 0;
|
|
3010
|
+
margin-left: calc(0 / 12 * 100%);
|
|
3015
3011
|
}
|
|
3016
3012
|
|
|
3017
3013
|
.offset-xl-1 {
|
|
3018
|
-
margin-left:
|
|
3014
|
+
margin-left: calc(1 / 12 * 100%);
|
|
3019
3015
|
}
|
|
3020
3016
|
|
|
3021
3017
|
.offset-xl-2 {
|
|
3022
|
-
margin-left:
|
|
3018
|
+
margin-left: calc(2 / 12 * 100%);
|
|
3023
3019
|
}
|
|
3024
3020
|
|
|
3025
3021
|
.offset-xl-3 {
|
|
3026
|
-
margin-left:
|
|
3022
|
+
margin-left: calc(3 / 12 * 100%);
|
|
3027
3023
|
}
|
|
3028
3024
|
|
|
3029
3025
|
.offset-xl-4 {
|
|
3030
|
-
margin-left:
|
|
3026
|
+
margin-left: calc(4 / 12 * 100%);
|
|
3031
3027
|
}
|
|
3032
3028
|
|
|
3033
3029
|
.offset-xl-5 {
|
|
3034
|
-
margin-left:
|
|
3030
|
+
margin-left: calc(5 / 12 * 100%);
|
|
3035
3031
|
}
|
|
3036
3032
|
|
|
3037
3033
|
.offset-xl-6 {
|
|
3038
|
-
margin-left:
|
|
3034
|
+
margin-left: calc(6 / 12 * 100%);
|
|
3039
3035
|
}
|
|
3040
3036
|
|
|
3041
3037
|
.offset-xl-7 {
|
|
3042
|
-
margin-left:
|
|
3038
|
+
margin-left: calc(7 / 12 * 100%);
|
|
3043
3039
|
}
|
|
3044
3040
|
|
|
3045
3041
|
.offset-xl-8 {
|
|
3046
|
-
margin-left:
|
|
3042
|
+
margin-left: calc(8 / 12 * 100%);
|
|
3047
3043
|
}
|
|
3048
3044
|
|
|
3049
3045
|
.offset-xl-9 {
|
|
3050
|
-
margin-left:
|
|
3046
|
+
margin-left: calc(9 / 12 * 100%);
|
|
3051
3047
|
}
|
|
3052
3048
|
|
|
3053
3049
|
.offset-xl-10 {
|
|
3054
|
-
margin-left:
|
|
3050
|
+
margin-left: calc(10 / 12 * 100%);
|
|
3055
3051
|
}
|
|
3056
3052
|
|
|
3057
3053
|
.offset-xl-11 {
|
|
3058
|
-
margin-left:
|
|
3054
|
+
margin-left: calc(11 / 12 * 100%);
|
|
3059
3055
|
}
|
|
3060
3056
|
}
|
|
3061
3057
|
.container-fluid-max-sm {
|
|
@@ -3280,6 +3276,9 @@ input[type=button].btn-block {
|
|
|
3280
3276
|
padding-right: calc( 2.5rem + 15px );
|
|
3281
3277
|
position: relative;
|
|
3282
3278
|
}
|
|
3279
|
+
.alert-fluid .close {
|
|
3280
|
+
right: calc(15px + 0.25rem);
|
|
3281
|
+
}
|
|
3283
3282
|
.alert-fluid .container,
|
|
3284
3283
|
.alert-fluid .container-fluid {
|
|
3285
3284
|
padding-bottom: 0.75rem;
|
|
@@ -3287,9 +3286,6 @@ input[type=button].btn-block {
|
|
|
3287
3286
|
padding-right: 1.25rem;
|
|
3288
3287
|
padding-top: 0.75rem;
|
|
3289
3288
|
}
|
|
3290
|
-
.alert-fluid .close {
|
|
3291
|
-
right: calc(15px + 0.25rem);
|
|
3292
|
-
}
|
|
3293
3289
|
.alert-container {
|
|
3294
3290
|
height: 0;
|
|
3295
3291
|
position: relative;
|
|
@@ -4025,7 +4021,7 @@ input[type=button].btn-block {
|
|
|
4025
4021
|
color: #6c757d;
|
|
4026
4022
|
display: block;
|
|
4027
4023
|
float: left;
|
|
4028
|
-
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M375.2%20239.
|
|
4024
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M375.2%20239.2%20173.3%2037c-23.6-23-59.9%2011.9-36%2035.1l183%20183.9-182.9%20183.8c-24%2023.5%2012.5%2058.2%2036.1%2035.2l201.7-202.1c10.2-10.1%209.3-24.4%200-33.7z'%20fill='%236c757d'/%3E%3C/svg%3E");
|
|
4029
4025
|
background-repeat: no-repeat;
|
|
4030
4026
|
background-size: 100%;
|
|
4031
4027
|
content: "";
|
|
@@ -4263,17 +4259,38 @@ input[type=button].btn-block {
|
|
|
4263
4259
|
padding-right: 0.4375rem;
|
|
4264
4260
|
padding-top: 0.1875rem;
|
|
4265
4261
|
white-space: inherit;
|
|
4262
|
+
overflow-wrap: break-word;
|
|
4266
4263
|
word-wrap: break-word;
|
|
4267
4264
|
}
|
|
4268
|
-
.label
|
|
4265
|
+
.label[href], .label[type], .label[tabindex] {
|
|
4266
|
+
cursor: pointer;
|
|
4267
|
+
text-decoration: none;
|
|
4268
|
+
}
|
|
4269
|
+
.label a,
|
|
4270
|
+
.label .btn-unstyled {
|
|
4269
4271
|
color: inherit;
|
|
4270
4272
|
display: inline-block;
|
|
4271
4273
|
text-decoration: underline;
|
|
4272
4274
|
}
|
|
4273
|
-
.label a:hover,
|
|
4275
|
+
.label a:hover,
|
|
4276
|
+
.label .btn-unstyled:hover {
|
|
4277
|
+
color: inherit;
|
|
4278
|
+
text-decoration: none;
|
|
4279
|
+
}
|
|
4280
|
+
.label a:focus,
|
|
4281
|
+
.label .btn-unstyled:focus {
|
|
4274
4282
|
color: inherit;
|
|
4275
4283
|
text-decoration: none;
|
|
4276
4284
|
}
|
|
4285
|
+
.label .sticker {
|
|
4286
|
+
border-radius: 100px;
|
|
4287
|
+
height: 0.875em;
|
|
4288
|
+
line-height: 0.875em;
|
|
4289
|
+
width: 0.875em;
|
|
4290
|
+
}
|
|
4291
|
+
.label .sticker-overlay {
|
|
4292
|
+
border-radius: 100px;
|
|
4293
|
+
}
|
|
4277
4294
|
.label > .c-inner {
|
|
4278
4295
|
margin-bottom: -0.1875rem;
|
|
4279
4296
|
margin-left: -0.4375rem;
|
|
@@ -4308,23 +4325,6 @@ input[type=button].btn-block {
|
|
|
4308
4325
|
.label .inline-item .lexicon-icon {
|
|
4309
4326
|
margin-top: 0;
|
|
4310
4327
|
}
|
|
4311
|
-
.label .sticker {
|
|
4312
|
-
border-radius: 100px;
|
|
4313
|
-
height: 0.875em;
|
|
4314
|
-
line-height: 0.875em;
|
|
4315
|
-
width: 0.875em;
|
|
4316
|
-
}
|
|
4317
|
-
.label .sticker-overlay {
|
|
4318
|
-
border-radius: 100px;
|
|
4319
|
-
}
|
|
4320
|
-
|
|
4321
|
-
a.label,
|
|
4322
|
-
button.label {
|
|
4323
|
-
text-decoration: none;
|
|
4324
|
-
}
|
|
4325
|
-
button.label {
|
|
4326
|
-
cursor: pointer;
|
|
4327
|
-
}
|
|
4328
4328
|
|
|
4329
4329
|
.label-item {
|
|
4330
4330
|
display: flex;
|
|
@@ -4373,12 +4373,12 @@ button.label {
|
|
|
4373
4373
|
flex-grow: 1;
|
|
4374
4374
|
flex-shrink: 1;
|
|
4375
4375
|
min-width: 1rem;
|
|
4376
|
+
overflow-wrap: break-word;
|
|
4376
4377
|
word-wrap: break-word;
|
|
4377
4378
|
}
|
|
4378
4379
|
.label-item-expand a {
|
|
4379
4380
|
flex-direction: column;
|
|
4380
4381
|
}
|
|
4381
|
-
|
|
4382
4382
|
.label-item-before {
|
|
4383
4383
|
margin-right: 0.5em;
|
|
4384
4384
|
}
|
|
@@ -4395,7 +4395,6 @@ button.label {
|
|
|
4395
4395
|
padding-right: 1rem;
|
|
4396
4396
|
padding-top: 0.375rem;
|
|
4397
4397
|
text-transform: none;
|
|
4398
|
-
border-width: 0.0625rem;
|
|
4399
4398
|
}
|
|
4400
4399
|
.label-lg > .c-inner {
|
|
4401
4400
|
margin-bottom: -0.375rem;
|
|
@@ -4409,26 +4408,15 @@ button.label {
|
|
|
4409
4408
|
border-color: #007bff;
|
|
4410
4409
|
color: #007bff;
|
|
4411
4410
|
}
|
|
4412
|
-
|
|
4413
|
-
button.label-primary:hover {
|
|
4411
|
+
[href].label-primary:hover, [type].label-primary:hover, [tabindex].label-primary:hover {
|
|
4414
4412
|
border-color: #0062cc;
|
|
4415
4413
|
color: #0062cc;
|
|
4416
4414
|
}
|
|
4417
|
-
|
|
4418
|
-
button.label-primary:focus {
|
|
4419
|
-
color: #0062cc;
|
|
4420
|
-
}
|
|
4421
|
-
|
|
4422
|
-
.label-primary[tabindex]:hover {
|
|
4423
|
-
border-color: #0062cc;
|
|
4415
|
+
[href].label-primary:focus, [type].label-primary:focus, [tabindex].label-primary:focus {
|
|
4424
4416
|
color: #0062cc;
|
|
4425
4417
|
}
|
|
4426
|
-
.label-primary
|
|
4427
|
-
|
|
4428
|
-
}
|
|
4429
|
-
.label-primary a:hover, .label-primary a:focus,
|
|
4430
|
-
.label-primary .btn-unstyled:hover,
|
|
4431
|
-
.label-primary .btn-unstyled:focus {
|
|
4418
|
+
.label-primary a:hover,
|
|
4419
|
+
.label-primary .btn-unstyled:hover {
|
|
4432
4420
|
color: #0062cc;
|
|
4433
4421
|
}
|
|
4434
4422
|
.label-primary .close:hover {
|
|
@@ -4442,26 +4430,15 @@ button.label-primary:focus {
|
|
|
4442
4430
|
border-color: #6c757d;
|
|
4443
4431
|
color: #6c757d;
|
|
4444
4432
|
}
|
|
4445
|
-
|
|
4446
|
-
button.label-secondary:hover {
|
|
4433
|
+
[href].label-secondary:hover, [type].label-secondary:hover, [tabindex].label-secondary:hover {
|
|
4447
4434
|
border-color: #545b62;
|
|
4448
4435
|
color: #545b62;
|
|
4449
4436
|
}
|
|
4450
|
-
|
|
4451
|
-
button.label-secondary:focus {
|
|
4437
|
+
[href].label-secondary:focus, [type].label-secondary:focus, [tabindex].label-secondary:focus {
|
|
4452
4438
|
color: #545b62;
|
|
4453
4439
|
}
|
|
4454
|
-
|
|
4455
|
-
.label-secondary
|
|
4456
|
-
border-color: #545b62;
|
|
4457
|
-
color: #545b62;
|
|
4458
|
-
}
|
|
4459
|
-
.label-secondary[tabindex]:focus {
|
|
4460
|
-
color: #545b62;
|
|
4461
|
-
}
|
|
4462
|
-
.label-secondary a:hover, .label-secondary a:focus,
|
|
4463
|
-
.label-secondary .btn-unstyled:hover,
|
|
4464
|
-
.label-secondary .btn-unstyled:focus {
|
|
4440
|
+
.label-secondary a:hover,
|
|
4441
|
+
.label-secondary .btn-unstyled:hover {
|
|
4465
4442
|
color: #545b62;
|
|
4466
4443
|
}
|
|
4467
4444
|
.label-secondary .close:hover {
|
|
@@ -4475,26 +4452,15 @@ button.label-secondary:focus {
|
|
|
4475
4452
|
border-color: #28a745;
|
|
4476
4453
|
color: #28a745;
|
|
4477
4454
|
}
|
|
4478
|
-
|
|
4479
|
-
button.label-success:hover {
|
|
4480
|
-
border-color: #1e7e34;
|
|
4481
|
-
color: #1e7e34;
|
|
4482
|
-
}
|
|
4483
|
-
a.label-success:focus,
|
|
4484
|
-
button.label-success:focus {
|
|
4485
|
-
color: #1e7e34;
|
|
4486
|
-
}
|
|
4487
|
-
|
|
4488
|
-
.label-success[tabindex]:hover {
|
|
4455
|
+
[href].label-success:hover, [type].label-success:hover, [tabindex].label-success:hover {
|
|
4489
4456
|
border-color: #1e7e34;
|
|
4490
4457
|
color: #1e7e34;
|
|
4491
4458
|
}
|
|
4492
|
-
.label-success[tabindex]:focus {
|
|
4459
|
+
[href].label-success:focus, [type].label-success:focus, [tabindex].label-success:focus {
|
|
4493
4460
|
color: #1e7e34;
|
|
4494
4461
|
}
|
|
4495
|
-
.label-success a:hover,
|
|
4496
|
-
.label-success .btn-unstyled:hover
|
|
4497
|
-
.label-success .btn-unstyled:focus {
|
|
4462
|
+
.label-success a:hover,
|
|
4463
|
+
.label-success .btn-unstyled:hover {
|
|
4498
4464
|
color: #1e7e34;
|
|
4499
4465
|
}
|
|
4500
4466
|
.label-success .close:hover {
|
|
@@ -4508,26 +4474,15 @@ button.label-success:focus {
|
|
|
4508
4474
|
border-color: #17a2b8;
|
|
4509
4475
|
color: #17a2b8;
|
|
4510
4476
|
}
|
|
4511
|
-
|
|
4512
|
-
button.label-info:hover {
|
|
4477
|
+
[href].label-info:hover, [type].label-info:hover, [tabindex].label-info:hover {
|
|
4513
4478
|
border-color: #117a8b;
|
|
4514
4479
|
color: #117a8b;
|
|
4515
4480
|
}
|
|
4516
|
-
|
|
4517
|
-
button.label-info:focus {
|
|
4481
|
+
[href].label-info:focus, [type].label-info:focus, [tabindex].label-info:focus {
|
|
4518
4482
|
color: #117a8b;
|
|
4519
4483
|
}
|
|
4520
|
-
|
|
4521
|
-
.label-info
|
|
4522
|
-
border-color: #117a8b;
|
|
4523
|
-
color: #117a8b;
|
|
4524
|
-
}
|
|
4525
|
-
.label-info[tabindex]:focus {
|
|
4526
|
-
color: #117a8b;
|
|
4527
|
-
}
|
|
4528
|
-
.label-info a:hover, .label-info a:focus,
|
|
4529
|
-
.label-info .btn-unstyled:hover,
|
|
4530
|
-
.label-info .btn-unstyled:focus {
|
|
4484
|
+
.label-info a:hover,
|
|
4485
|
+
.label-info .btn-unstyled:hover {
|
|
4531
4486
|
color: #117a8b;
|
|
4532
4487
|
}
|
|
4533
4488
|
.label-info .close:hover {
|
|
@@ -4541,26 +4496,15 @@ button.label-info:focus {
|
|
|
4541
4496
|
border-color: #ffc107;
|
|
4542
4497
|
color: #ffc107;
|
|
4543
4498
|
}
|
|
4544
|
-
|
|
4545
|
-
button.label-warning:hover {
|
|
4546
|
-
border-color: #d39e00;
|
|
4547
|
-
color: #d39e00;
|
|
4548
|
-
}
|
|
4549
|
-
a.label-warning:focus,
|
|
4550
|
-
button.label-warning:focus {
|
|
4551
|
-
color: #d39e00;
|
|
4552
|
-
}
|
|
4553
|
-
|
|
4554
|
-
.label-warning[tabindex]:hover {
|
|
4499
|
+
[href].label-warning:hover, [type].label-warning:hover, [tabindex].label-warning:hover {
|
|
4555
4500
|
border-color: #d39e00;
|
|
4556
4501
|
color: #d39e00;
|
|
4557
4502
|
}
|
|
4558
|
-
.label-warning[tabindex]:focus {
|
|
4503
|
+
[href].label-warning:focus, [type].label-warning:focus, [tabindex].label-warning:focus {
|
|
4559
4504
|
color: #d39e00;
|
|
4560
4505
|
}
|
|
4561
|
-
.label-warning a:hover,
|
|
4562
|
-
.label-warning .btn-unstyled:hover
|
|
4563
|
-
.label-warning .btn-unstyled:focus {
|
|
4506
|
+
.label-warning a:hover,
|
|
4507
|
+
.label-warning .btn-unstyled:hover {
|
|
4564
4508
|
color: #d39e00;
|
|
4565
4509
|
}
|
|
4566
4510
|
.label-warning .close:hover {
|
|
@@ -4574,26 +4518,15 @@ button.label-warning:focus {
|
|
|
4574
4518
|
border-color: #dc3545;
|
|
4575
4519
|
color: #dc3545;
|
|
4576
4520
|
}
|
|
4577
|
-
|
|
4578
|
-
button.label-danger:hover {
|
|
4579
|
-
border-color: #bd2130;
|
|
4580
|
-
color: #bd2130;
|
|
4581
|
-
}
|
|
4582
|
-
a.label-danger:focus,
|
|
4583
|
-
button.label-danger:focus {
|
|
4584
|
-
color: #bd2130;
|
|
4585
|
-
}
|
|
4586
|
-
|
|
4587
|
-
.label-danger[tabindex]:hover {
|
|
4521
|
+
[href].label-danger:hover, [type].label-danger:hover, [tabindex].label-danger:hover {
|
|
4588
4522
|
border-color: #bd2130;
|
|
4589
4523
|
color: #bd2130;
|
|
4590
4524
|
}
|
|
4591
|
-
.label-danger[tabindex]:focus {
|
|
4525
|
+
[href].label-danger:focus, [type].label-danger:focus, [tabindex].label-danger:focus {
|
|
4592
4526
|
color: #bd2130;
|
|
4593
4527
|
}
|
|
4594
|
-
.label-danger a:hover,
|
|
4595
|
-
.label-danger .btn-unstyled:hover
|
|
4596
|
-
.label-danger .btn-unstyled:focus {
|
|
4528
|
+
.label-danger a:hover,
|
|
4529
|
+
.label-danger .btn-unstyled:hover {
|
|
4597
4530
|
color: #bd2130;
|
|
4598
4531
|
}
|
|
4599
4532
|
.label-danger .close:hover {
|
|
@@ -4607,26 +4540,15 @@ button.label-danger:focus {
|
|
|
4607
4540
|
border-color: #343a40;
|
|
4608
4541
|
color: #343a40;
|
|
4609
4542
|
}
|
|
4610
|
-
|
|
4611
|
-
button.label-dark:hover {
|
|
4543
|
+
[href].label-dark:hover, [type].label-dark:hover, [tabindex].label-dark:hover {
|
|
4612
4544
|
border-color: #1d2124;
|
|
4613
4545
|
color: #1d2124;
|
|
4614
4546
|
}
|
|
4615
|
-
|
|
4616
|
-
button.label-dark:focus {
|
|
4547
|
+
[href].label-dark:focus, [type].label-dark:focus, [tabindex].label-dark:focus {
|
|
4617
4548
|
color: #1d2124;
|
|
4618
4549
|
}
|
|
4619
|
-
|
|
4620
|
-
.label-dark
|
|
4621
|
-
border-color: #1d2124;
|
|
4622
|
-
color: #1d2124;
|
|
4623
|
-
}
|
|
4624
|
-
.label-dark[tabindex]:focus {
|
|
4625
|
-
color: #1d2124;
|
|
4626
|
-
}
|
|
4627
|
-
.label-dark a:hover, .label-dark a:focus,
|
|
4628
|
-
.label-dark .btn-unstyled:hover,
|
|
4629
|
-
.label-dark .btn-unstyled:focus {
|
|
4550
|
+
.label-dark a:hover,
|
|
4551
|
+
.label-dark .btn-unstyled:hover {
|
|
4630
4552
|
color: #1d2124;
|
|
4631
4553
|
}
|
|
4632
4554
|
.label-dark .close:hover {
|
|
@@ -4640,26 +4562,15 @@ button.label-dark:focus {
|
|
|
4640
4562
|
border-color: #f8f9fa;
|
|
4641
4563
|
color: #f8f9fa;
|
|
4642
4564
|
}
|
|
4643
|
-
|
|
4644
|
-
button.label-light:hover {
|
|
4645
|
-
border-color: #dae0e5;
|
|
4646
|
-
color: #dae0e5;
|
|
4647
|
-
}
|
|
4648
|
-
a.label-light:focus,
|
|
4649
|
-
button.label-light:focus {
|
|
4650
|
-
color: #dae0e5;
|
|
4651
|
-
}
|
|
4652
|
-
|
|
4653
|
-
.label-light[tabindex]:hover {
|
|
4565
|
+
[href].label-light:hover, [type].label-light:hover, [tabindex].label-light:hover {
|
|
4654
4566
|
border-color: #dae0e5;
|
|
4655
4567
|
color: #dae0e5;
|
|
4656
4568
|
}
|
|
4657
|
-
.label-light[tabindex]:focus {
|
|
4569
|
+
[href].label-light:focus, [type].label-light:focus, [tabindex].label-light:focus {
|
|
4658
4570
|
color: #dae0e5;
|
|
4659
4571
|
}
|
|
4660
|
-
.label-light a:hover,
|
|
4661
|
-
.label-light .btn-unstyled:hover
|
|
4662
|
-
.label-light .btn-unstyled:focus {
|
|
4572
|
+
.label-light a:hover,
|
|
4573
|
+
.label-light .btn-unstyled:hover {
|
|
4663
4574
|
color: #dae0e5;
|
|
4664
4575
|
}
|
|
4665
4576
|
.label-light .close:hover {
|
|
@@ -4673,20 +4584,13 @@ button.label-light:focus {
|
|
|
4673
4584
|
border-color: #007bff;
|
|
4674
4585
|
color: #fff;
|
|
4675
4586
|
}
|
|
4676
|
-
|
|
4677
|
-
button.label-inverse-primary:hover {
|
|
4678
|
-
background-color: #0062cc;
|
|
4679
|
-
border-color: #0062cc;
|
|
4680
|
-
color: #fff;
|
|
4681
|
-
}
|
|
4682
|
-
.label-inverse-primary[tabindex]:hover {
|
|
4587
|
+
[href].label-inverse-primary:hover, [type].label-inverse-primary:hover, [tabindex].label-inverse-primary:hover {
|
|
4683
4588
|
background-color: #0062cc;
|
|
4684
4589
|
border-color: #0062cc;
|
|
4685
4590
|
color: #fff;
|
|
4686
4591
|
}
|
|
4687
|
-
.label-inverse-primary a:hover,
|
|
4688
|
-
.label-inverse-primary .btn-unstyled:hover
|
|
4689
|
-
.label-inverse-primary .btn-unstyled:focus {
|
|
4592
|
+
.label-inverse-primary a:hover,
|
|
4593
|
+
.label-inverse-primary .btn-unstyled:hover {
|
|
4690
4594
|
color: #e6e6e6;
|
|
4691
4595
|
}
|
|
4692
4596
|
.label-inverse-primary .close:hover {
|
|
@@ -4697,20 +4601,13 @@ button.label-inverse-primary:hover {
|
|
|
4697
4601
|
border-color: #6c757d;
|
|
4698
4602
|
color: #fff;
|
|
4699
4603
|
}
|
|
4700
|
-
|
|
4701
|
-
button.label-inverse-secondary:hover {
|
|
4702
|
-
background-color: #545b62;
|
|
4703
|
-
border-color: #545b62;
|
|
4704
|
-
color: #fff;
|
|
4705
|
-
}
|
|
4706
|
-
.label-inverse-secondary[tabindex]:hover {
|
|
4604
|
+
[href].label-inverse-secondary:hover, [type].label-inverse-secondary:hover, [tabindex].label-inverse-secondary:hover {
|
|
4707
4605
|
background-color: #545b62;
|
|
4708
4606
|
border-color: #545b62;
|
|
4709
4607
|
color: #fff;
|
|
4710
4608
|
}
|
|
4711
|
-
.label-inverse-secondary a:hover,
|
|
4712
|
-
.label-inverse-secondary .btn-unstyled:hover
|
|
4713
|
-
.label-inverse-secondary .btn-unstyled:focus {
|
|
4609
|
+
.label-inverse-secondary a:hover,
|
|
4610
|
+
.label-inverse-secondary .btn-unstyled:hover {
|
|
4714
4611
|
color: #e6e6e6;
|
|
4715
4612
|
}
|
|
4716
4613
|
.label-inverse-secondary .close:hover {
|
|
@@ -4721,20 +4618,13 @@ button.label-inverse-secondary:hover {
|
|
|
4721
4618
|
border-color: #28a745;
|
|
4722
4619
|
color: #fff;
|
|
4723
4620
|
}
|
|
4724
|
-
|
|
4725
|
-
button.label-inverse-success:hover {
|
|
4726
|
-
background-color: #1e7e34;
|
|
4727
|
-
border-color: #1e7e34;
|
|
4728
|
-
color: #fff;
|
|
4729
|
-
}
|
|
4730
|
-
.label-inverse-success[tabindex]:hover {
|
|
4621
|
+
[href].label-inverse-success:hover, [type].label-inverse-success:hover, [tabindex].label-inverse-success:hover {
|
|
4731
4622
|
background-color: #1e7e34;
|
|
4732
4623
|
border-color: #1e7e34;
|
|
4733
4624
|
color: #fff;
|
|
4734
4625
|
}
|
|
4735
|
-
.label-inverse-success a:hover,
|
|
4736
|
-
.label-inverse-success .btn-unstyled:hover
|
|
4737
|
-
.label-inverse-success .btn-unstyled:focus {
|
|
4626
|
+
.label-inverse-success a:hover,
|
|
4627
|
+
.label-inverse-success .btn-unstyled:hover {
|
|
4738
4628
|
color: #e6e6e6;
|
|
4739
4629
|
}
|
|
4740
4630
|
.label-inverse-success .close:hover {
|
|
@@ -4745,20 +4635,13 @@ button.label-inverse-success:hover {
|
|
|
4745
4635
|
border-color: #17a2b8;
|
|
4746
4636
|
color: #fff;
|
|
4747
4637
|
}
|
|
4748
|
-
|
|
4749
|
-
button.label-inverse-info:hover {
|
|
4750
|
-
background-color: #117a8b;
|
|
4751
|
-
border-color: #117a8b;
|
|
4752
|
-
color: #fff;
|
|
4753
|
-
}
|
|
4754
|
-
.label-inverse-info[tabindex]:hover {
|
|
4638
|
+
[href].label-inverse-info:hover, [type].label-inverse-info:hover, [tabindex].label-inverse-info:hover {
|
|
4755
4639
|
background-color: #117a8b;
|
|
4756
4640
|
border-color: #117a8b;
|
|
4757
4641
|
color: #fff;
|
|
4758
4642
|
}
|
|
4759
|
-
.label-inverse-info a:hover,
|
|
4760
|
-
.label-inverse-info .btn-unstyled:hover
|
|
4761
|
-
.label-inverse-info .btn-unstyled:focus {
|
|
4643
|
+
.label-inverse-info a:hover,
|
|
4644
|
+
.label-inverse-info .btn-unstyled:hover {
|
|
4762
4645
|
color: #e6e6e6;
|
|
4763
4646
|
}
|
|
4764
4647
|
.label-inverse-info .close:hover {
|
|
@@ -4769,20 +4652,13 @@ button.label-inverse-info:hover {
|
|
|
4769
4652
|
border-color: #ffc107;
|
|
4770
4653
|
color: #212529;
|
|
4771
4654
|
}
|
|
4772
|
-
|
|
4773
|
-
button.label-inverse-warning:hover {
|
|
4655
|
+
[href].label-inverse-warning:hover, [type].label-inverse-warning:hover, [tabindex].label-inverse-warning:hover {
|
|
4774
4656
|
background-color: #d39e00;
|
|
4775
4657
|
border-color: #d39e00;
|
|
4776
4658
|
color: #212529;
|
|
4777
4659
|
}
|
|
4778
|
-
.label-inverse-warning
|
|
4779
|
-
|
|
4780
|
-
border-color: #d39e00;
|
|
4781
|
-
color: #212529;
|
|
4782
|
-
}
|
|
4783
|
-
.label-inverse-warning a:hover, .label-inverse-warning a:focus,
|
|
4784
|
-
.label-inverse-warning .btn-unstyled:hover,
|
|
4785
|
-
.label-inverse-warning .btn-unstyled:focus {
|
|
4660
|
+
.label-inverse-warning a:hover,
|
|
4661
|
+
.label-inverse-warning .btn-unstyled:hover {
|
|
4786
4662
|
color: #4e5862;
|
|
4787
4663
|
}
|
|
4788
4664
|
.label-inverse-warning .close:hover {
|
|
@@ -4793,20 +4669,13 @@ button.label-inverse-warning:hover {
|
|
|
4793
4669
|
border-color: #dc3545;
|
|
4794
4670
|
color: #fff;
|
|
4795
4671
|
}
|
|
4796
|
-
|
|
4797
|
-
button.label-inverse-danger:hover {
|
|
4798
|
-
background-color: #bd2130;
|
|
4799
|
-
border-color: #bd2130;
|
|
4800
|
-
color: #fff;
|
|
4801
|
-
}
|
|
4802
|
-
.label-inverse-danger[tabindex]:hover {
|
|
4672
|
+
[href].label-inverse-danger:hover, [type].label-inverse-danger:hover, [tabindex].label-inverse-danger:hover {
|
|
4803
4673
|
background-color: #bd2130;
|
|
4804
4674
|
border-color: #bd2130;
|
|
4805
4675
|
color: #fff;
|
|
4806
4676
|
}
|
|
4807
|
-
.label-inverse-danger a:hover,
|
|
4808
|
-
.label-inverse-danger .btn-unstyled:hover
|
|
4809
|
-
.label-inverse-danger .btn-unstyled:focus {
|
|
4677
|
+
.label-inverse-danger a:hover,
|
|
4678
|
+
.label-inverse-danger .btn-unstyled:hover {
|
|
4810
4679
|
color: #e6e6e6;
|
|
4811
4680
|
}
|
|
4812
4681
|
.label-inverse-danger .close:hover {
|
|
@@ -4817,20 +4686,13 @@ button.label-inverse-danger:hover {
|
|
|
4817
4686
|
border-color: #f8f9fa;
|
|
4818
4687
|
color: #212529;
|
|
4819
4688
|
}
|
|
4820
|
-
|
|
4821
|
-
button.label-inverse-light:hover {
|
|
4822
|
-
background-color: #dae0e5;
|
|
4823
|
-
border-color: #dae0e5;
|
|
4824
|
-
color: #212529;
|
|
4825
|
-
}
|
|
4826
|
-
.label-inverse-light[tabindex]:hover {
|
|
4689
|
+
[href].label-inverse-light:hover, [type].label-inverse-light:hover, [tabindex].label-inverse-light:hover {
|
|
4827
4690
|
background-color: #dae0e5;
|
|
4828
4691
|
border-color: #dae0e5;
|
|
4829
4692
|
color: #212529;
|
|
4830
4693
|
}
|
|
4831
|
-
.label-inverse-light a:hover,
|
|
4832
|
-
.label-inverse-light .btn-unstyled:hover
|
|
4833
|
-
.label-inverse-light .btn-unstyled:focus {
|
|
4694
|
+
.label-inverse-light a:hover,
|
|
4695
|
+
.label-inverse-light .btn-unstyled:hover {
|
|
4834
4696
|
color: #383f45;
|
|
4835
4697
|
}
|
|
4836
4698
|
.label-inverse-light .close:hover {
|
|
@@ -4841,20 +4703,13 @@ button.label-inverse-light:hover {
|
|
|
4841
4703
|
border-color: #343a40;
|
|
4842
4704
|
color: #fff;
|
|
4843
4705
|
}
|
|
4844
|
-
|
|
4845
|
-
button.label-inverse-dark:hover {
|
|
4846
|
-
background-color: #1d2124;
|
|
4847
|
-
border-color: #1d2124;
|
|
4848
|
-
color: #fff;
|
|
4849
|
-
}
|
|
4850
|
-
.label-inverse-dark[tabindex]:hover {
|
|
4706
|
+
[href].label-inverse-dark:hover, [type].label-inverse-dark:hover, [tabindex].label-inverse-dark:hover {
|
|
4851
4707
|
background-color: #1d2124;
|
|
4852
4708
|
border-color: #1d2124;
|
|
4853
4709
|
color: #fff;
|
|
4854
4710
|
}
|
|
4855
|
-
.label-inverse-dark a:hover,
|
|
4856
|
-
.label-inverse-dark .btn-unstyled:hover
|
|
4857
|
-
.label-inverse-dark .btn-unstyled:focus {
|
|
4711
|
+
.label-inverse-dark a:hover,
|
|
4712
|
+
.label-inverse-dark .btn-unstyled:hover {
|
|
4858
4713
|
color: #e6e6e6;
|
|
4859
4714
|
}
|
|
4860
4715
|
.label-inverse-dark .close:hover {
|
|
@@ -4874,7 +4729,6 @@ button.label-inverse-dark:hover {
|
|
|
4874
4729
|
border-radius: 0.25rem;
|
|
4875
4730
|
height: 2rem;
|
|
4876
4731
|
line-height: 2rem;
|
|
4877
|
-
width: 2rem;
|
|
4878
4732
|
display: inline-flex;
|
|
4879
4733
|
font-size: 0.875rem;
|
|
4880
4734
|
font-weight: 500;
|
|
@@ -4882,27 +4736,20 @@ button.label-inverse-dark:hover {
|
|
|
4882
4736
|
position: relative;
|
|
4883
4737
|
text-align: center;
|
|
4884
4738
|
vertical-align: middle;
|
|
4739
|
+
width: 2rem;
|
|
4885
4740
|
}
|
|
4886
4741
|
.sticker > .inline-item {
|
|
4887
4742
|
justify-content: center;
|
|
4888
4743
|
}
|
|
4889
|
-
.sticker > .inline-item .lexicon-icon
|
|
4890
|
-
.sticker .lexicon-icon {
|
|
4744
|
+
.sticker > .inline-item .lexicon-icon {
|
|
4891
4745
|
margin-top: 0;
|
|
4892
4746
|
}
|
|
4893
|
-
.sticker
|
|
4894
|
-
|
|
4895
|
-
}
|
|
4896
|
-
.sticker.rounded-circle .sticker-overlay {
|
|
4897
|
-
border-radius: 5000px;
|
|
4898
|
-
}
|
|
4899
|
-
.sticker.rounded-0 .sticker-overlay {
|
|
4900
|
-
border-radius: 0;
|
|
4747
|
+
.sticker .lexicon-icon {
|
|
4748
|
+
margin-top: 0;
|
|
4901
4749
|
}
|
|
4902
|
-
|
|
4903
4750
|
.sticker-overlay {
|
|
4904
4751
|
align-items: center;
|
|
4905
|
-
border-radius:
|
|
4752
|
+
border-radius: inherit;
|
|
4906
4753
|
bottom: 0;
|
|
4907
4754
|
display: flex;
|
|
4908
4755
|
justify-content: center;
|
|
@@ -4962,12 +4809,9 @@ button.label-inverse-dark:hover {
|
|
|
4962
4809
|
}
|
|
4963
4810
|
|
|
4964
4811
|
.sticker-user-icon {
|
|
4965
|
-
border-radius: 5000px;
|
|
4966
|
-
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
4967
4812
|
background-color: #fff;
|
|
4968
|
-
}
|
|
4969
|
-
.sticker-user-icon .sticker-overlay {
|
|
4970
4813
|
border-radius: 5000px;
|
|
4814
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
4971
4815
|
}
|
|
4972
4816
|
.sticker-sm {
|
|
4973
4817
|
font-size: 0.75rem;
|
|
@@ -4975,21 +4819,15 @@ button.label-inverse-dark:hover {
|
|
|
4975
4819
|
line-height: 1.5rem;
|
|
4976
4820
|
width: 1.5rem;
|
|
4977
4821
|
}
|
|
4978
|
-
.sticker-
|
|
4822
|
+
.sticker-outside.sticker-sm {
|
|
4979
4823
|
left: -0.75rem;
|
|
4980
4824
|
top: -0.75rem;
|
|
4981
4825
|
}
|
|
4982
|
-
.sticker-
|
|
4826
|
+
.sticker-outside.sticker-bottom-left.sticker-sm {
|
|
4983
4827
|
bottom: -0.75rem;
|
|
4984
4828
|
top: auto;
|
|
4985
4829
|
}
|
|
4986
|
-
.sticker-
|
|
4987
|
-
bottom: -0.75rem;
|
|
4988
|
-
left: auto;
|
|
4989
|
-
right: -0.75rem;
|
|
4990
|
-
top: auto;
|
|
4991
|
-
}
|
|
4992
|
-
.sticker-sm.sticker-outside.sticker-top-right {
|
|
4830
|
+
.sticker-outside.sticker-top-right.sticker-sm {
|
|
4993
4831
|
left: auto;
|
|
4994
4832
|
right: -0.75rem;
|
|
4995
4833
|
}
|
|
@@ -5000,21 +4838,15 @@ button.label-inverse-dark:hover {
|
|
|
5000
4838
|
line-height: 2.5rem;
|
|
5001
4839
|
width: 2.5rem;
|
|
5002
4840
|
}
|
|
5003
|
-
.sticker-
|
|
4841
|
+
.sticker-outside.sticker-lg {
|
|
5004
4842
|
left: -1.25rem;
|
|
5005
4843
|
top: -1.25rem;
|
|
5006
4844
|
}
|
|
5007
|
-
.sticker-
|
|
4845
|
+
.sticker-outside.sticker-bottom-left.sticker-lg {
|
|
5008
4846
|
bottom: -1.25rem;
|
|
5009
4847
|
top: auto;
|
|
5010
4848
|
}
|
|
5011
|
-
.sticker-
|
|
5012
|
-
bottom: -1.25rem;
|
|
5013
|
-
left: auto;
|
|
5014
|
-
right: -1.25rem;
|
|
5015
|
-
top: auto;
|
|
5016
|
-
}
|
|
5017
|
-
.sticker-lg.sticker-outside.sticker-top-right {
|
|
4849
|
+
.sticker-outside.sticker-top-right.sticker-lg {
|
|
5018
4850
|
left: auto;
|
|
5019
4851
|
right: -1.25rem;
|
|
5020
4852
|
}
|
|
@@ -5025,21 +4857,15 @@ button.label-inverse-dark:hover {
|
|
|
5025
4857
|
line-height: 3rem;
|
|
5026
4858
|
width: 3rem;
|
|
5027
4859
|
}
|
|
5028
|
-
.sticker-
|
|
4860
|
+
.sticker-outside.sticker-xl {
|
|
5029
4861
|
left: -1.5rem;
|
|
5030
4862
|
top: -1.5rem;
|
|
5031
4863
|
}
|
|
5032
|
-
.sticker-
|
|
4864
|
+
.sticker-outside.sticker-bottom-left.sticker-xl {
|
|
5033
4865
|
bottom: -1.5rem;
|
|
5034
4866
|
top: auto;
|
|
5035
4867
|
}
|
|
5036
|
-
.sticker-
|
|
5037
|
-
bottom: -1.5rem;
|
|
5038
|
-
left: auto;
|
|
5039
|
-
right: -1.5rem;
|
|
5040
|
-
top: auto;
|
|
5041
|
-
}
|
|
5042
|
-
.sticker-xl.sticker-outside.sticker-top-right {
|
|
4868
|
+
.sticker-outside.sticker-top-right.sticker-xl {
|
|
5043
4869
|
left: auto;
|
|
5044
4870
|
right: -1.5rem;
|
|
5045
4871
|
}
|
|
@@ -5048,47 +4874,37 @@ button.label-inverse-dark:hover {
|
|
|
5048
4874
|
background-color: #007bff;
|
|
5049
4875
|
color: #fff;
|
|
5050
4876
|
}
|
|
5051
|
-
|
|
5052
4877
|
.sticker-secondary {
|
|
5053
4878
|
background-color: #6c757d;
|
|
5054
4879
|
color: #fff;
|
|
5055
4880
|
}
|
|
5056
|
-
|
|
5057
4881
|
.sticker-success {
|
|
5058
4882
|
background-color: #28a745;
|
|
5059
4883
|
color: #fff;
|
|
5060
4884
|
}
|
|
5061
|
-
|
|
5062
4885
|
.sticker-info {
|
|
5063
4886
|
background-color: #17a2b8;
|
|
5064
4887
|
color: #fff;
|
|
5065
4888
|
}
|
|
5066
|
-
|
|
5067
4889
|
.sticker-warning {
|
|
5068
4890
|
background-color: #ffc107;
|
|
5069
4891
|
color: #212529;
|
|
5070
4892
|
}
|
|
5071
|
-
|
|
5072
4893
|
.sticker-danger {
|
|
5073
4894
|
background-color: #dc3545;
|
|
5074
4895
|
color: #fff;
|
|
5075
4896
|
}
|
|
5076
|
-
|
|
5077
4897
|
.sticker-light {
|
|
5078
4898
|
background-color: #f8f9fa;
|
|
5079
4899
|
color: #212529;
|
|
5080
4900
|
}
|
|
5081
|
-
|
|
5082
4901
|
.sticker-dark {
|
|
5083
4902
|
background-color: #343a40;
|
|
5084
4903
|
color: #fff;
|
|
5085
4904
|
}
|
|
5086
|
-
|
|
5087
|
-
.sticker-circle,
|
|
5088
|
-
.sticker-circle .sticker-overlay {
|
|
4905
|
+
.sticker-circle {
|
|
5089
4906
|
border-radius: 5000px;
|
|
5090
4907
|
}
|
|
5091
|
-
|
|
5092
4908
|
.card,
|
|
5093
4909
|
.card-horizontal {
|
|
5094
4910
|
background-color: #fff;
|
|
@@ -5879,31 +5695,25 @@ button.label-inverse-dark:hover {
|
|
|
5879
5695
|
}
|
|
5880
5696
|
}
|
|
5881
5697
|
|
|
5882
|
-
.card-interactive
|
|
5883
|
-
.card-interactive .card {
|
|
5698
|
+
.card-interactive {
|
|
5884
5699
|
cursor: pointer;
|
|
5885
5700
|
outline: 0;
|
|
5886
5701
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
5887
5702
|
}
|
|
5888
5703
|
@media (prefers-reduced-motion: reduce) {
|
|
5889
|
-
.card-interactive
|
|
5890
|
-
.card-interactive .card {
|
|
5704
|
+
.card-interactive {
|
|
5891
5705
|
transition: none;
|
|
5892
5706
|
}
|
|
5893
5707
|
}
|
|
5894
|
-
.card-interactive.card
|
|
5895
|
-
.card-interactive .card:hover {
|
|
5708
|
+
.card-interactive:hover, .card-interactive.hover {
|
|
5896
5709
|
background-color: #f8f9fa;
|
|
5897
5710
|
text-decoration: none;
|
|
5898
5711
|
}
|
|
5899
|
-
.card-interactive.card
|
|
5900
|
-
.card-interactive .card:focus {
|
|
5712
|
+
.card-interactive:focus, .card-interactive.focus {
|
|
5901
5713
|
border-color: #80bdff;
|
|
5902
5714
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
5903
5715
|
}
|
|
5904
|
-
.card-interactive
|
|
5905
|
-
.card-interactive .card:active,
|
|
5906
|
-
.card-interactive .card.active {
|
|
5716
|
+
.card-interactive:active, .card-interactive.active {
|
|
5907
5717
|
background-color: #e9ecef;
|
|
5908
5718
|
}
|
|
5909
5719
|
.card-interactive::after {
|
|
@@ -5937,13 +5747,10 @@ button.label-inverse-dark:hover {
|
|
|
5937
5747
|
cursor: pointer;
|
|
5938
5748
|
}
|
|
5939
5749
|
|
|
5940
|
-
.card-interactive-primary.card
|
|
5941
|
-
.card-interactive-primary .card:focus {
|
|
5750
|
+
.card-interactive-primary:focus, .card-interactive-primary.focus {
|
|
5942
5751
|
background-color: #f8f9fa;
|
|
5943
5752
|
}
|
|
5944
|
-
.card-interactive-primary
|
|
5945
|
-
.card-interactive-primary .card:active,
|
|
5946
|
-
.card-interactive-primary .card.active {
|
|
5753
|
+
.card-interactive-primary:active, .card-interactive-primary.active {
|
|
5947
5754
|
background-color: #e9ecef;
|
|
5948
5755
|
}
|
|
5949
5756
|
.card-interactive-primary:hover::after, .card-interactive-primary.hover::after {
|
|
@@ -5955,27 +5762,23 @@ button.label-inverse-dark:hover {
|
|
|
5955
5762
|
.card-interactive-primary:active::after, .card-interactive-primary.active::after {
|
|
5956
5763
|
background-color: #007bff;
|
|
5957
5764
|
}
|
|
5958
|
-
.card-interactive-secondary
|
|
5959
|
-
.card-interactive-secondary .card {
|
|
5765
|
+
.card-interactive-secondary {
|
|
5960
5766
|
color: #212529;
|
|
5961
5767
|
}
|
|
5962
|
-
.card-interactive-secondary.card
|
|
5963
|
-
.card-interactive-secondary .card:hover {
|
|
5768
|
+
.card-interactive-secondary:hover, .card-interactive-secondary.hover {
|
|
5964
5769
|
background-color: #fff;
|
|
5965
5770
|
border-color: #80bdff;
|
|
5966
5771
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
5967
5772
|
color: #212529;
|
|
5968
5773
|
}
|
|
5969
|
-
.card-interactive-secondary
|
|
5970
|
-
.card-interactive-secondary .card:active,
|
|
5971
|
-
.card-interactive-secondary .card.active {
|
|
5774
|
+
.card-interactive-secondary:active, .card-interactive-secondary.active {
|
|
5972
5775
|
background-color: #fff;
|
|
5973
5776
|
}
|
|
5974
5777
|
.card-type-asset .aspect-ratio {
|
|
5975
5778
|
border-color: rgba(0, 0, 0, 0.125);
|
|
5976
5779
|
border-style: solid;
|
|
5977
5780
|
border-width: 0 0 0.0625rem 0;
|
|
5978
|
-
padding-bottom:
|
|
5781
|
+
padding-bottom: calc(9 / 16 * 100%);
|
|
5979
5782
|
}
|
|
5980
5783
|
.card-type-asset .aspect-ratio .custom-control label,
|
|
5981
5784
|
.card-type-asset .aspect-ratio .form-check-label {
|
|
@@ -6004,20 +5807,16 @@ button.label-inverse-dark:hover {
|
|
|
6004
5807
|
width: 100%;
|
|
6005
5808
|
}
|
|
6006
5809
|
.card-type-asset .card-type-asset-icon > .sticker {
|
|
5810
|
+
border-radius: 50%;
|
|
6007
5811
|
display: block;
|
|
5812
|
+
font-size: 2vw;
|
|
6008
5813
|
padding-bottom: 100%;
|
|
6009
5814
|
width: 100%;
|
|
6010
|
-
border-radius: 50%;
|
|
6011
|
-
font-size: 2vw;
|
|
6012
|
-
}
|
|
6013
|
-
.card-type-asset .card-type-asset-icon .sticker-overlay {
|
|
6014
|
-
border-radius: 50%;
|
|
6015
5815
|
}
|
|
6016
5816
|
.card-type-asset .dropdown-action {
|
|
6017
5817
|
margin-right: -0.5rem;
|
|
6018
5818
|
margin-top: -0.1875rem;
|
|
6019
5819
|
}
|
|
6020
|
-
|
|
6021
5820
|
.file-card .card-type-asset-icon {
|
|
6022
5821
|
color: #6c757d;
|
|
6023
5822
|
}
|
|
@@ -6043,31 +5842,24 @@ button.label-inverse-dark:hover {
|
|
|
6043
5842
|
min-width: 48px;
|
|
6044
5843
|
width: 30%;
|
|
6045
5844
|
}
|
|
6046
|
-
.user-card .card-type-asset-icon .lexicon-icon {
|
|
5845
|
+
.user-card .card-type-asset-icon > .lexicon-icon {
|
|
6047
5846
|
height: auto;
|
|
6048
5847
|
width: 50%;
|
|
6049
5848
|
}
|
|
6050
|
-
|
|
6051
|
-
.card-type-directory .dropdown-action {
|
|
6052
|
-
margin-right: -0.5rem;
|
|
6053
|
-
}
|
|
6054
5849
|
.card-type-directory .sticker {
|
|
6055
5850
|
font-size: 1.125rem;
|
|
6056
5851
|
}
|
|
6057
|
-
|
|
6058
|
-
.card-type-template.card,
|
|
6059
|
-
.card-type-template .card {
|
|
5852
|
+
.card-type-template {
|
|
6060
5853
|
color: #212529;
|
|
6061
5854
|
}
|
|
6062
|
-
.card-type-template.card
|
|
6063
|
-
.card-type-template .card:hover {
|
|
5855
|
+
.card-type-template:hover, .card-type-template.hover {
|
|
6064
5856
|
color: #212529;
|
|
6065
5857
|
}
|
|
6066
5858
|
.card-type-template .aspect-ratio {
|
|
6067
5859
|
border-width: 0;
|
|
6068
5860
|
color: #6c757d;
|
|
6069
5861
|
text-align: center;
|
|
6070
|
-
padding-bottom:
|
|
5862
|
+
padding-bottom: calc(9 / 16 * 100%);
|
|
6071
5863
|
}
|
|
6072
5864
|
.card-type-template .aspect-ratio .lexicon-icon {
|
|
6073
5865
|
height: auto;
|
|
@@ -6087,12 +5879,10 @@ button.label-inverse-dark:hover {
|
|
|
6087
5879
|
padding-top: 0;
|
|
6088
5880
|
text-align: center;
|
|
6089
5881
|
}
|
|
6090
|
-
.template-card-horizontal
|
|
6091
|
-
.template-card-horizontal .card {
|
|
5882
|
+
.template-card-horizontal {
|
|
6092
5883
|
color: #6c757d;
|
|
6093
5884
|
}
|
|
6094
|
-
.template-card-horizontal.card
|
|
6095
|
-
.template-card-horizontal .card:hover {
|
|
5885
|
+
.template-card-horizontal:hover, .template-card-horizontal.hover {
|
|
6096
5886
|
color: #6c757d;
|
|
6097
5887
|
}
|
|
6098
5888
|
.template-card-horizontal .sticker {
|
|
@@ -6121,7 +5911,6 @@ button.label-inverse-dark:hover {
|
|
|
6121
5911
|
.dropdown-toggle {
|
|
6122
5912
|
white-space: nowrap;
|
|
6123
5913
|
}
|
|
6124
|
-
|
|
6125
5914
|
.dropdown-header {
|
|
6126
5915
|
color: #6c757d;
|
|
6127
5916
|
display: block;
|
|
@@ -6130,6 +5919,7 @@ button.label-inverse-dark:hover {
|
|
|
6130
5919
|
padding-right: 1.5rem;
|
|
6131
5920
|
padding-top: 0.5rem;
|
|
6132
5921
|
position: relative;
|
|
5922
|
+
overflow-wrap: break-word;
|
|
6133
5923
|
word-wrap: break-word;
|
|
6134
5924
|
}
|
|
6135
5925
|
.dropdown-header:first-child {
|
|
@@ -6146,6 +5936,7 @@ button.label-inverse-dark:hover {
|
|
|
6146
5936
|
padding-top: 0.5rem;
|
|
6147
5937
|
text-transform: uppercase;
|
|
6148
5938
|
white-space: normal;
|
|
5939
|
+
overflow-wrap: break-word;
|
|
6149
5940
|
word-wrap: break-word;
|
|
6150
5941
|
}
|
|
6151
5942
|
.dropdown-subheader:first-child {
|
|
@@ -6157,6 +5948,7 @@ button.label-inverse-dark:hover {
|
|
|
6157
5948
|
font-size: 0.875rem;
|
|
6158
5949
|
padding: 0.25rem 1.5rem;
|
|
6159
5950
|
white-space: normal;
|
|
5951
|
+
overflow-wrap: break-word;
|
|
6160
5952
|
word-wrap: break-word;
|
|
6161
5953
|
}
|
|
6162
5954
|
|
|
@@ -6288,9 +6080,9 @@ button.label-inverse-dark:hover {
|
|
|
6288
6080
|
background-clip: padding-box;
|
|
6289
6081
|
background-color: #fff;
|
|
6290
6082
|
border-color: rgba(0, 0, 0, 0.15);
|
|
6083
|
+
border-radius: 0.25rem;
|
|
6291
6084
|
border-style: solid;
|
|
6292
6085
|
border-width: 0.0625rem;
|
|
6293
|
-
border-radius: 0.25rem;
|
|
6294
6086
|
color: #212529;
|
|
6295
6087
|
display: none;
|
|
6296
6088
|
float: left;
|
|
@@ -6302,23 +6094,21 @@ button.label-inverse-dark:hover {
|
|
|
6302
6094
|
max-width: 260px;
|
|
6303
6095
|
min-width: 10rem;
|
|
6304
6096
|
overflow: auto;
|
|
6305
|
-
padding: 0.5rem 0
|
|
6097
|
+
padding: 0.5rem 0;
|
|
6306
6098
|
position: absolute;
|
|
6307
6099
|
text-align: left;
|
|
6308
6100
|
top: 100%;
|
|
6309
6101
|
z-index: 1000;
|
|
6310
6102
|
}
|
|
6311
|
-
.dropdown-menu::after {
|
|
6312
|
-
content: "";
|
|
6313
|
-
display: block;
|
|
6314
|
-
padding-top: 0.5rem;
|
|
6315
|
-
}
|
|
6316
6103
|
@media (max-width: 991.98px) {
|
|
6317
6104
|
.dropdown-menu {
|
|
6318
6105
|
max-height: 295px;
|
|
6319
6106
|
max-width: 230px;
|
|
6320
6107
|
}
|
|
6321
6108
|
}
|
|
6109
|
+
.dropdown-menu.show {
|
|
6110
|
+
display: block;
|
|
6111
|
+
}
|
|
6322
6112
|
.dropdown-menu .alert {
|
|
6323
6113
|
line-height: normal;
|
|
6324
6114
|
margin: 0.5rem;
|
|
@@ -6355,10 +6145,6 @@ button.label-inverse-dark:hover {
|
|
|
6355
6145
|
margin-bottom: 0;
|
|
6356
6146
|
}
|
|
6357
6147
|
|
|
6358
|
-
.dropdown-menu.show {
|
|
6359
|
-
display: block;
|
|
6360
|
-
}
|
|
6361
|
-
|
|
6362
6148
|
.dropdown-menu-left {
|
|
6363
6149
|
left: 0;
|
|
6364
6150
|
right: auto;
|
|
@@ -6462,26 +6248,23 @@ button.label-inverse-dark:hover {
|
|
|
6462
6248
|
border-radius: 0.25rem;
|
|
6463
6249
|
cursor: pointer;
|
|
6464
6250
|
display: flex;
|
|
6465
|
-
height: 1.9375rem;
|
|
6466
|
-
line-height: 1.9375rem;
|
|
6467
|
-
width: 1.9375rem;
|
|
6468
6251
|
font-size: inherit;
|
|
6469
6252
|
font-weight: inherit;
|
|
6253
|
+
height: 1.9375rem;
|
|
6470
6254
|
justify-content: center;
|
|
6471
6255
|
line-height: inherit;
|
|
6472
6256
|
padding: 0;
|
|
6473
6257
|
text-transform: inherit;
|
|
6474
6258
|
vertical-align: baseline;
|
|
6259
|
+
width: 1.9375rem;
|
|
6475
6260
|
}
|
|
6476
6261
|
.dropdown-action > .dropdown-toggle:disabled, .dropdown-action > .dropdown-toggle.disabled {
|
|
6477
6262
|
cursor: not-allowed;
|
|
6478
6263
|
opacity: 0.65;
|
|
6479
6264
|
}
|
|
6480
|
-
.dropdown-action > .dropdown-toggle .inline-item .lexicon-icon,
|
|
6481
6265
|
.dropdown-action > .dropdown-toggle .lexicon-icon {
|
|
6482
6266
|
margin-top: 0;
|
|
6483
6267
|
}
|
|
6484
|
-
|
|
6485
6268
|
.dropdown-menu-indicator-start .dropdown-item-indicator {
|
|
6486
6269
|
height: 1rem;
|
|
6487
6270
|
left: 1.5rem;
|
|
@@ -6595,7 +6378,6 @@ button.label-inverse-dark:hover {
|
|
|
6595
6378
|
transform: none !important;
|
|
6596
6379
|
will-change: auto !important;
|
|
6597
6380
|
}
|
|
6598
|
-
|
|
6599
6381
|
.dropdown-menu-top-right {
|
|
6600
6382
|
bottom: 100% !important;
|
|
6601
6383
|
left: auto !important;
|
|
@@ -6606,7 +6388,6 @@ button.label-inverse-dark:hover {
|
|
|
6606
6388
|
transform: none !important;
|
|
6607
6389
|
will-change: auto !important;
|
|
6608
6390
|
}
|
|
6609
|
-
|
|
6610
6391
|
.dropdown-menu-top-center {
|
|
6611
6392
|
bottom: 100% !important;
|
|
6612
6393
|
left: 50% !important;
|
|
@@ -6617,7 +6398,6 @@ button.label-inverse-dark:hover {
|
|
|
6617
6398
|
transform: translateX(-50%) !important;
|
|
6618
6399
|
will-change: auto !important;
|
|
6619
6400
|
}
|
|
6620
|
-
|
|
6621
6401
|
.dropdown-menu-center {
|
|
6622
6402
|
bottom: auto !important;
|
|
6623
6403
|
left: 50% !important;
|
|
@@ -6626,7 +6406,6 @@ button.label-inverse-dark:hover {
|
|
|
6626
6406
|
transform: translateX(-50%) !important;
|
|
6627
6407
|
will-change: auto !important;
|
|
6628
6408
|
}
|
|
6629
|
-
|
|
6630
6409
|
.dropdown-menu-left-side {
|
|
6631
6410
|
bottom: auto !important;
|
|
6632
6411
|
left: auto !important;
|
|
@@ -6637,7 +6416,6 @@ button.label-inverse-dark:hover {
|
|
|
6637
6416
|
transform: none !important;
|
|
6638
6417
|
will-change: auto !important;
|
|
6639
6418
|
}
|
|
6640
|
-
|
|
6641
6419
|
.dropdown-menu-left-side-bottom {
|
|
6642
6420
|
bottom: 0 !important;
|
|
6643
6421
|
left: auto !important;
|
|
@@ -6648,7 +6426,6 @@ button.label-inverse-dark:hover {
|
|
|
6648
6426
|
transform: none !important;
|
|
6649
6427
|
will-change: auto !important;
|
|
6650
6428
|
}
|
|
6651
|
-
|
|
6652
6429
|
.dropdown-menu-left-side-middle {
|
|
6653
6430
|
bottom: auto !important;
|
|
6654
6431
|
left: auto !important;
|
|
@@ -6659,7 +6436,6 @@ button.label-inverse-dark:hover {
|
|
|
6659
6436
|
transform: translate(0, -50%) !important;
|
|
6660
6437
|
will-change: auto !important;
|
|
6661
6438
|
}
|
|
6662
|
-
|
|
6663
6439
|
.dropdown-menu-right-side {
|
|
6664
6440
|
bottom: auto !important;
|
|
6665
6441
|
left: 100% !important;
|
|
@@ -6670,7 +6446,6 @@ button.label-inverse-dark:hover {
|
|
|
6670
6446
|
transform: none !important;
|
|
6671
6447
|
will-change: auto !important;
|
|
6672
6448
|
}
|
|
6673
|
-
|
|
6674
6449
|
.dropdown-menu-right-side-bottom {
|
|
6675
6450
|
bottom: 0 !important;
|
|
6676
6451
|
left: 100% !important;
|
|
@@ -6681,7 +6456,6 @@ button.label-inverse-dark:hover {
|
|
|
6681
6456
|
transform: none !important;
|
|
6682
6457
|
will-change: auto !important;
|
|
6683
6458
|
}
|
|
6684
|
-
|
|
6685
6459
|
.dropdown-menu-right-side-middle {
|
|
6686
6460
|
bottom: auto !important;
|
|
6687
6461
|
left: 100% !important;
|
|
@@ -6692,7 +6466,6 @@ button.label-inverse-dark:hover {
|
|
|
6692
6466
|
transform: translate(0, -50%) !important;
|
|
6693
6467
|
will-change: auto !important;
|
|
6694
6468
|
}
|
|
6695
|
-
|
|
6696
6469
|
.dropdown-full .dropdown-menu,
|
|
6697
6470
|
.dropdown-wide .dropdown-menu {
|
|
6698
6471
|
max-width: none;
|
|
@@ -6762,7 +6535,6 @@ button.label-inverse-dark:hover {
|
|
|
6762
6535
|
max-height: calc(9rem + 2px);
|
|
6763
6536
|
max-width: none;
|
|
6764
6537
|
width: 100%;
|
|
6765
|
-
padding-bottom: 0;
|
|
6766
6538
|
}
|
|
6767
6539
|
.nav-item.dropdown-full {
|
|
6768
6540
|
position: static;
|
|
@@ -6969,10 +6741,6 @@ button.label-inverse-dark:hover {
|
|
|
6969
6741
|
cursor: not-allowed;
|
|
6970
6742
|
}
|
|
6971
6743
|
|
|
6972
|
-
fieldset {
|
|
6973
|
-
word-wrap: break-word;
|
|
6974
|
-
}
|
|
6975
|
-
|
|
6976
6744
|
label {
|
|
6977
6745
|
margin-bottom: 0.5rem;
|
|
6978
6746
|
max-width: 100%;
|
|
@@ -7280,7 +7048,6 @@ select.form-control[size]:focus, select.form-control[size].focus {
|
|
|
7280
7048
|
select.form-control[size] option {
|
|
7281
7049
|
padding: 0.25rem;
|
|
7282
7050
|
}
|
|
7283
|
-
|
|
7284
7051
|
select.form-control[multiple] {
|
|
7285
7052
|
background-image: none;
|
|
7286
7053
|
height: auto;
|
|
@@ -7295,7 +7062,6 @@ select.form-control[multiple]:focus, select.form-control[multiple].focus {
|
|
|
7295
7062
|
select.form-control[multiple] option {
|
|
7296
7063
|
padding: 0.25rem;
|
|
7297
7064
|
}
|
|
7298
|
-
|
|
7299
7065
|
textarea.form-control,
|
|
7300
7066
|
textarea.form-control-plaintext,
|
|
7301
7067
|
.form-control.form-control-textarea {
|
|
@@ -7731,11 +7497,6 @@ button.link-outline {
|
|
|
7731
7497
|
background-color: #007bff;
|
|
7732
7498
|
color: #fff;
|
|
7733
7499
|
}
|
|
7734
|
-
button.link-outline-primary:focus {
|
|
7735
|
-
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
|
|
7736
|
-
outline: 0;
|
|
7737
|
-
}
|
|
7738
|
-
|
|
7739
7500
|
.link-outline-primary:active {
|
|
7740
7501
|
background-color: #007bff;
|
|
7741
7502
|
color: #fff;
|
|
@@ -7744,16 +7505,20 @@ button.link-outline-primary:focus {
|
|
|
7744
7505
|
background-color: #007bff;
|
|
7745
7506
|
color: #fff;
|
|
7746
7507
|
}
|
|
7747
|
-
.link-outline-primary[aria-expanded=true], .link-outline-primary.show, .show > .link-outline-primary {
|
|
7748
|
-
background-color: #007bff;
|
|
7749
|
-
color: #fff;
|
|
7750
|
-
}
|
|
7751
7508
|
.link-outline-primary:disabled, .link-outline-primary.disabled {
|
|
7752
7509
|
background-color: transparent;
|
|
7753
7510
|
color: #007bff;
|
|
7754
7511
|
cursor: not-allowed;
|
|
7755
7512
|
opacity: 0.65;
|
|
7756
7513
|
}
|
|
7514
|
+
.link-outline-primary[type]:focus {
|
|
7515
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
|
|
7516
|
+
outline: 0;
|
|
7517
|
+
}
|
|
7518
|
+
.link-outline-primary[aria-expanded=true], .link-outline-primary.show, .show > .link-outline-primary {
|
|
7519
|
+
background-color: #007bff;
|
|
7520
|
+
color: #fff;
|
|
7521
|
+
}
|
|
7757
7522
|
.link-outline-secondary {
|
|
7758
7523
|
border-color: #6c757d;
|
|
7759
7524
|
color: #6c757d;
|
|
@@ -7762,11 +7527,6 @@ button.link-outline-primary:focus {
|
|
|
7762
7527
|
background-color: #6c757d;
|
|
7763
7528
|
color: #fff;
|
|
7764
7529
|
}
|
|
7765
|
-
button.link-outline-secondary:focus {
|
|
7766
|
-
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
|
|
7767
|
-
outline: 0;
|
|
7768
|
-
}
|
|
7769
|
-
|
|
7770
7530
|
.link-outline-secondary:active {
|
|
7771
7531
|
background-color: #6c757d;
|
|
7772
7532
|
color: #fff;
|
|
@@ -7775,16 +7535,20 @@ button.link-outline-secondary:focus {
|
|
|
7775
7535
|
background-color: #6c757d;
|
|
7776
7536
|
color: #fff;
|
|
7777
7537
|
}
|
|
7778
|
-
.link-outline-secondary[aria-expanded=true], .link-outline-secondary.show, .show > .link-outline-secondary {
|
|
7779
|
-
background-color: #6c757d;
|
|
7780
|
-
color: #fff;
|
|
7781
|
-
}
|
|
7782
7538
|
.link-outline-secondary:disabled, .link-outline-secondary.disabled {
|
|
7783
7539
|
background-color: transparent;
|
|
7784
7540
|
color: #6c757d;
|
|
7785
7541
|
cursor: not-allowed;
|
|
7786
7542
|
opacity: 0.65;
|
|
7787
7543
|
}
|
|
7544
|
+
.link-outline-secondary[type]:focus {
|
|
7545
|
+
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
|
|
7546
|
+
outline: 0;
|
|
7547
|
+
}
|
|
7548
|
+
.link-outline-secondary[aria-expanded=true], .link-outline-secondary.show, .show > .link-outline-secondary {
|
|
7549
|
+
background-color: #6c757d;
|
|
7550
|
+
color: #fff;
|
|
7551
|
+
}
|
|
7788
7552
|
.link-outline-borderless {
|
|
7789
7553
|
border-color: transparent;
|
|
7790
7554
|
}
|
|
@@ -7861,11 +7625,6 @@ button.link-outline-secondary:focus {
|
|
|
7861
7625
|
background-color: #6c757d;
|
|
7862
7626
|
color: #fff;
|
|
7863
7627
|
}
|
|
7864
|
-
button.component-action:focus {
|
|
7865
|
-
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
|
|
7866
|
-
outline: 0;
|
|
7867
|
-
}
|
|
7868
|
-
|
|
7869
7628
|
.component-action:active {
|
|
7870
7629
|
background-color: #6c757d;
|
|
7871
7630
|
color: #fff;
|
|
@@ -7874,10 +7633,6 @@ button.component-action:focus {
|
|
|
7874
7633
|
background-color: #6c757d;
|
|
7875
7634
|
color: #fff;
|
|
7876
7635
|
}
|
|
7877
|
-
.component-action[aria-expanded=true], .component-action.show, .show > .component-action {
|
|
7878
|
-
background-color: #6c757d;
|
|
7879
|
-
color: #fff;
|
|
7880
|
-
}
|
|
7881
7636
|
.component-action:disabled, .component-action.disabled {
|
|
7882
7637
|
background-color: transparent;
|
|
7883
7638
|
color: #6c757d;
|
|
@@ -7887,6 +7642,14 @@ button.component-action:focus {
|
|
|
7887
7642
|
.component-action:disabled:active, .component-action.disabled:active {
|
|
7888
7643
|
pointer-events: none;
|
|
7889
7644
|
}
|
|
7645
|
+
.component-action[type]:focus {
|
|
7646
|
+
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
|
|
7647
|
+
outline: 0;
|
|
7648
|
+
}
|
|
7649
|
+
.component-action[aria-expanded=true], .component-action.show, .show > .component-action {
|
|
7650
|
+
background-color: #6c757d;
|
|
7651
|
+
color: #fff;
|
|
7652
|
+
}
|
|
7890
7653
|
.component-action .lexicon-icon {
|
|
7891
7654
|
margin-top: 0;
|
|
7892
7655
|
}
|
|
@@ -8212,10 +7975,6 @@ button.component-action:focus {
|
|
|
8212
7975
|
padding-right: 1rem;
|
|
8213
7976
|
padding-top: 1rem;
|
|
8214
7977
|
width: 272px;
|
|
8215
|
-
padding-bottom: 0;
|
|
8216
|
-
}
|
|
8217
|
-
.clay-color-dropdown-menu::after {
|
|
8218
|
-
padding-top: 0;
|
|
8219
7978
|
}
|
|
8220
7979
|
.clay-color-dropdown-menu .component-action:hover {
|
|
8221
7980
|
background-color: transparent;
|
|
@@ -8521,43 +8280,42 @@ label.custom-control-label {
|
|
|
8521
8280
|
z-index: 1;
|
|
8522
8281
|
}
|
|
8523
8282
|
.custom-control-input:focus ~ .custom-control-label::before {
|
|
8524
|
-
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
8525
|
-
}
|
|
8526
|
-
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
|
|
8527
8283
|
border-color: #80bdff;
|
|
8284
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
8528
8285
|
}
|
|
8529
8286
|
.custom-control-input:active ~ .custom-control-label::before {
|
|
8530
8287
|
background-color: #027cff;
|
|
8531
8288
|
border-color: #027cff;
|
|
8289
|
+
box-shadow: none;
|
|
8532
8290
|
color: #fff;
|
|
8533
8291
|
}
|
|
8534
|
-
.custom-control-input:
|
|
8535
|
-
|
|
8536
|
-
border-color: #007bff;
|
|
8537
|
-
color: #fff;
|
|
8538
|
-
}
|
|
8539
|
-
.custom-control-input[disabled], .custom-control-input:disabled {
|
|
8292
|
+
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
|
|
8293
|
+
color: #6c757d;
|
|
8540
8294
|
cursor: not-allowed;
|
|
8541
8295
|
}
|
|
8542
8296
|
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
|
|
8543
8297
|
background-color: #e9ecef;
|
|
8298
|
+
border-color: #ced4da;
|
|
8544
8299
|
box-shadow: none;
|
|
8545
8300
|
}
|
|
8546
|
-
.custom-control-input
|
|
8547
|
-
color: #
|
|
8548
|
-
|
|
8301
|
+
.custom-control-input:checked ~ .custom-control-label::before {
|
|
8302
|
+
background-color: #007bff;
|
|
8303
|
+
border-color: #007bff;
|
|
8304
|
+
color: #fff;
|
|
8549
8305
|
}
|
|
8550
|
-
.custom-control-input:disabled:checked ~ .custom-control-label::before {
|
|
8551
|
-
background-color:
|
|
8306
|
+
.custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
8307
|
+
background-color: #e9ecef;
|
|
8308
|
+
box-shadow: none;
|
|
8552
8309
|
}
|
|
8553
|
-
|
|
8554
|
-
|
|
8555
|
-
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
8310
|
+
.custom-checkbox .custom-control-input ~ .custom-control-label::before {
|
|
8311
|
+
border-radius: 0.25rem;
|
|
8556
8312
|
}
|
|
8557
|
-
|
|
8558
8313
|
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
|
|
8559
8314
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='8'%20height='8'%20viewBox='0%200%208%208'%3E%3Cpath%20fill='%23fff'%20d='M6.564.75l-3.59%203.612-1.538-1.55L0%204.26l2.974%202.99L8%202.193z'/%3E%3C/svg%3E");
|
|
8560
8315
|
}
|
|
8316
|
+
.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
8317
|
+
background-color: rgba(0, 123, 255, 0.5);
|
|
8318
|
+
}
|
|
8561
8319
|
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
|
|
8562
8320
|
background-color: #007bff;
|
|
8563
8321
|
border-color: #007bff;
|
|
@@ -8565,26 +8323,18 @@ label.custom-control-label {
|
|
|
8565
8323
|
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
|
|
8566
8324
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='4'%20height='4'%20viewBox='0%200%204%204'%3E%3Cpath%20stroke='%23fff'%20d='M0%202h4'/%3E%3C/svg%3E");
|
|
8567
8325
|
}
|
|
8568
|
-
.custom-checkbox .custom-control-input:disabled:
|
|
8326
|
+
.custom-checkbox .custom-control-input:indeterminate[disabled] ~ .custom-control-label::before, .custom-checkbox .custom-control-input:indeterminate:disabled ~ .custom-control-label::before {
|
|
8569
8327
|
background-color: rgba(0, 123, 255, 0.5);
|
|
8570
8328
|
}
|
|
8571
|
-
.custom-
|
|
8572
|
-
|
|
8573
|
-
}
|
|
8574
|
-
.custom-checkbox .custom-control-label::before {
|
|
8575
|
-
border-radius: 0.25rem;
|
|
8329
|
+
.custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
8330
|
+
border-radius: 50%;
|
|
8576
8331
|
}
|
|
8577
|
-
|
|
8578
8332
|
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
|
|
8579
8333
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='-4%20-4%208%208'%3E%3Ccircle%20r='3'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
8580
8334
|
}
|
|
8581
|
-
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
|
|
8335
|
+
.custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
8582
8336
|
background-color: rgba(0, 123, 255, 0.5);
|
|
8583
8337
|
}
|
|
8584
|
-
.custom-radio .custom-control-label::before {
|
|
8585
|
-
border-radius: 50%;
|
|
8586
|
-
}
|
|
8587
|
-
|
|
8588
8338
|
.custom-control-inline {
|
|
8589
8339
|
display: inline-flex;
|
|
8590
8340
|
}
|
|
@@ -9010,12 +8760,7 @@ label.custom-control-label {
|
|
|
9010
8760
|
padding-right: 0;
|
|
9011
8761
|
padding-top: 0;
|
|
9012
8762
|
width: 100%;
|
|
9013
|
-
padding-bottom: 0;
|
|
9014
|
-
}
|
|
9015
|
-
.date-picker-dropdown-menu::after {
|
|
9016
|
-
padding-top: 0;
|
|
9017
8763
|
}
|
|
9018
|
-
|
|
9019
8764
|
.date-picker-nav {
|
|
9020
8765
|
display: flex;
|
|
9021
8766
|
margin-left: -0.25rem;
|
|
@@ -9465,12 +9210,14 @@ label.custom-control-label {
|
|
|
9465
9210
|
|
|
9466
9211
|
.form-feedback-group {
|
|
9467
9212
|
width: 100%;
|
|
9213
|
+
overflow-wrap: break-word;
|
|
9468
9214
|
word-wrap: break-word;
|
|
9469
9215
|
}
|
|
9470
9216
|
|
|
9471
9217
|
.form-feedback-item {
|
|
9472
9218
|
font-size: 80%;
|
|
9473
9219
|
margin-top: 0.25rem;
|
|
9220
|
+
overflow-wrap: break-word;
|
|
9474
9221
|
word-wrap: break-word;
|
|
9475
9222
|
}
|
|
9476
9223
|
|
|
@@ -9487,6 +9234,7 @@ label.custom-control-label {
|
|
|
9487
9234
|
display: block;
|
|
9488
9235
|
font-size: 0.875rem;
|
|
9489
9236
|
margin-top: 0.25rem;
|
|
9237
|
+
overflow-wrap: break-word;
|
|
9490
9238
|
word-wrap: break-word;
|
|
9491
9239
|
}
|
|
9492
9240
|
|
|
@@ -9536,8 +9284,13 @@ label.custom-control-label {
|
|
|
9536
9284
|
.has-error .input-group-item.focus {
|
|
9537
9285
|
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
|
|
9538
9286
|
}
|
|
9539
|
-
.has-error .input-group-item.focus .
|
|
9540
|
-
|
|
9287
|
+
.has-error .input-group-item.focus .input-group-inset {
|
|
9288
|
+
border-color: #dc3545;
|
|
9289
|
+
}
|
|
9290
|
+
.has-error .input-group-item.focus .input-group-inset ~ .input-group-inset-item {
|
|
9291
|
+
border-color: #dc3545;
|
|
9292
|
+
}
|
|
9293
|
+
.has-error .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
9541
9294
|
border-color: #dc3545;
|
|
9542
9295
|
}
|
|
9543
9296
|
.has-error .input-group-item .input-group-inset:focus {
|
|
@@ -9546,9 +9299,6 @@ label.custom-control-label {
|
|
|
9546
9299
|
.has-error .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
9547
9300
|
border-color: #dc3545;
|
|
9548
9301
|
}
|
|
9549
|
-
.has-error .input-group .input-group-inset-item {
|
|
9550
|
-
border-color: #dc3545;
|
|
9551
|
-
}
|
|
9552
9302
|
|
|
9553
9303
|
.has-warning .custom-control-label,
|
|
9554
9304
|
.has-warning .form-check-label {
|
|
@@ -9578,8 +9328,13 @@ label.custom-control-label {
|
|
|
9578
9328
|
.has-warning .input-group-item.focus {
|
|
9579
9329
|
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
|
|
9580
9330
|
}
|
|
9581
|
-
.has-warning .input-group-item.focus .
|
|
9582
|
-
|
|
9331
|
+
.has-warning .input-group-item.focus .input-group-inset {
|
|
9332
|
+
border-color: #ffc107;
|
|
9333
|
+
}
|
|
9334
|
+
.has-warning .input-group-item.focus .input-group-inset ~ .input-group-inset-item {
|
|
9335
|
+
border-color: #ffc107;
|
|
9336
|
+
}
|
|
9337
|
+
.has-warning .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
9583
9338
|
border-color: #ffc107;
|
|
9584
9339
|
}
|
|
9585
9340
|
.has-warning .input-group-item .input-group-inset:focus {
|
|
@@ -9588,9 +9343,6 @@ label.custom-control-label {
|
|
|
9588
9343
|
.has-warning .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
9589
9344
|
border-color: #ffc107;
|
|
9590
9345
|
}
|
|
9591
|
-
.has-warning .input-group .input-group-inset-item {
|
|
9592
|
-
border-color: #ffc107;
|
|
9593
|
-
}
|
|
9594
9346
|
|
|
9595
9347
|
.has-success .custom-control-label,
|
|
9596
9348
|
.has-success .form-check-label {
|
|
@@ -9620,8 +9372,13 @@ label.custom-control-label {
|
|
|
9620
9372
|
.has-success .input-group-item.focus {
|
|
9621
9373
|
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
|
|
9622
9374
|
}
|
|
9623
|
-
.has-success .input-group-item.focus .
|
|
9624
|
-
|
|
9375
|
+
.has-success .input-group-item.focus .input-group-inset {
|
|
9376
|
+
border-color: #28a745;
|
|
9377
|
+
}
|
|
9378
|
+
.has-success .input-group-item.focus .input-group-inset ~ .input-group-inset-item {
|
|
9379
|
+
border-color: #28a745;
|
|
9380
|
+
}
|
|
9381
|
+
.has-success .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
9625
9382
|
border-color: #28a745;
|
|
9626
9383
|
}
|
|
9627
9384
|
.has-success .input-group-item .input-group-inset:focus {
|
|
@@ -9630,9 +9387,6 @@ label.custom-control-label {
|
|
|
9630
9387
|
.has-success .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
9631
9388
|
border-color: #28a745;
|
|
9632
9389
|
}
|
|
9633
|
-
.has-success .input-group .input-group-inset-item {
|
|
9634
|
-
border-color: #28a745;
|
|
9635
|
-
}
|
|
9636
9390
|
|
|
9637
9391
|
.input-group > .form-control,
|
|
9638
9392
|
.input-group > .form-control-plaintext,
|
|
@@ -9719,6 +9473,26 @@ label.custom-control-label {
|
|
|
9719
9473
|
.input-group-append > .input-group-text + .btn {
|
|
9720
9474
|
margin-left: -0.0625rem;
|
|
9721
9475
|
}
|
|
9476
|
+
.input-group-prepend .btn,
|
|
9477
|
+
.input-group-append .btn {
|
|
9478
|
+
z-index: 1;
|
|
9479
|
+
}
|
|
9480
|
+
.input-group-prepend .btn:hover,
|
|
9481
|
+
.input-group-append .btn:hover {
|
|
9482
|
+
z-index: 3;
|
|
9483
|
+
}
|
|
9484
|
+
.input-group-prepend .btn,
|
|
9485
|
+
.input-group-prepend .form-control,
|
|
9486
|
+
.input-group-append .btn,
|
|
9487
|
+
.input-group-append .form-control {
|
|
9488
|
+
position: relative;
|
|
9489
|
+
}
|
|
9490
|
+
.input-group-prepend .btn:focus,
|
|
9491
|
+
.input-group-prepend .form-control:focus,
|
|
9492
|
+
.input-group-append .btn:focus,
|
|
9493
|
+
.input-group-append .form-control:focus {
|
|
9494
|
+
z-index: 4;
|
|
9495
|
+
}
|
|
9722
9496
|
|
|
9723
9497
|
.input-group {
|
|
9724
9498
|
align-items: stretch;
|
|
@@ -9727,17 +9501,6 @@ label.custom-control-label {
|
|
|
9727
9501
|
position: relative;
|
|
9728
9502
|
width: 100%;
|
|
9729
9503
|
}
|
|
9730
|
-
.input-group .btn {
|
|
9731
|
-
position: relative;
|
|
9732
|
-
z-index: 1;
|
|
9733
|
-
}
|
|
9734
|
-
.input-group .btn:hover {
|
|
9735
|
-
z-index: 3;
|
|
9736
|
-
}
|
|
9737
|
-
.input-group .btn:focus,
|
|
9738
|
-
.input-group .form-control:focus {
|
|
9739
|
-
z-index: 4;
|
|
9740
|
-
}
|
|
9741
9504
|
.input-group .btn-unstyled {
|
|
9742
9505
|
color: inherit;
|
|
9743
9506
|
}
|
|
@@ -11817,20 +11580,20 @@ label.custom-control-label {
|
|
|
11817
11580
|
border-color: #dee2e6 #dee2e6 #fff;
|
|
11818
11581
|
color: #495057;
|
|
11819
11582
|
}
|
|
11820
|
-
.nav-tabs .nav-link[aria-expanded=true], .nav-tabs .nav-link.show, .show > .nav-tabs .nav-link {
|
|
11821
|
-
background-color: #fff;
|
|
11822
|
-
border-color: #dee2e6 #dee2e6 #fff;
|
|
11823
|
-
color: #495057;
|
|
11824
|
-
}
|
|
11825
11583
|
.nav-tabs .nav-link:disabled, .nav-tabs .nav-link.disabled {
|
|
11826
11584
|
background-color: transparent;
|
|
11827
11585
|
border-color: transparent;
|
|
11828
11586
|
color: #6c757d;
|
|
11829
11587
|
}
|
|
11830
|
-
.nav-tabs .nav-
|
|
11588
|
+
.nav-tabs .nav-link[aria-expanded=true], .nav-tabs .nav-link.show, .show > .nav-tabs .nav-link {
|
|
11589
|
+
background-color: #fff;
|
|
11831
11590
|
border-color: #dee2e6 #dee2e6 #fff;
|
|
11832
11591
|
color: #495057;
|
|
11592
|
+
}
|
|
11593
|
+
.nav-tabs .nav-item.show .nav-link {
|
|
11833
11594
|
background-color: #fff;
|
|
11595
|
+
border-color: #dee2e6 #dee2e6 #fff;
|
|
11596
|
+
color: #495057;
|
|
11834
11597
|
}
|
|
11835
11598
|
.nav-tabs .dropdown-menu {
|
|
11836
11599
|
border-top-left-radius: 0;
|
|
@@ -15567,6 +15330,7 @@ label.custom-control-label {
|
|
|
15567
15330
|
}
|
|
15568
15331
|
.page-link {
|
|
15569
15332
|
align-items: center;
|
|
15333
|
+
background-color: #fff;
|
|
15570
15334
|
border-radius: 0;
|
|
15571
15335
|
border-color: #dee2e6;
|
|
15572
15336
|
border-style: solid;
|
|
@@ -15582,7 +15346,6 @@ label.custom-control-label {
|
|
|
15582
15346
|
padding-right: 0.75rem;
|
|
15583
15347
|
padding-top: 0.5rem;
|
|
15584
15348
|
position: relative;
|
|
15585
|
-
background-color: #fff;
|
|
15586
15349
|
}
|
|
15587
15350
|
.page-link > .c-inner {
|
|
15588
15351
|
margin-bottom: -0.5rem;
|
|
@@ -15594,11 +15357,11 @@ label.custom-control-label {
|
|
|
15594
15357
|
margin-top: 0;
|
|
15595
15358
|
}
|
|
15596
15359
|
.page-link:hover {
|
|
15360
|
+
background-color: #e9ecef;
|
|
15597
15361
|
border-color: #dee2e6;
|
|
15598
15362
|
color: #0056b3;
|
|
15599
15363
|
text-decoration: none;
|
|
15600
15364
|
z-index: 2;
|
|
15601
|
-
background-color: #e9ecef;
|
|
15602
15365
|
}
|
|
15603
15366
|
.page-link:focus {
|
|
15604
15367
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
@@ -15606,13 +15369,14 @@ label.custom-control-label {
|
|
|
15606
15369
|
z-index: 4;
|
|
15607
15370
|
}
|
|
15608
15371
|
.page-link:active, .page-link.active {
|
|
15372
|
+
background-color: #007bff;
|
|
15609
15373
|
border-color: #007bff;
|
|
15610
15374
|
color: #fff;
|
|
15611
15375
|
cursor: default;
|
|
15612
15376
|
z-index: 3;
|
|
15613
|
-
background-color: #007bff;
|
|
15614
15377
|
}
|
|
15615
15378
|
.page-link:disabled, .page-link.disabled {
|
|
15379
|
+
background-color: #fff;
|
|
15616
15380
|
border-color: #dee2e6;
|
|
15617
15381
|
box-shadow: none;
|
|
15618
15382
|
color: #6c757d;
|
|
@@ -15620,17 +15384,17 @@ label.custom-control-label {
|
|
|
15620
15384
|
opacity: 1;
|
|
15621
15385
|
pointer-events: auto;
|
|
15622
15386
|
z-index: 0;
|
|
15623
|
-
background-color: #fff;
|
|
15624
15387
|
}
|
|
15625
15388
|
.page-item.active .page-link,
|
|
15626
15389
|
.page-item.show .page-link {
|
|
15390
|
+
background-color: #007bff;
|
|
15627
15391
|
border-color: #007bff;
|
|
15628
15392
|
color: #fff;
|
|
15629
15393
|
cursor: default;
|
|
15630
15394
|
z-index: 3;
|
|
15631
|
-
background-color: #007bff;
|
|
15632
15395
|
}
|
|
15633
15396
|
.page-item.disabled .page-link {
|
|
15397
|
+
background-color: #fff;
|
|
15634
15398
|
border-color: #dee2e6;
|
|
15635
15399
|
box-shadow: none;
|
|
15636
15400
|
color: #6c757d;
|
|
@@ -15638,7 +15402,6 @@ label.custom-control-label {
|
|
|
15638
15402
|
opacity: 1;
|
|
15639
15403
|
pointer-events: auto;
|
|
15640
15404
|
z-index: 0;
|
|
15641
|
-
background-color: #fff;
|
|
15642
15405
|
}
|
|
15643
15406
|
.page-item {
|
|
15644
15407
|
margin-left: -0.5px;
|
|
@@ -15690,9 +15453,9 @@ label.custom-control-label {
|
|
|
15690
15453
|
}
|
|
15691
15454
|
.pagination-items-per-page > a:hover,
|
|
15692
15455
|
.pagination-items-per-page > button:hover {
|
|
15456
|
+
background-color: #e9ecef;
|
|
15693
15457
|
border-color: #dee2e6;
|
|
15694
15458
|
color: #0056b3;
|
|
15695
|
-
background-color: #e9ecef;
|
|
15696
15459
|
}
|
|
15697
15460
|
.pagination-items-per-page > a:focus,
|
|
15698
15461
|
.pagination-items-per-page > button:focus {
|
|
@@ -15702,37 +15465,37 @@ label.custom-control-label {
|
|
|
15702
15465
|
.pagination-items-per-page > a:active, .pagination-items-per-page > a.active,
|
|
15703
15466
|
.pagination-items-per-page > button:active,
|
|
15704
15467
|
.pagination-items-per-page > button.active {
|
|
15468
|
+
background-color: #007bff;
|
|
15705
15469
|
border-color: #007bff;
|
|
15706
15470
|
color: #fff;
|
|
15707
|
-
background-color: #007bff;
|
|
15708
15471
|
}
|
|
15709
15472
|
.pagination-items-per-page > a:disabled, .pagination-items-per-page > a.disabled,
|
|
15710
15473
|
.pagination-items-per-page > button:disabled,
|
|
15711
15474
|
.pagination-items-per-page > button.disabled {
|
|
15475
|
+
background-color: #fff;
|
|
15712
15476
|
border-color: #dee2e6;
|
|
15713
15477
|
box-shadow: none;
|
|
15714
15478
|
color: #6c757d;
|
|
15715
15479
|
cursor: not-allowed;
|
|
15716
15480
|
opacity: 1;
|
|
15717
15481
|
pointer-events: auto;
|
|
15718
|
-
background-color: #fff;
|
|
15719
15482
|
}
|
|
15720
15483
|
.pagination-items-per-page.active > a,
|
|
15721
15484
|
.pagination-items-per-page.active > button, .pagination-items-per-page.show > a,
|
|
15722
15485
|
.pagination-items-per-page.show > button {
|
|
15486
|
+
background-color: #007bff;
|
|
15723
15487
|
border-color: #007bff;
|
|
15724
15488
|
color: #fff;
|
|
15725
|
-
background-color: #007bff;
|
|
15726
15489
|
}
|
|
15727
15490
|
.pagination-items-per-page.disabled > a,
|
|
15728
15491
|
.pagination-items-per-page.disabled > button {
|
|
15492
|
+
background-color: #fff;
|
|
15729
15493
|
border-color: #dee2e6;
|
|
15730
15494
|
box-shadow: none;
|
|
15731
15495
|
color: #6c757d;
|
|
15732
15496
|
cursor: not-allowed;
|
|
15733
15497
|
opacity: 1;
|
|
15734
15498
|
pointer-events: auto;
|
|
15735
|
-
background-color: #fff;
|
|
15736
15499
|
}
|
|
15737
15500
|
.pagination-results {
|
|
15738
15501
|
border-color: transparent;
|
|
@@ -15876,7 +15639,7 @@ label.custom-control-label {
|
|
|
15876
15639
|
.panel-header .collapse-icon-closed,
|
|
15877
15640
|
.panel-header .collapse-icon-open {
|
|
15878
15641
|
font-size: 0.875rem;
|
|
15879
|
-
top: calc(0.75rem + (((1em * 1.2) - 1em)
|
|
15642
|
+
top: calc(0.75rem + (((1em * 1.2) - 1em) * 0.5));
|
|
15880
15643
|
}
|
|
15881
15644
|
|
|
15882
15645
|
.panel-header-link {
|
|
@@ -16758,7 +16521,7 @@ fieldset + .sheet-footer {
|
|
|
16758
16521
|
}
|
|
16759
16522
|
.sheet-subtitle .collapse-icon-closed,
|
|
16760
16523
|
.sheet-subtitle .collapse-icon-open {
|
|
16761
|
-
top: calc(0.3125rem + (((1em * 1.2) - 1em)
|
|
16524
|
+
top: calc(0.3125rem + (((1em * 1.2) - 1em) * 0.5));
|
|
16762
16525
|
}
|
|
16763
16526
|
.sheet-subtitle .component-title,
|
|
16764
16527
|
.sheet-subtitle .heading-text {
|
|
@@ -17001,9 +16764,6 @@ a.sheet-subtitle:hover {
|
|
|
17001
16764
|
padding-right: 0.5rem;
|
|
17002
16765
|
padding-top: 1rem;
|
|
17003
16766
|
}
|
|
17004
|
-
.sidebar-list-group .autofit-col .list-group-title:only-child {
|
|
17005
|
-
min-height: 1.5rem;
|
|
17006
|
-
}
|
|
17007
16767
|
.sidebar-list-group .list-group-item {
|
|
17008
16768
|
background-color: transparent;
|
|
17009
16769
|
border-color: #dee2e6;
|
|
@@ -17023,12 +16783,6 @@ a.sheet-subtitle:hover {
|
|
|
17023
16783
|
bottom: -0.75rem;
|
|
17024
16784
|
top: auto;
|
|
17025
16785
|
}
|
|
17026
|
-
.sidebar-list-group .sticker.sticker-outside.sticker-bottom-right {
|
|
17027
|
-
bottom: -0.75rem;
|
|
17028
|
-
left: auto;
|
|
17029
|
-
right: -0.75rem;
|
|
17030
|
-
top: auto;
|
|
17031
|
-
}
|
|
17032
16786
|
.sidebar-list-group .sticker.sticker-outside.sticker-top-right {
|
|
17033
16787
|
left: auto;
|
|
17034
16788
|
right: -0.75rem;
|
|
@@ -17239,9 +16993,6 @@ a.sheet-subtitle:hover {
|
|
|
17239
16993
|
.sidebar-dark .nav-nested .nav-link.active {
|
|
17240
16994
|
color: #fff;
|
|
17241
16995
|
}
|
|
17242
|
-
.sidebar-dark .nav-nested .nav-link[aria-expanded=true], .sidebar-dark .nav-nested .nav-link.show, .show > .sidebar-dark .nav-nested .nav-link {
|
|
17243
|
-
color: #fff;
|
|
17244
|
-
}
|
|
17245
16996
|
.sidebar-dark .nav-nested .nav-link:disabled, .sidebar-dark .nav-nested .nav-link.disabled {
|
|
17246
16997
|
box-shadow: none;
|
|
17247
16998
|
color: #a9afb5;
|
|
@@ -17250,6 +17001,9 @@ a.sheet-subtitle:hover {
|
|
|
17250
17001
|
.sidebar-dark .nav-nested .nav-link:disabled:active, .sidebar-dark .nav-nested .nav-link.disabled:active {
|
|
17251
17002
|
pointer-events: none;
|
|
17252
17003
|
}
|
|
17004
|
+
.sidebar-dark .nav-nested .nav-link[aria-expanded=true], .sidebar-dark .nav-nested .nav-link.show, .show > .sidebar-dark .nav-nested .nav-link {
|
|
17005
|
+
color: #fff;
|
|
17006
|
+
}
|
|
17253
17007
|
.c-slideout-transition-in {
|
|
17254
17008
|
transition: all 0.3s ease-in-out;
|
|
17255
17009
|
}
|
|
@@ -19141,49 +18895,15 @@ caption {
|
|
|
19141
18895
|
max-width: 75px;
|
|
19142
18896
|
}
|
|
19143
18897
|
|
|
19144
|
-
.simple-toggle-switch.toggle-switch {
|
|
19145
|
-
align-items: center;
|
|
19146
|
-
display: inline-flex;
|
|
19147
|
-
}
|
|
19148
|
-
.simple-toggle-switch .toggle-switch-check + .toggle-switch-label {
|
|
19149
|
-
margin-right: 0.5rem;
|
|
19150
|
-
}
|
|
19151
|
-
.simple-toggle-switch .toggle-switch-label + .toggle-switch-check-bar {
|
|
19152
|
-
margin-left: 0.5rem;
|
|
19153
|
-
}
|
|
19154
|
-
.simple-toggle-switch .toggle-switch-label {
|
|
19155
|
-
line-height: 1;
|
|
19156
|
-
margin-bottom: 0;
|
|
19157
|
-
max-width: calc(
|
|
19158
|
-
100% - 58px
|
|
19159
|
-
);
|
|
19160
|
-
}
|
|
19161
|
-
|
|
19162
|
-
.simple-toggle-switch-reverse .toggle-switch-label {
|
|
19163
|
-
margin-right: 0.5rem;
|
|
19164
|
-
}
|
|
19165
|
-
.simple-toggle-switch-reverse .toggle-switch-check-bar {
|
|
19166
|
-
order: 5;
|
|
19167
|
-
}
|
|
19168
|
-
.simple-toggle-switch-reverse .toggle-switch-check-bar .toggle-switch-bar {
|
|
19169
|
-
order: 0;
|
|
19170
|
-
}
|
|
19171
|
-
.simple-toggle-switch-reverse .toggle-switch-bar {
|
|
19172
|
-
order: 5;
|
|
19173
|
-
}
|
|
19174
|
-
|
|
19175
|
-
label.toggle-switch {
|
|
19176
|
-
cursor: pointer;
|
|
19177
|
-
}
|
|
19178
|
-
label.toggle-switch.disabled {
|
|
19179
|
-
cursor: not-allowed;
|
|
19180
|
-
}
|
|
19181
|
-
|
|
19182
18898
|
.toggle-switch {
|
|
18899
|
+
cursor: pointer;
|
|
19183
18900
|
display: inline-block;
|
|
19184
18901
|
max-width: 100%;
|
|
19185
18902
|
position: relative;
|
|
19186
18903
|
}
|
|
18904
|
+
.toggle-switch.disabled {
|
|
18905
|
+
cursor: not-allowed;
|
|
18906
|
+
}
|
|
19187
18907
|
.toggle-switch.disabled .toggle-switch-label {
|
|
19188
18908
|
color: #6c757d;
|
|
19189
18909
|
cursor: not-allowed;
|
|
@@ -19191,7 +18911,6 @@ label.toggle-switch.disabled {
|
|
|
19191
18911
|
.toggle-switch.disabled .toggle-switch-text {
|
|
19192
18912
|
color: #6c757d;
|
|
19193
18913
|
}
|
|
19194
|
-
|
|
19195
18914
|
.toggle-switch-check-bar {
|
|
19196
18915
|
display: inline-flex;
|
|
19197
18916
|
position: relative;
|
|
@@ -19211,7 +18930,6 @@ label.toggle-switch.disabled {
|
|
|
19211
18930
|
.toggle-switch-bar .button-icon {
|
|
19212
18931
|
font-size: 0.75rem;
|
|
19213
18932
|
}
|
|
19214
|
-
|
|
19215
18933
|
.toggle-switch-check {
|
|
19216
18934
|
bottom: 0;
|
|
19217
18935
|
font-size: 62.5%;
|
|
@@ -19221,7 +18939,7 @@ label.toggle-switch.disabled {
|
|
|
19221
18939
|
width: 50px;
|
|
19222
18940
|
z-index: 2;
|
|
19223
18941
|
}
|
|
19224
|
-
.toggle-switch-check
|
|
18942
|
+
.toggle-switch-check ~ .toggle-switch-bar {
|
|
19225
18943
|
display: inline-flex;
|
|
19226
18944
|
font-size: 0.75rem;
|
|
19227
18945
|
height: 25px;
|
|
@@ -19229,49 +18947,71 @@ label.toggle-switch.disabled {
|
|
|
19229
18947
|
position: relative;
|
|
19230
18948
|
text-indent: 0;
|
|
19231
18949
|
-ms-user-select: none;
|
|
18950
|
+
-moz-user-select: none;
|
|
18951
|
+
-webkit-user-select: none;
|
|
19232
18952
|
user-select: none;
|
|
19233
18953
|
}
|
|
19234
|
-
.toggle-switch-check
|
|
19235
|
-
background-color: #
|
|
18954
|
+
.toggle-switch-check ~ .toggle-switch-bar::before {
|
|
18955
|
+
background-color: #e9ecef;
|
|
19236
18956
|
border-color: #ced4da;
|
|
19237
|
-
border-radius: 3px
|
|
18957
|
+
border-radius: 3px;
|
|
19238
18958
|
border-style: solid;
|
|
19239
18959
|
border-width: 1px;
|
|
19240
18960
|
bottom: 0;
|
|
19241
|
-
content: "";
|
|
18961
|
+
content: " ";
|
|
19242
18962
|
display: block;
|
|
19243
|
-
height: 25px;
|
|
19244
18963
|
left: 0;
|
|
19245
18964
|
position: absolute;
|
|
19246
18965
|
top: 0;
|
|
19247
18966
|
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
19248
|
-
width:
|
|
18967
|
+
width: 50px;
|
|
19249
18968
|
}
|
|
19250
|
-
|
|
19251
|
-
|
|
18969
|
+
@media (prefers-reduced-motion: reduce) {
|
|
18970
|
+
.toggle-switch-check ~ .toggle-switch-bar::before {
|
|
18971
|
+
transition: none;
|
|
18972
|
+
}
|
|
18973
|
+
}
|
|
18974
|
+
.toggle-switch-check ~ .toggle-switch-bar::after {
|
|
18975
|
+
background-color: #fff;
|
|
19252
18976
|
border-color: #ced4da;
|
|
19253
|
-
border-radius: 3px;
|
|
18977
|
+
border-radius: 3px 0 0 3px;
|
|
19254
18978
|
border-style: solid;
|
|
19255
18979
|
border-width: 1px;
|
|
19256
18980
|
bottom: 0;
|
|
19257
|
-
content: "
|
|
18981
|
+
content: "";
|
|
19258
18982
|
display: block;
|
|
18983
|
+
height: 25px;
|
|
19259
18984
|
left: 0;
|
|
19260
18985
|
position: absolute;
|
|
19261
18986
|
top: 0;
|
|
19262
18987
|
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
19263
|
-
width:
|
|
18988
|
+
width: 25px;
|
|
19264
18989
|
}
|
|
19265
|
-
|
|
18990
|
+
@media (prefers-reduced-motion: reduce) {
|
|
18991
|
+
.toggle-switch-check ~ .toggle-switch-bar::after {
|
|
18992
|
+
transition: none;
|
|
18993
|
+
}
|
|
18994
|
+
}
|
|
18995
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
18996
|
+
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
18997
|
+
}
|
|
18998
|
+
@media (prefers-reduced-motion: reduce) {
|
|
18999
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
19000
|
+
transition: none;
|
|
19001
|
+
}
|
|
19002
|
+
}
|
|
19003
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19266
19004
|
content: attr(data-label-off);
|
|
19267
19005
|
margin-left: 58px;
|
|
19268
19006
|
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
19269
19007
|
white-space: nowrap;
|
|
19270
19008
|
}
|
|
19271
|
-
|
|
19272
|
-
|
|
19009
|
+
@media (prefers-reduced-motion: reduce) {
|
|
19010
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19011
|
+
transition: none;
|
|
19012
|
+
}
|
|
19273
19013
|
}
|
|
19274
|
-
.toggle-switch-check
|
|
19014
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
19275
19015
|
color: #495057;
|
|
19276
19016
|
left: 0;
|
|
19277
19017
|
line-height: 25px;
|
|
@@ -19283,58 +19023,116 @@ label.toggle-switch.disabled {
|
|
|
19283
19023
|
width: 25px;
|
|
19284
19024
|
z-index: 1;
|
|
19285
19025
|
}
|
|
19286
|
-
|
|
19026
|
+
@media (prefers-reduced-motion: reduce) {
|
|
19027
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
19028
|
+
transition: none;
|
|
19029
|
+
}
|
|
19030
|
+
}
|
|
19031
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-on {
|
|
19287
19032
|
left: 0;
|
|
19288
19033
|
opacity: 0;
|
|
19289
19034
|
}
|
|
19290
|
-
.toggle-switch-check
|
|
19035
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
19291
19036
|
left: 25px;
|
|
19292
19037
|
}
|
|
19293
|
-
.toggle-switch-check
|
|
19038
|
+
.toggle-switch-check ~ .toggle-switch-bar .button-icon {
|
|
19294
19039
|
color: #495057;
|
|
19295
19040
|
}
|
|
19296
|
-
.toggle-switch-check
|
|
19041
|
+
.toggle-switch-check ~ .toggle-switch-bar .button-icon-on {
|
|
19297
19042
|
opacity: 0;
|
|
19298
19043
|
}
|
|
19299
|
-
.toggle-switch-check:
|
|
19300
|
-
|
|
19044
|
+
.toggle-switch-check:focus ~ .toggle-switch-bar::before {
|
|
19045
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19046
|
+
}
|
|
19047
|
+
.toggle-switch-check[disabled] ~ .toggle-switch-bar, .toggle-switch-check:disabled ~ .toggle-switch-bar {
|
|
19048
|
+
cursor: not-allowed;
|
|
19049
|
+
opacity: 0.4;
|
|
19050
|
+
}
|
|
19051
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar::before {
|
|
19052
|
+
background-color: #007bff;
|
|
19301
19053
|
border-color: #007bff;
|
|
19302
|
-
border-radius:
|
|
19054
|
+
border-radius: 3px;
|
|
19303
19055
|
border-style: solid;
|
|
19304
19056
|
border-width: 1px;
|
|
19305
|
-
left: 25px;
|
|
19306
19057
|
}
|
|
19307
|
-
.toggle-switch-check:checked ~ .toggle-switch-bar
|
|
19308
|
-
background-color: #
|
|
19058
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar::after {
|
|
19059
|
+
background-color: #fff;
|
|
19309
19060
|
border-color: #007bff;
|
|
19310
|
-
border-radius: 3px;
|
|
19061
|
+
border-radius: 0 3px 3px 0;
|
|
19311
19062
|
border-style: solid;
|
|
19312
19063
|
border-width: 1px;
|
|
19064
|
+
left: 25px;
|
|
19313
19065
|
}
|
|
19314
|
-
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle
|
|
19066
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19315
19067
|
content: attr(data-label-on);
|
|
19316
19068
|
}
|
|
19317
19069
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon {
|
|
19318
19070
|
color: #fff;
|
|
19319
19071
|
}
|
|
19320
|
-
.toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
19321
|
-
color: #007bff;
|
|
19322
|
-
left: 25px;
|
|
19323
|
-
}
|
|
19324
|
-
.toggle-switch-check:checked ~ .toggle-switch-bar .button-icon-on,
|
|
19325
19072
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon-on {
|
|
19326
19073
|
opacity: 1;
|
|
19327
19074
|
}
|
|
19328
|
-
.toggle-switch-check:checked ~ .toggle-switch-bar .button-icon-off,
|
|
19329
19075
|
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
19330
19076
|
opacity: 0;
|
|
19331
19077
|
}
|
|
19332
|
-
.toggle-switch-check:
|
|
19333
|
-
|
|
19334
|
-
|
|
19078
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
19079
|
+
color: #007bff;
|
|
19080
|
+
left: 25px;
|
|
19335
19081
|
}
|
|
19336
|
-
.toggle-switch-check:
|
|
19337
|
-
|
|
19082
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar .button-icon-on {
|
|
19083
|
+
opacity: 1;
|
|
19084
|
+
}
|
|
19085
|
+
@media (max-width: 767.98px) {
|
|
19086
|
+
.toggle-switch-check {
|
|
19087
|
+
height: 25px;
|
|
19088
|
+
width: 50px;
|
|
19089
|
+
}
|
|
19090
|
+
.toggle-switch-check ~ .toggle-switch-bar {
|
|
19091
|
+
height: 25px;
|
|
19092
|
+
line-height: 25px;
|
|
19093
|
+
text-indent: 0;
|
|
19094
|
+
}
|
|
19095
|
+
.toggle-switch-check ~ .toggle-switch-bar::before {
|
|
19096
|
+
width: 50px;
|
|
19097
|
+
}
|
|
19098
|
+
.toggle-switch-check ~ .toggle-switch-bar::after {
|
|
19099
|
+
bottom: 0;
|
|
19100
|
+
height: 25px;
|
|
19101
|
+
left: 0;
|
|
19102
|
+
top: 0;
|
|
19103
|
+
width: 25px;
|
|
19104
|
+
}
|
|
19105
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle {
|
|
19106
|
+
min-width: 50px;
|
|
19107
|
+
}
|
|
19108
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19109
|
+
margin-left: 58px;
|
|
19110
|
+
}
|
|
19111
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
19112
|
+
font-size: 0.75rem;
|
|
19113
|
+
left: 0;
|
|
19114
|
+
line-height: 25px;
|
|
19115
|
+
top: 0;
|
|
19116
|
+
width: 25px;
|
|
19117
|
+
}
|
|
19118
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-on {
|
|
19119
|
+
left: 0;
|
|
19120
|
+
}
|
|
19121
|
+
.toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
19122
|
+
left: 25px;
|
|
19123
|
+
}
|
|
19124
|
+
.toggle-switch-check ~ .toggle-switch-bar .button-icon {
|
|
19125
|
+
font-size: 0.75rem;
|
|
19126
|
+
}
|
|
19127
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar::after {
|
|
19128
|
+
left: 25px;
|
|
19129
|
+
}
|
|
19130
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
19131
|
+
margin-left: 58px;
|
|
19132
|
+
}
|
|
19133
|
+
.toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
19134
|
+
left: 25px;
|
|
19135
|
+
}
|
|
19338
19136
|
}
|
|
19339
19137
|
|
|
19340
19138
|
.toggle-switch-label {
|
|
@@ -19352,13 +19150,53 @@ label.toggle-switch.disabled {
|
|
|
19352
19150
|
line-height: 25px;
|
|
19353
19151
|
margin-right: 8px;
|
|
19354
19152
|
}
|
|
19153
|
+
@media (max-width: 767.98px) {
|
|
19154
|
+
.toggle-switch-text-left {
|
|
19155
|
+
line-height: 25px;
|
|
19156
|
+
}
|
|
19157
|
+
}
|
|
19355
19158
|
|
|
19356
19159
|
.toggle-switch-text-right {
|
|
19357
19160
|
display: inline-flex;
|
|
19358
19161
|
line-height: 25px;
|
|
19359
19162
|
margin-left: 8px;
|
|
19360
19163
|
}
|
|
19164
|
+
@media (max-width: 767.98px) {
|
|
19165
|
+
.toggle-switch-text-right {
|
|
19166
|
+
line-height: 25px;
|
|
19167
|
+
}
|
|
19168
|
+
}
|
|
19169
|
+
|
|
19170
|
+
.simple-toggle-switch {
|
|
19171
|
+
align-items: center;
|
|
19172
|
+
display: inline-flex;
|
|
19173
|
+
}
|
|
19174
|
+
.simple-toggle-switch .toggle-switch-label {
|
|
19175
|
+
line-height: 1;
|
|
19176
|
+
margin-bottom: 0;
|
|
19177
|
+
max-width: calc( 100% - 58px );
|
|
19178
|
+
}
|
|
19179
|
+
@media (max-width: 767.98px) {
|
|
19180
|
+
.simple-toggle-switch .toggle-switch-label {
|
|
19181
|
+
max-width: calc( 100% - 58px );
|
|
19182
|
+
}
|
|
19183
|
+
}
|
|
19184
|
+
.simple-toggle-switch .toggle-switch-check + .toggle-switch-label {
|
|
19185
|
+
margin-right: 0.5rem;
|
|
19186
|
+
}
|
|
19187
|
+
.simple-toggle-switch .toggle-switch-label + .toggle-switch-check-bar {
|
|
19188
|
+
margin-left: 0.5rem;
|
|
19189
|
+
}
|
|
19361
19190
|
|
|
19191
|
+
.simple-toggle-switch-reverse .toggle-switch-check-bar {
|
|
19192
|
+
order: 5;
|
|
19193
|
+
}
|
|
19194
|
+
.simple-toggle-switch-reverse .toggle-switch-check ~ .toggle-switch-bar {
|
|
19195
|
+
order: 5;
|
|
19196
|
+
}
|
|
19197
|
+
.simple-toggle-switch-reverse .toggle-switch-label {
|
|
19198
|
+
margin-right: 0.5rem;
|
|
19199
|
+
}
|
|
19362
19200
|
.tooltip {
|
|
19363
19201
|
display: block;
|
|
19364
19202
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -22845,19 +22683,35 @@ button.bg-dark:focus {
|
|
|
22845
22683
|
}
|
|
22846
22684
|
|
|
22847
22685
|
.embed-responsive-21by9::before {
|
|
22848
|
-
padding-top:
|
|
22686
|
+
padding-top: calc(
|
|
22687
|
+
9 /
|
|
22688
|
+
21 *
|
|
22689
|
+
100%
|
|
22690
|
+
);
|
|
22849
22691
|
}
|
|
22850
22692
|
|
|
22851
22693
|
.embed-responsive-16by9::before {
|
|
22852
|
-
padding-top:
|
|
22694
|
+
padding-top: calc(
|
|
22695
|
+
9 /
|
|
22696
|
+
16 *
|
|
22697
|
+
100%
|
|
22698
|
+
);
|
|
22853
22699
|
}
|
|
22854
22700
|
|
|
22855
22701
|
.embed-responsive-4by3::before {
|
|
22856
|
-
padding-top:
|
|
22702
|
+
padding-top: calc(
|
|
22703
|
+
3 /
|
|
22704
|
+
4 *
|
|
22705
|
+
100%
|
|
22706
|
+
);
|
|
22857
22707
|
}
|
|
22858
22708
|
|
|
22859
22709
|
.embed-responsive-1by1::before {
|
|
22860
|
-
padding-top:
|
|
22710
|
+
padding-top: calc(
|
|
22711
|
+
1 /
|
|
22712
|
+
1 *
|
|
22713
|
+
100%
|
|
22714
|
+
);
|
|
22861
22715
|
}
|
|
22862
22716
|
|
|
22863
22717
|
/* REUSE-Snippet-End */
|