blue-web 1.17.8 → 1.19.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/dist/js/odometer.bundle.js +1 -0
- package/dist/js/odometer.d.ts +14 -0
- package/dist/js/odometer.js +69 -0
- package/dist/js/searchbox.bundle.js +2 -0
- package/dist/js/searchbox.bundle.js.LICENSE.txt +11 -0
- package/dist/js/searchbox.d.ts +16 -0
- package/dist/js/searchbox.js +158 -0
- package/dist/js/select-list.bundle.js +1 -1
- package/dist/js/select-list.js +0 -1
- package/dist/merged.scss +176 -324
- package/dist/style.css +493 -602
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -2
- package/dist/styles/_action-menu.scss +1 -2
- package/dist/styles/_general.scss +3 -48
- package/dist/styles/_menu-item.scss +171 -179
- package/dist/styles/_page-header.scss +0 -45
- package/dist/styles/_status.scss +17 -11
- package/package.json +5 -5
- package/dist/styles/_caret.scss +0 -54
package/dist/merged.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.
|
|
2
|
+
* Blue Web v1.19.0 (https://bruegmann.github.io/blue-web)
|
|
3
3
|
* Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-web/blob/master/LICENSE).
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -10844,24 +10844,6 @@ body {
|
|
|
10844
10844
|
|
|
10845
10845
|
body {
|
|
10846
10846
|
background: var(--blue-app-bg, #{$app-bg});
|
|
10847
|
-
|
|
10848
|
-
.blue-wrapper {
|
|
10849
|
-
position: fixed;
|
|
10850
|
-
width: 100%;
|
|
10851
|
-
width: 100%;
|
|
10852
|
-
left: 0;
|
|
10853
|
-
right: 0;
|
|
10854
|
-
top: 0;
|
|
10855
|
-
bottom: 0;
|
|
10856
|
-
z-index: 1;
|
|
10857
|
-
display: none;
|
|
10858
|
-
}
|
|
10859
|
-
|
|
10860
|
-
&.open {
|
|
10861
|
-
.blue-wrapper {
|
|
10862
|
-
display: block;
|
|
10863
|
-
}
|
|
10864
|
-
}
|
|
10865
10847
|
}
|
|
10866
10848
|
|
|
10867
10849
|
// Idee für Effekt von http://www.w3schools.com/howto/howto_css_animate_buttons.asp
|
|
@@ -10876,13 +10858,12 @@ body {
|
|
|
10876
10858
|
color 0.15s,
|
|
10877
10859
|
box-shadow 0.3s,
|
|
10878
10860
|
opacity 0.3s;
|
|
10861
|
+
position: relative;
|
|
10879
10862
|
|
|
10880
10863
|
@media (prefers-reduced-motion) {
|
|
10881
10864
|
transition: none;
|
|
10882
10865
|
}
|
|
10883
10866
|
|
|
10884
|
-
position: relative;
|
|
10885
|
-
|
|
10886
10867
|
&:hover,
|
|
10887
10868
|
&:active,
|
|
10888
10869
|
&:focus {
|
|
@@ -10891,27 +10872,6 @@ body {
|
|
|
10891
10872
|
}
|
|
10892
10873
|
}
|
|
10893
10874
|
|
|
10894
|
-
.page-link {
|
|
10895
|
-
&:hover,
|
|
10896
|
-
&:focus {
|
|
10897
|
-
text-decoration: none;
|
|
10898
|
-
}
|
|
10899
|
-
}
|
|
10900
|
-
|
|
10901
|
-
.blue-wrapper {
|
|
10902
|
-
z-index: 3 !important;
|
|
10903
|
-
|
|
10904
|
-
&.active {
|
|
10905
|
-
display: block;
|
|
10906
|
-
}
|
|
10907
|
-
}
|
|
10908
|
-
|
|
10909
|
-
@media screen and (max-width: 768px) {
|
|
10910
|
-
.blue-header-extension .blue-header-title-labels:not(.keep) {
|
|
10911
|
-
display: none;
|
|
10912
|
-
}
|
|
10913
|
-
}
|
|
10914
|
-
|
|
10915
10875
|
.sign-in-screen {
|
|
10916
10876
|
padding-top: $normal-size;
|
|
10917
10877
|
|
|
@@ -10931,22 +10891,17 @@ body {
|
|
|
10931
10891
|
}
|
|
10932
10892
|
}
|
|
10933
10893
|
|
|
10934
|
-
.w-bla-sidebar-width {
|
|
10935
|
-
width: $bla-sidebar-width;
|
|
10936
|
-
}
|
|
10937
|
-
|
|
10938
10894
|
.blue-header-title.sidebar {
|
|
10939
10895
|
width: $bla-sidebar-width;
|
|
10940
10896
|
padding-left: calc(#{$normal-size} + #{$spacer});
|
|
10941
10897
|
transform: translateX(-100%);
|
|
10942
10898
|
transition: transform 0.4s;
|
|
10899
|
+
background: var(--blue-sidebar-bg);
|
|
10900
|
+
color: $sidebar-color;
|
|
10943
10901
|
|
|
10944
10902
|
@media (prefers-reduced-motion) {
|
|
10945
10903
|
transition: none;
|
|
10946
10904
|
}
|
|
10947
|
-
|
|
10948
|
-
background: var(--blue-sidebar-bg);
|
|
10949
|
-
color: $sidebar-color;
|
|
10950
10905
|
}
|
|
10951
10906
|
|
|
10952
10907
|
.blue-scroll-shadow {
|
|
@@ -10995,25 +10950,31 @@ body {
|
|
|
10995
10950
|
animation-duration: 0s;
|
|
10996
10951
|
}
|
|
10997
10952
|
|
|
10998
|
-
|
|
10999
|
-
|
|
11000
|
-
|
|
10953
|
+
& {
|
|
10954
|
+
transform: scale(10, 10);
|
|
10955
|
+
opacity: 0;
|
|
10956
|
+
transition:
|
|
10957
|
+
transform 0.5s,
|
|
10958
|
+
opacity 1s;
|
|
10959
|
+
}
|
|
11001
10960
|
|
|
11002
10961
|
@media (prefers-reduced-motion) {
|
|
11003
10962
|
transition: none;
|
|
11004
10963
|
}
|
|
11005
10964
|
}
|
|
11006
10965
|
|
|
11007
|
-
|
|
11008
|
-
|
|
11009
|
-
|
|
10966
|
+
& {
|
|
10967
|
+
transform: translate3d(0, 0, 0);
|
|
10968
|
+
overflow: hidden;
|
|
10969
|
+
white-space: pre-wrap;
|
|
11010
10970
|
|
|
11011
|
-
|
|
11012
|
-
|
|
11013
|
-
|
|
10971
|
+
bottom: 2.5rem + 4rem + 0.938rem;
|
|
10972
|
+
left: 1rem;
|
|
10973
|
+
right: 1rem;
|
|
11014
10974
|
|
|
11015
|
-
|
|
11016
|
-
|
|
10975
|
+
max-height: calc(100vh - 15rem);
|
|
10976
|
+
max-height: calc(100dvh - 15rem);
|
|
10977
|
+
}
|
|
11017
10978
|
|
|
11018
10979
|
.alert-body {
|
|
11019
10980
|
max-height: calc(100vh - 16rem);
|
|
@@ -11086,231 +11047,178 @@ body {
|
|
|
11086
11047
|
animation-delay: -1s;
|
|
11087
11048
|
}
|
|
11088
11049
|
|
|
11089
|
-
@keyframes blue-menu-item-indicator-in-from-side {
|
|
11090
|
-
from {
|
|
11091
|
-
transform: translateX(-100%);
|
|
11092
|
-
}
|
|
11093
|
-
to {
|
|
11094
|
-
transform: translateX(1);
|
|
11095
|
-
}
|
|
11096
|
-
}
|
|
11097
|
-
|
|
11098
|
-
@keyframes blue-menu-item-indicator-in-from-below {
|
|
11099
|
-
from {
|
|
11100
|
-
transform: translateY(100%);
|
|
11101
|
-
}
|
|
11102
|
-
to {
|
|
11103
|
-
transform: translateY(1);
|
|
11104
|
-
}
|
|
11105
|
-
}
|
|
11106
|
-
|
|
11107
|
-
.blue-menu-item {
|
|
11108
|
-
transition:
|
|
11109
|
-
width 0.5s,
|
|
11110
|
-
background-color 0.3s,
|
|
11111
|
-
color 0.15s,
|
|
11112
|
-
box-shadow 0.3s,
|
|
11113
|
-
opacity 0.3s !important;
|
|
11114
|
-
|
|
11115
|
-
@media (prefers-reduced-motion) {
|
|
11116
|
-
transition: none !important;
|
|
11117
|
-
}
|
|
11118
|
-
|
|
11119
|
-
border: none;
|
|
11120
|
-
box-shadow: none;
|
|
11121
|
-
background-image: none;
|
|
11122
|
-
|
|
11123
|
-
&:focus {
|
|
11124
|
-
box-shadow: none;
|
|
11125
|
-
}
|
|
11126
|
-
|
|
11127
|
-
&:focus-visible {
|
|
11128
|
-
&,
|
|
11129
|
-
&.active {
|
|
11130
|
-
box-shadow: inset 0 0 0 0.25rem color-mix(in srgb, currentColor 15%, transparent);
|
|
11131
|
-
}
|
|
11132
|
-
}
|
|
11133
|
-
}
|
|
11134
|
-
|
|
11135
|
-
.blue-menu-item-icon {
|
|
11136
|
-
display: inline-block;
|
|
11137
|
-
|
|
11138
|
-
& > * {
|
|
11139
|
-
display: block;
|
|
11140
|
-
width: 1.5rem;
|
|
11141
|
-
}
|
|
11142
|
-
}
|
|
11143
|
-
|
|
11144
|
-
.blue-menu-item-icon.iconForActive {
|
|
11145
|
-
display: none;
|
|
11146
|
-
}
|
|
11147
|
-
|
|
11148
|
-
.blue-menu-item.active {
|
|
11149
|
-
.blue-menu-item-icon.hasIconForActive {
|
|
11150
|
-
display: none;
|
|
11151
|
-
}
|
|
11152
|
-
.blue-menu-item-icon.iconForActive {
|
|
11153
|
-
display: inline-block;
|
|
11154
|
-
}
|
|
11155
|
-
}
|
|
11156
|
-
|
|
11157
|
-
.blue-menu-item-dropdown {
|
|
11158
|
-
margin-left: 1rem;
|
|
11159
|
-
animation: blue-menu-item-dropdown 0.15s;
|
|
11160
|
-
|
|
11161
|
-
@media (prefers-reduced-motion) {
|
|
11162
|
-
animation-duration: 0s;
|
|
11163
|
-
}
|
|
11164
|
-
|
|
11165
|
-
position: relative;
|
|
11166
|
-
|
|
11167
|
-
&::before {
|
|
11168
|
-
content: "";
|
|
11169
|
-
position: absolute;
|
|
11170
|
-
top: 0.125rem;
|
|
11171
|
-
right: 0.125rem;
|
|
11172
|
-
bottom: 0.125rem;
|
|
11173
|
-
left: 0.125rem;
|
|
11174
|
-
border-radius: $border-radius;
|
|
11175
|
-
box-shadow: $box-shadow;
|
|
11176
|
-
border: 1px solid color-mix(in srgb, currentColor 15%, transparent);
|
|
11177
|
-
background-color: var(--blue-menu-item-dropdown-bg);
|
|
11178
|
-
}
|
|
11179
|
-
|
|
11180
|
-
&[popover] {
|
|
11181
|
-
position: fixed;
|
|
11182
|
-
margin: 0;
|
|
11183
|
-
padding: 0;
|
|
11184
|
-
z-index: 1000;
|
|
11185
|
-
border: none;
|
|
11186
|
-
background: transparent;
|
|
11187
|
-
border-radius: calc(#{$border-radius} + 0.1rem);
|
|
11188
|
-
box-shadow: $box-shadow;
|
|
11189
|
-
}
|
|
11190
|
-
}
|
|
11191
|
-
|
|
11192
|
-
.blue-menu-item-dropdown-caret.blue-caret {
|
|
11193
|
-
display: none;
|
|
11194
|
-
position: absolute;
|
|
11195
|
-
right: 1.5rem;
|
|
11196
|
-
top: 50%;
|
|
11197
|
-
transform: translateY(-50%);
|
|
11198
|
-
align-items: center;
|
|
11199
|
-
}
|
|
11200
|
-
|
|
11201
|
-
.blue-menu-item {
|
|
11202
|
-
color: inherit;
|
|
11203
|
-
width: auto;
|
|
11204
|
-
height: $normal-size;
|
|
11205
|
-
font-size: $bla-btn-font-size;
|
|
11206
|
-
display: flex;
|
|
11207
|
-
align-items: center;
|
|
11208
|
-
border-color: transparent;
|
|
11209
|
-
--bs-btn-padding-x: 0.437rem;
|
|
11210
|
-
@include slide-transition();
|
|
11211
|
-
|
|
11212
|
-
&::before {
|
|
11213
|
-
@include blue-menu-item-background();
|
|
11214
|
-
}
|
|
11215
|
-
|
|
11216
|
-
&[draggable] {
|
|
11217
|
-
cursor: grab;
|
|
11218
|
-
|
|
11219
|
-
&:active {
|
|
11220
|
-
box-shadow: inset 0 0 0.25rem;
|
|
11221
|
-
}
|
|
11222
|
-
}
|
|
11223
|
-
|
|
11224
|
-
&:hover,
|
|
11225
|
-
&:active,
|
|
11226
|
-
&.highlighted,
|
|
11227
|
-
&:has(+ :popover-open) {
|
|
11228
|
-
color: inherit;
|
|
11229
|
-
border-color: transparent;
|
|
11230
|
-
|
|
11231
|
-
&::before {
|
|
11232
|
-
transform: scale(1);
|
|
11233
|
-
opacity: 0.25;
|
|
11234
|
-
}
|
|
11235
|
-
}
|
|
11236
|
-
|
|
11237
|
-
&.highlighted,
|
|
11238
|
-
&:has(+ :popover-open) {
|
|
11239
|
-
&::before {
|
|
11240
|
-
opacity: 0.16;
|
|
11241
|
-
}
|
|
11242
|
-
}
|
|
11243
|
-
|
|
11244
|
-
&:hover,
|
|
11245
|
-
&:active {
|
|
11246
|
-
&::before {
|
|
11247
|
-
opacity: 0.25;
|
|
11248
|
-
}
|
|
11249
|
-
}
|
|
11250
|
-
|
|
11251
|
-
&.active::after {
|
|
11252
|
-
@include blue-menu-item-indicator();
|
|
11253
|
-
}
|
|
11254
|
-
|
|
11255
|
-
& > * + .blue-menu-item-label {
|
|
11256
|
-
margin-left: 0.5rem;
|
|
11257
|
-
}
|
|
11258
|
-
}
|
|
11259
|
-
|
|
11260
|
-
.blue-menu-item-wrapper {
|
|
11261
|
-
display: contents;
|
|
11262
|
-
}
|
|
11263
|
-
|
|
11264
|
-
.blue-menu-item-dropdown > .blue-menu-item-wrapper > .blue-menu-item,
|
|
11265
|
-
.blue-menu-item-dropdown > .blue-menu-item {
|
|
11266
|
-
width: 100%;
|
|
11267
|
-
}
|
|
11050
|
+
@keyframes blue-menu-item-indicator-in-from-side {
|
|
11051
|
+
from {
|
|
11052
|
+
transform: translateX(-100%);
|
|
11053
|
+
}
|
|
11054
|
+
to {
|
|
11055
|
+
transform: translateX(1);
|
|
11056
|
+
}
|
|
11057
|
+
}
|
|
11268
11058
|
|
|
11269
|
-
|
|
11270
|
-
|
|
11271
|
-
|
|
11059
|
+
@keyframes blue-menu-item-indicator-in-from-below {
|
|
11060
|
+
from {
|
|
11061
|
+
transform: translateY(100%);
|
|
11062
|
+
}
|
|
11063
|
+
to {
|
|
11064
|
+
transform: translateY(1);
|
|
11065
|
+
}
|
|
11272
11066
|
}
|
|
11273
11067
|
|
|
11274
|
-
.blue-
|
|
11275
|
-
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
|
|
11279
|
-
|
|
11280
|
-
|
|
11068
|
+
.blue-menu-item {
|
|
11069
|
+
transition:
|
|
11070
|
+
width 0.5s,
|
|
11071
|
+
background-color 0.3s,
|
|
11072
|
+
color 0.15s,
|
|
11073
|
+
box-shadow 0.3s,
|
|
11074
|
+
opacity 0.3s !important;
|
|
11075
|
+
|
|
11076
|
+
@media (prefers-reduced-motion) {
|
|
11077
|
+
transition: none !important;
|
|
11078
|
+
}
|
|
11079
|
+
|
|
11080
|
+
& {
|
|
11081
|
+
border: none;
|
|
11082
|
+
box-shadow: none;
|
|
11083
|
+
background-image: none;
|
|
11084
|
+
}
|
|
11085
|
+
|
|
11086
|
+
&:focus {
|
|
11087
|
+
box-shadow: none;
|
|
11088
|
+
}
|
|
11089
|
+
|
|
11090
|
+
&:focus-visible {
|
|
11091
|
+
&,
|
|
11092
|
+
&.active {
|
|
11093
|
+
box-shadow: inset 0 0 0 0.25rem color-mix(in srgb, currentColor 15%, transparent);
|
|
11094
|
+
}
|
|
11095
|
+
}
|
|
11096
|
+
}
|
|
11097
|
+
|
|
11098
|
+
.blue-menu-item-icon {
|
|
11099
|
+
display: inline-block;
|
|
11100
|
+
|
|
11101
|
+
& > * {
|
|
11102
|
+
display: block;
|
|
11103
|
+
width: 1.5rem;
|
|
11104
|
+
}
|
|
11105
|
+
}
|
|
11106
|
+
|
|
11107
|
+
.blue-menu-item-icon.iconForActive {
|
|
11108
|
+
display: none;
|
|
11109
|
+
}
|
|
11110
|
+
|
|
11111
|
+
.blue-menu-item.active {
|
|
11112
|
+
.blue-menu-item-icon.hasIconForActive {
|
|
11113
|
+
display: none;
|
|
11114
|
+
}
|
|
11115
|
+
.blue-menu-item-icon.iconForActive {
|
|
11116
|
+
display: inline-block;
|
|
11117
|
+
}
|
|
11118
|
+
}
|
|
11119
|
+
|
|
11120
|
+
.blue-menu-item-dropdown {
|
|
11121
|
+
margin-left: 1rem;
|
|
11122
|
+
animation: blue-menu-item-dropdown 0.15s;
|
|
11123
|
+
position: relative;
|
|
11124
|
+
|
|
11125
|
+
@media (prefers-reduced-motion) {
|
|
11126
|
+
animation-duration: 0s;
|
|
11127
|
+
}
|
|
11128
|
+
|
|
11129
|
+
&::before {
|
|
11130
|
+
content: "";
|
|
11131
|
+
position: absolute;
|
|
11132
|
+
top: 0.125rem;
|
|
11133
|
+
right: 0.125rem;
|
|
11134
|
+
bottom: 0.125rem;
|
|
11135
|
+
left: 0.125rem;
|
|
11136
|
+
border-radius: $border-radius;
|
|
11137
|
+
box-shadow: $box-shadow;
|
|
11138
|
+
border: 1px solid color-mix(in srgb, currentColor 15%, transparent);
|
|
11139
|
+
background-color: var(--blue-menu-item-dropdown-bg);
|
|
11140
|
+
}
|
|
11281
11141
|
|
|
11282
|
-
|
|
11142
|
+
&[popover] {
|
|
11143
|
+
position: fixed;
|
|
11283
11144
|
margin: 0;
|
|
11145
|
+
padding: 0;
|
|
11146
|
+
z-index: 1000;
|
|
11147
|
+
border: none;
|
|
11148
|
+
background: transparent;
|
|
11149
|
+
border-radius: calc(#{$border-radius} + 0.1rem);
|
|
11150
|
+
box-shadow: $box-shadow;
|
|
11151
|
+
}
|
|
11152
|
+
}
|
|
11153
|
+
|
|
11154
|
+
.blue-menu-item {
|
|
11155
|
+
color: inherit;
|
|
11156
|
+
width: auto;
|
|
11157
|
+
height: $normal-size;
|
|
11158
|
+
font-size: $bla-btn-font-size;
|
|
11159
|
+
display: flex;
|
|
11160
|
+
align-items: center;
|
|
11161
|
+
border-color: transparent;
|
|
11162
|
+
--bs-btn-padding-x: 0.437rem;
|
|
11163
|
+
@include slide-transition();
|
|
11284
11164
|
|
|
11285
|
-
|
|
11286
|
-
|
|
11165
|
+
&::before {
|
|
11166
|
+
@include blue-menu-item-background();
|
|
11167
|
+
}
|
|
11287
11168
|
|
|
11288
|
-
|
|
11289
|
-
|
|
11290
|
-
color: var(--blue-header-color);
|
|
11291
|
-
padding: $bla-header-nav-padding;
|
|
11169
|
+
&[draggable] {
|
|
11170
|
+
cursor: grab;
|
|
11292
11171
|
|
|
11293
|
-
|
|
11294
|
-
|
|
11295
|
-
|
|
11296
|
-
|
|
11297
|
-
|
|
11172
|
+
&:active {
|
|
11173
|
+
box-shadow: inset 0 0 0.25rem;
|
|
11174
|
+
}
|
|
11175
|
+
}
|
|
11176
|
+
|
|
11177
|
+
&:hover,
|
|
11178
|
+
&:active,
|
|
11179
|
+
&.highlighted,
|
|
11180
|
+
&:has(+ :popover-open) {
|
|
11181
|
+
color: inherit;
|
|
11182
|
+
border-color: transparent;
|
|
11183
|
+
|
|
11184
|
+
&::before {
|
|
11185
|
+
transform: scale(1);
|
|
11186
|
+
opacity: 0.25;
|
|
11187
|
+
}
|
|
11188
|
+
}
|
|
11189
|
+
|
|
11190
|
+
&.highlighted,
|
|
11191
|
+
&:has(+ :popover-open) {
|
|
11192
|
+
&::before {
|
|
11193
|
+
opacity: 0.16;
|
|
11298
11194
|
}
|
|
11299
11195
|
}
|
|
11300
11196
|
|
|
11301
|
-
|
|
11302
|
-
|
|
11197
|
+
&:hover,
|
|
11198
|
+
&:active {
|
|
11199
|
+
&::before {
|
|
11200
|
+
opacity: 0.25;
|
|
11201
|
+
}
|
|
11303
11202
|
}
|
|
11304
11203
|
|
|
11305
|
-
|
|
11306
|
-
|
|
11204
|
+
&.active::after {
|
|
11205
|
+
@include blue-menu-item-indicator();
|
|
11307
11206
|
}
|
|
11308
11207
|
|
|
11309
|
-
.blue-
|
|
11310
|
-
|
|
11208
|
+
& > * + .blue-menu-item-label {
|
|
11209
|
+
margin-left: 0.5rem;
|
|
11311
11210
|
}
|
|
11312
11211
|
}
|
|
11313
11212
|
|
|
11213
|
+
.blue-menu-item-wrapper {
|
|
11214
|
+
display: contents;
|
|
11215
|
+
}
|
|
11216
|
+
|
|
11217
|
+
.blue-menu-item-dropdown > .blue-menu-item-wrapper > .blue-menu-item,
|
|
11218
|
+
.blue-menu-item-dropdown > .blue-menu-item {
|
|
11219
|
+
width: 100%;
|
|
11220
|
+
}
|
|
11221
|
+
|
|
11314
11222
|
.blue-header-title {
|
|
11315
11223
|
a {
|
|
11316
11224
|
color: inherit;
|
|
@@ -11409,67 +11317,11 @@ body {
|
|
|
11409
11317
|
margin-right: 0.5rem;
|
|
11410
11318
|
}
|
|
11411
11319
|
|
|
11412
|
-
.blue-menu-item-label
|
|
11413
|
-
.blue-menu-item-dropdown-caret.blue-caret {
|
|
11320
|
+
.blue-menu-item-label {
|
|
11414
11321
|
display: initial;
|
|
11415
11322
|
}
|
|
11416
11323
|
}
|
|
11417
11324
|
|
|
11418
|
-
.blue-caret {
|
|
11419
|
-
/* treat like a font icon */
|
|
11420
|
-
font-family: "blueicon" !important;
|
|
11421
|
-
speak: none;
|
|
11422
|
-
font-style: normal;
|
|
11423
|
-
font-weight: normal;
|
|
11424
|
-
font-variant: normal;
|
|
11425
|
-
text-transform: none;
|
|
11426
|
-
line-height: 1;
|
|
11427
|
-
-webkit-font-smoothing: antialiased;
|
|
11428
|
-
-moz-osx-font-smoothing: grayscale;
|
|
11429
|
-
|
|
11430
|
-
font-size: 1.15em;
|
|
11431
|
-
position: relative;
|
|
11432
|
-
top: 0.063rem;
|
|
11433
|
-
display: inline-block;
|
|
11434
|
-
/* END treat like a font icon */
|
|
11435
|
-
|
|
11436
|
-
--caret-size: 0.5em;
|
|
11437
|
-
--caret-strength: 0.09em;
|
|
11438
|
-
|
|
11439
|
-
width: 1em;
|
|
11440
|
-
|
|
11441
|
-
&::before {
|
|
11442
|
-
content: "";
|
|
11443
|
-
display: block;
|
|
11444
|
-
position: absolute;
|
|
11445
|
-
top: 50%;
|
|
11446
|
-
left: 50%;
|
|
11447
|
-
width: var(--caret-size);
|
|
11448
|
-
height: var(--caret-size);
|
|
11449
|
-
background: transparent;
|
|
11450
|
-
box-shadow: var(--caret-strength) var(--caret-strength) 0 currentColor;
|
|
11451
|
-
transform: rotate(-45deg) translate(-50%, -50%);
|
|
11452
|
-
margin-top: calc((var(--caret-size) + var(--caret-strength)) * -1);
|
|
11453
|
-
transition: all 0.2s;
|
|
11454
|
-
|
|
11455
|
-
@media (prefers-reduced-motion) {
|
|
11456
|
-
transition: none;
|
|
11457
|
-
}
|
|
11458
|
-
}
|
|
11459
|
-
|
|
11460
|
-
&.blue-caret-mirrored {
|
|
11461
|
-
&::before {
|
|
11462
|
-
transform: rotate(135deg) translate(-50%, -50%);
|
|
11463
|
-
}
|
|
11464
|
-
}
|
|
11465
|
-
|
|
11466
|
-
&.blue-caret-open {
|
|
11467
|
-
&::before {
|
|
11468
|
-
transform: rotate(45deg) translate(-50%, -50%);
|
|
11469
|
-
}
|
|
11470
|
-
}
|
|
11471
|
-
}
|
|
11472
|
-
|
|
11473
11325
|
.blue-tooltip,
|
|
11474
11326
|
.blue-tooltip-start,
|
|
11475
11327
|
.blue-tooltip-end,
|