@deephaven/components 0.58.1-beta.9 → 0.59.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/css/BaseStyleSheet.css +56 -55
- package/css/BaseStyleSheet.css.map +1 -1
- package/dist/AutoCompleteInput.css +10 -6
- package/dist/AutoCompleteInput.css.map +1 -1
- package/dist/AutoResizeTextarea.css +2 -1
- package/dist/AutoResizeTextarea.css.map +1 -1
- package/dist/Button.d.ts.map +1 -1
- package/dist/Button.js +2 -25
- package/dist/Button.js.map +1 -1
- package/dist/CardFlip.css +1 -0
- package/dist/CardFlip.css.map +1 -1
- package/dist/ComboBox.css +10 -6
- package/dist/ComboBox.css.map +1 -1
- package/dist/CustomTimeSelect.css +11 -6
- package/dist/CustomTimeSelect.css.map +1 -1
- package/dist/DraggableItemList.css +12 -7
- package/dist/DraggableItemList.css.map +1 -1
- package/dist/HierarchicalCheckboxMenu.css +13 -6
- package/dist/HierarchicalCheckboxMenu.css.map +1 -1
- package/dist/ItemList.css +1 -0
- package/dist/ItemList.css.map +1 -1
- package/dist/ItemListItem.css +1 -0
- package/dist/ItemListItem.css.map +1 -1
- package/dist/LoadingOverlay.css +1 -0
- package/dist/LoadingOverlay.css.map +1 -1
- package/dist/MaskedInput.css +1 -0
- package/dist/MaskedInput.css.map +1 -1
- package/dist/RandomAreaPlotAnimation.css +1 -0
- package/dist/RandomAreaPlotAnimation.css.map +1 -1
- package/dist/SearchInput.css +1 -0
- package/dist/SearchInput.css.map +1 -1
- package/dist/SelectValueList.css +3 -2
- package/dist/SelectValueList.css.map +1 -1
- package/dist/SocketedButton.css +2 -1
- package/dist/SocketedButton.css.map +1 -1
- package/dist/ThemeExport.module.css +3 -2
- package/dist/ThemeExport.module.css.map +1 -1
- package/dist/TimeSlider.css +6 -2
- package/dist/TimeSlider.css.map +1 -1
- package/dist/TimeSlider.module.css +7 -2
- package/dist/TimeSlider.module.css.map +1 -1
- package/dist/ToastNotification.css +1 -0
- package/dist/ToastNotification.css.map +1 -1
- package/dist/UISwitch.css +2 -1
- package/dist/UISwitch.css.map +1 -1
- package/dist/ValidateLabelInput.css +1 -0
- package/dist/ValidateLabelInput.css.map +1 -1
- package/dist/context-actions/ContextActions.css +1 -0
- package/dist/context-actions/ContextActions.css.map +1 -1
- package/dist/menu-actions/DropdownMenu.css +1 -0
- package/dist/menu-actions/DropdownMenu.css.map +1 -1
- package/dist/modal/InfoModal.css +1 -0
- package/dist/modal/InfoModal.css.map +1 -1
- package/dist/navigation/Menu.css +1 -0
- package/dist/navigation/Menu.css.map +1 -1
- package/dist/navigation/MenuItem.css +2 -1
- package/dist/navigation/MenuItem.css.map +1 -1
- package/dist/navigation/NavTabList.css +2 -1
- package/dist/navigation/NavTabList.css.map +1 -1
- package/dist/navigation/Page.css +1 -0
- package/dist/navigation/Page.css.map +1 -1
- package/dist/navigation/Stack.css +1 -0
- package/dist/navigation/Stack.css.map +1 -1
- package/dist/popper/Popper.css +1 -0
- package/dist/popper/Popper.css.map +1 -1
- package/dist/theme/theme-dark/theme-dark-components.css +1 -1
- package/dist/theme/theme-dark/theme-dark-components.css.map +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic-chart.css +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic-chart.css.map +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic.css +1 -1
- package/dist/theme/theme-dark/theme-dark-semantic.css.map +1 -1
- package/dist/theme/theme-light/theme-light-palette.css +1 -1
- package/dist/theme/theme-light/theme-light-palette.css.map +1 -1
- package/dist/theme/theme-light/theme-light-semantic-chart.css +1 -1
- package/dist/theme/theme-light/theme-light-semantic-chart.css.map +1 -1
- package/dist/theme/theme-light/theme-light-semantic-grid.css +1 -1
- package/dist/theme/theme-light/theme-light-semantic-grid.css.map +1 -1
- package/dist/theme/theme-light/theme-light-semantic.css +1 -1
- package/dist/theme/theme-light/theme-light-semantic.css.map +1 -1
- package/dist/theme/theme-spectrum/theme-spectrum-overrides.css +1 -1
- package/dist/theme/theme-spectrum/theme-spectrum-overrides.css.map +1 -1
- package/package.json +7 -7
- package/scss/BaseStyleSheet.scss +13 -11
- package/scss/bootstrap_overrides.scss +10 -8
package/css/BaseStyleSheet.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
3
|
+
/* stylelint-disable-next-line number-max-precision */
|
|
3
4
|
/*!
|
|
4
5
|
* Bootstrap v4.6.2 (https://getbootstrap.com/)
|
|
5
6
|
* Copyright 2011-2022 The Bootstrap Authors
|
|
@@ -162,7 +163,7 @@ a {
|
|
|
162
163
|
background-color: transparent;
|
|
163
164
|
}
|
|
164
165
|
a:hover {
|
|
165
|
-
color: var(--dh-color-fg);
|
|
166
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
166
167
|
text-decoration: underline;
|
|
167
168
|
}
|
|
168
169
|
|
|
@@ -1623,8 +1624,8 @@ pre code {
|
|
|
1623
1624
|
.form-control {
|
|
1624
1625
|
display: block;
|
|
1625
1626
|
width: 100%;
|
|
1626
|
-
height: calc(1.3em + 0.
|
|
1627
|
-
padding: 0.
|
|
1627
|
+
height: calc(1.3em + 0.8429rem + 2px);
|
|
1628
|
+
padding: 0.42145rem 0.75rem;
|
|
1628
1629
|
font-size: 1rem;
|
|
1629
1630
|
font-weight: 400;
|
|
1630
1631
|
line-height: 1.3;
|
|
@@ -1683,8 +1684,8 @@ select.form-control:focus::-ms-value {
|
|
|
1683
1684
|
}
|
|
1684
1685
|
|
|
1685
1686
|
.col-form-label {
|
|
1686
|
-
padding-top: calc(0.
|
|
1687
|
-
padding-bottom: calc(0.
|
|
1687
|
+
padding-top: calc(0.42145rem + 1px);
|
|
1688
|
+
padding-bottom: calc(0.42145rem + 1px);
|
|
1688
1689
|
margin-bottom: 0;
|
|
1689
1690
|
font-size: inherit;
|
|
1690
1691
|
line-height: 1.3;
|
|
@@ -1707,7 +1708,7 @@ select.form-control:focus::-ms-value {
|
|
|
1707
1708
|
.form-control-plaintext {
|
|
1708
1709
|
display: block;
|
|
1709
1710
|
width: 100%;
|
|
1710
|
-
padding: 0.
|
|
1711
|
+
padding: 0.42145rem 0;
|
|
1711
1712
|
margin-bottom: 0;
|
|
1712
1713
|
font-size: 1rem;
|
|
1713
1714
|
line-height: 1.3;
|
|
@@ -1834,11 +1835,11 @@ textarea.form-control {
|
|
|
1834
1835
|
|
|
1835
1836
|
.was-validated .form-control:valid, .form-control.is-valid {
|
|
1836
1837
|
border-color: var(--dh-color-positive-bg);
|
|
1837
|
-
padding-right: calc(1.3em + 0.
|
|
1838
|
+
padding-right: calc(1.3em + 0.8429rem) !important;
|
|
1838
1839
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='success' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
|
|
1839
1840
|
background-repeat: no-repeat;
|
|
1840
|
-
background-position: right calc(0.325em + 0.
|
|
1841
|
-
background-size: calc(0.65em + 0.
|
|
1841
|
+
background-position: right calc(0.325em + 0.210725rem) center;
|
|
1842
|
+
background-size: calc(0.65em + 0.42145rem) calc(0.65em + 0.42145rem);
|
|
1842
1843
|
}
|
|
1843
1844
|
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
|
|
1844
1845
|
border-color: var(--dh-color-positive-bg);
|
|
@@ -1853,14 +1854,14 @@ textarea.form-control {
|
|
|
1853
1854
|
}
|
|
1854
1855
|
|
|
1855
1856
|
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
|
|
1856
|
-
padding-right: calc(1.3em + 0.
|
|
1857
|
-
background-position: top calc(0.325em + 0.
|
|
1857
|
+
padding-right: calc(1.3em + 0.8429rem);
|
|
1858
|
+
background-position: top calc(0.325em + 0.210725rem) right calc(0.325em + 0.210725rem);
|
|
1858
1859
|
}
|
|
1859
1860
|
|
|
1860
1861
|
.was-validated .custom-select:valid, .custom-select.is-valid {
|
|
1861
1862
|
border-color: var(--dh-color-positive-bg);
|
|
1862
|
-
padding-right: calc(0.75em + 2.
|
|
1863
|
-
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E") right 0.75rem center/16px 16px no-repeat, var(--dh-color-selector-bg) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='success' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.65em + 0.
|
|
1863
|
+
padding-right: calc(0.75em + 2.382175rem) !important;
|
|
1864
|
+
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E") right 0.75rem center/16px 16px no-repeat, var(--dh-color-selector-bg) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='success' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.65em + 0.42145rem) calc(0.65em + 0.42145rem) no-repeat;
|
|
1864
1865
|
}
|
|
1865
1866
|
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
|
|
1866
1867
|
border-color: var(--dh-color-positive-bg);
|
|
@@ -1941,11 +1942,11 @@ textarea.form-control {
|
|
|
1941
1942
|
|
|
1942
1943
|
.was-validated .form-control:invalid, .form-control.is-invalid {
|
|
1943
1944
|
border-color: var(--dh-color-negative-bg);
|
|
1944
|
-
padding-right: calc(1.3em + 0.
|
|
1945
|
+
padding-right: calc(1.3em + 0.8429rem) !important;
|
|
1945
1946
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='none'%3E%3Cg fill='var%28--dh-color-negative-bg%29'%3E%3Cpath d='M7.56 1h.88l6.54 12.26-.44.74H1.44L1 13.26 7.56 1zM8 2.28 2.28 13H13.7L8 2.28zM8.625 12v-1h-1.25v1h1.25zm-1.25-2V6h1.25v4h-1.25z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E ");
|
|
1946
1947
|
background-repeat: no-repeat;
|
|
1947
|
-
background-position: right calc(0.325em + 0.
|
|
1948
|
-
background-size: calc(0.65em + 0.
|
|
1948
|
+
background-position: right calc(0.325em + 0.210725rem) center;
|
|
1949
|
+
background-size: calc(0.65em + 0.42145rem) calc(0.65em + 0.42145rem);
|
|
1949
1950
|
}
|
|
1950
1951
|
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
|
|
1951
1952
|
border-color: var(--dh-color-negative-bg);
|
|
@@ -1960,14 +1961,14 @@ textarea.form-control {
|
|
|
1960
1961
|
}
|
|
1961
1962
|
|
|
1962
1963
|
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
|
|
1963
|
-
padding-right: calc(1.3em + 0.
|
|
1964
|
-
background-position: top calc(0.325em + 0.
|
|
1964
|
+
padding-right: calc(1.3em + 0.8429rem);
|
|
1965
|
+
background-position: top calc(0.325em + 0.210725rem) right calc(0.325em + 0.210725rem);
|
|
1965
1966
|
}
|
|
1966
1967
|
|
|
1967
1968
|
.was-validated .custom-select:invalid, .custom-select.is-invalid {
|
|
1968
1969
|
border-color: var(--dh-color-negative-bg);
|
|
1969
|
-
padding-right: calc(0.75em + 2.
|
|
1970
|
-
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E") right 0.75rem center/16px 16px no-repeat, var(--dh-color-selector-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='none'%3E%3Cg fill='var%28--dh-color-negative-bg%29'%3E%3Cpath d='M7.56 1h.88l6.54 12.26-.44.74H1.44L1 13.26 7.56 1zM8 2.28 2.28 13H13.7L8 2.28zM8.625 12v-1h-1.25v1h1.25zm-1.25-2V6h1.25v4h-1.25z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E ") center right 1.75rem/calc(0.65em + 0.
|
|
1970
|
+
padding-right: calc(0.75em + 2.382175rem) !important;
|
|
1971
|
+
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E") right 0.75rem center/16px 16px no-repeat, var(--dh-color-selector-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='none'%3E%3Cg fill='var%28--dh-color-negative-bg%29'%3E%3Cpath d='M7.56 1h.88l6.54 12.26-.44.74H1.44L1 13.26 7.56 1zM8 2.28 2.28 13H13.7L8 2.28zM8.625 12v-1h-1.25v1h1.25zm-1.25-2V6h1.25v4h-1.25z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E ") center right 1.75rem/calc(0.65em + 0.42145rem) calc(0.65em + 0.42145rem) no-repeat;
|
|
1971
1972
|
}
|
|
1972
1973
|
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
|
|
1973
1974
|
border-color: var(--dh-color-negative-bg);
|
|
@@ -2078,7 +2079,7 @@ textarea.form-control {
|
|
|
2078
2079
|
user-select: none;
|
|
2079
2080
|
background-color: transparent;
|
|
2080
2081
|
border: 2px solid transparent;
|
|
2081
|
-
padding: 0.
|
|
2082
|
+
padding: 0.42145rem 1.5rem;
|
|
2082
2083
|
font-size: 1rem;
|
|
2083
2084
|
line-height: 1.3;
|
|
2084
2085
|
border-radius: 4rem;
|
|
@@ -2480,7 +2481,7 @@ fieldset:disabled a.btn {
|
|
|
2480
2481
|
text-decoration: none;
|
|
2481
2482
|
}
|
|
2482
2483
|
.btn-link:hover {
|
|
2483
|
-
color: var(--dh-color-fg);
|
|
2484
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
2484
2485
|
text-decoration: underline;
|
|
2485
2486
|
}
|
|
2486
2487
|
.btn-link:focus, .btn-link.focus {
|
|
@@ -2749,16 +2750,16 @@ input[type=button].btn-block {
|
|
|
2749
2750
|
padding: 0.25rem 1.5rem;
|
|
2750
2751
|
clear: both;
|
|
2751
2752
|
font-weight: 400;
|
|
2752
|
-
color: var(--dh-color-fg);
|
|
2753
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
2753
2754
|
text-align: inherit;
|
|
2754
2755
|
white-space: nowrap;
|
|
2755
2756
|
background-color: transparent;
|
|
2756
2757
|
border: 0;
|
|
2757
2758
|
}
|
|
2758
2759
|
.dropdown-item:hover, .dropdown-item:focus {
|
|
2759
|
-
color: var(--dh-color-fg);
|
|
2760
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
2760
2761
|
text-decoration: none;
|
|
2761
|
-
background-color: var(--dh-color-
|
|
2762
|
+
background-color: var(--dh-color-item-list-hover-bg);
|
|
2762
2763
|
}
|
|
2763
2764
|
.dropdown-item.active, .dropdown-item:active {
|
|
2764
2765
|
color: var(--dh-color-white, #f0f0ee);
|
|
@@ -2787,7 +2788,7 @@ input[type=button].btn-block {
|
|
|
2787
2788
|
.dropdown-item-text {
|
|
2788
2789
|
display: block;
|
|
2789
2790
|
padding: 0.25rem 1.5rem;
|
|
2790
|
-
color: var(--dh-color-fg);
|
|
2791
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
2791
2792
|
}
|
|
2792
2793
|
|
|
2793
2794
|
.btn-group,
|
|
@@ -3000,7 +3001,7 @@ input[type=button].btn-block {
|
|
|
3000
3001
|
.input-group-text {
|
|
3001
3002
|
display: flex;
|
|
3002
3003
|
align-items: center;
|
|
3003
|
-
padding: 0.
|
|
3004
|
+
padding: 0.42145rem 0.75rem;
|
|
3004
3005
|
margin-bottom: 0;
|
|
3005
3006
|
font-size: 1rem;
|
|
3006
3007
|
font-weight: 400;
|
|
@@ -3215,8 +3216,8 @@ input[type=button].btn-block {
|
|
|
3215
3216
|
.custom-select {
|
|
3216
3217
|
display: inline-block;
|
|
3217
3218
|
width: 100%;
|
|
3218
|
-
height: calc(1.3em + 0.
|
|
3219
|
-
padding: 0.
|
|
3219
|
+
height: calc(1.3em + 0.8429rem + 2px);
|
|
3220
|
+
padding: 0.42145rem 1.75rem 0.42145rem 0.75rem;
|
|
3220
3221
|
font-size: 1rem;
|
|
3221
3222
|
font-weight: 400;
|
|
3222
3223
|
line-height: 1.3;
|
|
@@ -3273,7 +3274,7 @@ input[type=button].btn-block {
|
|
|
3273
3274
|
position: relative;
|
|
3274
3275
|
display: inline-block;
|
|
3275
3276
|
width: 100%;
|
|
3276
|
-
height: calc(1.3em + 0.
|
|
3277
|
+
height: calc(1.3em + 0.8429rem + 2px);
|
|
3277
3278
|
margin-bottom: 0;
|
|
3278
3279
|
}
|
|
3279
3280
|
|
|
@@ -3281,7 +3282,7 @@ input[type=button].btn-block {
|
|
|
3281
3282
|
position: relative;
|
|
3282
3283
|
z-index: 2;
|
|
3283
3284
|
width: 100%;
|
|
3284
|
-
height: calc(1.3em + 0.
|
|
3285
|
+
height: calc(1.3em + 0.8429rem + 2px);
|
|
3285
3286
|
margin: 0;
|
|
3286
3287
|
overflow: hidden;
|
|
3287
3288
|
opacity: 0;
|
|
@@ -3306,8 +3307,8 @@ input[type=button].btn-block {
|
|
|
3306
3307
|
right: 0;
|
|
3307
3308
|
left: 0;
|
|
3308
3309
|
z-index: 1;
|
|
3309
|
-
height: calc(1.3em + 0.
|
|
3310
|
-
padding: 0.
|
|
3310
|
+
height: calc(1.3em + 0.8429rem + 2px);
|
|
3311
|
+
padding: 0.42145rem 0.75rem;
|
|
3311
3312
|
overflow: hidden;
|
|
3312
3313
|
font-weight: 400;
|
|
3313
3314
|
line-height: 1.3;
|
|
@@ -3323,8 +3324,8 @@ input[type=button].btn-block {
|
|
|
3323
3324
|
bottom: 0;
|
|
3324
3325
|
z-index: 3;
|
|
3325
3326
|
display: block;
|
|
3326
|
-
height: calc(1.3em + 0.
|
|
3327
|
-
padding: 0.
|
|
3327
|
+
height: calc(1.3em + 0.8429rem);
|
|
3328
|
+
padding: 0.42145rem 0.75rem;
|
|
3328
3329
|
line-height: 1.3;
|
|
3329
3330
|
color: var(--dh-color-input-fg);
|
|
3330
3331
|
content: "Browse";
|
|
@@ -8089,8 +8090,8 @@ html {
|
|
|
8089
8090
|
|
|
8090
8091
|
body {
|
|
8091
8092
|
min-height: 100%;
|
|
8092
|
-
background-color: var(--dh-color-bg);
|
|
8093
|
-
color: var(--dh-color-fg);
|
|
8093
|
+
background-color: var(--dh-color-bg, #1a171a);
|
|
8094
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
8094
8095
|
margin: 0;
|
|
8095
8096
|
padding: 0;
|
|
8096
8097
|
overscroll-behavior: none;
|
|
@@ -8099,7 +8100,7 @@ body {
|
|
|
8099
8100
|
}
|
|
8100
8101
|
|
|
8101
8102
|
#root .app {
|
|
8102
|
-
background-color: var(--dh-color-bg);
|
|
8103
|
+
background-color: var(--dh-color-bg, #1a171a);
|
|
8103
8104
|
height: 100vh;
|
|
8104
8105
|
width: 100vw;
|
|
8105
8106
|
}
|
|
@@ -8170,8 +8171,11 @@ button:focus {
|
|
|
8170
8171
|
display: inline-flex;
|
|
8171
8172
|
align-items: center;
|
|
8172
8173
|
justify-content: center;
|
|
8173
|
-
padding
|
|
8174
|
-
|
|
8174
|
+
padding: 4px 14px 3px 14px;
|
|
8175
|
+
gap: 6px;
|
|
8176
|
+
}
|
|
8177
|
+
.btn .svg-inline--fa {
|
|
8178
|
+
padding-bottom: 2px;
|
|
8175
8179
|
}
|
|
8176
8180
|
|
|
8177
8181
|
.btn-sm, .btn-group-sm > .btn {
|
|
@@ -8197,8 +8201,8 @@ span.btn-disabled-wrapper .btn:disabled {
|
|
|
8197
8201
|
min-width: unset;
|
|
8198
8202
|
padding: 0.25rem;
|
|
8199
8203
|
}
|
|
8200
|
-
.btn-link svg {
|
|
8201
|
-
|
|
8204
|
+
.btn-link .svg-inline--fa {
|
|
8205
|
+
align-self: center;
|
|
8202
8206
|
}
|
|
8203
8207
|
.btn-link:not(.btn-link-icon) {
|
|
8204
8208
|
border: 1px solid transparent;
|
|
@@ -8240,10 +8244,7 @@ span.btn-disabled-wrapper .btn:disabled {
|
|
|
8240
8244
|
}
|
|
8241
8245
|
|
|
8242
8246
|
.btn-spinner {
|
|
8243
|
-
padding: 0.
|
|
8244
|
-
}
|
|
8245
|
-
.btn-spinner .fa-layers {
|
|
8246
|
-
margin-right: 0.5rem;
|
|
8247
|
+
padding: 0.42145rem 1rem;
|
|
8247
8248
|
}
|
|
8248
8249
|
|
|
8249
8250
|
.btn-link.no-underline,
|
|
@@ -8262,9 +8263,6 @@ span.btn-disabled-wrapper .btn:disabled {
|
|
|
8262
8263
|
padding-left: 0.25rem;
|
|
8263
8264
|
padding-right: 0.25rem;
|
|
8264
8265
|
}
|
|
8265
|
-
.btn-link-icon svg {
|
|
8266
|
-
margin-right: 0;
|
|
8267
|
-
}
|
|
8268
8266
|
.btn-link-icon::after {
|
|
8269
8267
|
content: "";
|
|
8270
8268
|
box-sizing: border-box;
|
|
@@ -8349,6 +8347,9 @@ span.btn-disabled-wrapper .btn:disabled {
|
|
|
8349
8347
|
color: var(--dh-color-action-fg);
|
|
8350
8348
|
font-weight: 400;
|
|
8351
8349
|
}
|
|
8350
|
+
.btn-inline .svg-inline--fa {
|
|
8351
|
+
align-self: center;
|
|
8352
|
+
}
|
|
8352
8353
|
.btn-inline.active {
|
|
8353
8354
|
border-color: var(--dh-color-action-active-border);
|
|
8354
8355
|
background: var(--dh-color-action-active-bg);
|
|
@@ -8547,7 +8548,7 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
8547
8548
|
/* stylelint-disable no-descending-specificity -- keep with input section */
|
|
8548
8549
|
.input-group-append .btn {
|
|
8549
8550
|
background-color: var(--dh-color-input-bg);
|
|
8550
|
-
padding: 0.
|
|
8551
|
+
padding: 0.42145rem 0.5rem;
|
|
8551
8552
|
}
|
|
8552
8553
|
|
|
8553
8554
|
.input-group > .input-group-append > .btn {
|
|
@@ -8585,13 +8586,13 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
8585
8586
|
/********** Modal Styling *********/
|
|
8586
8587
|
/********** Browser Default Overides *********/
|
|
8587
8588
|
::selection {
|
|
8588
|
-
color: var(--dh-color-fg);
|
|
8589
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
8589
8590
|
background: var(--dh-color-text-highlight);
|
|
8590
8591
|
opacity: 1;
|
|
8591
8592
|
}
|
|
8592
8593
|
|
|
8593
8594
|
::-moz-selection {
|
|
8594
|
-
color: var(--dh-color-fg);
|
|
8595
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
8595
8596
|
background: var(--dh-color-text-highlight);
|
|
8596
8597
|
opacity: 1;
|
|
8597
8598
|
}
|
|
@@ -8691,7 +8692,7 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
8691
8692
|
@-moz-document url-prefix() {
|
|
8692
8693
|
.custom-select {
|
|
8693
8694
|
background-color: inherit !important;
|
|
8694
|
-
color: var(--dh-color-fg);
|
|
8695
|
+
color: var(--dh-color-fg, #f0f0ee);
|
|
8695
8696
|
background-image: var(--dh-svg-icon-select-indicator), linear-gradient(0deg, var(--dh-color-input-bg), var(--dh-color-input-bg));
|
|
8696
8697
|
background-size: 10px 6px, cover;
|
|
8697
8698
|
background-position-x: right 0.75rem, center;
|
|
@@ -8700,7 +8701,7 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
8700
8701
|
}
|
|
8701
8702
|
.custom-select:-moz-focusring {
|
|
8702
8703
|
color: transparent;
|
|
8703
|
-
text-shadow: 0 0 0 var(--dh-color-fg) !important;
|
|
8704
|
+
text-shadow: 0 0 0 var(--dh-color-fg, #f0f0ee) !important;
|
|
8704
8705
|
}
|
|
8705
8706
|
.custom-select:hover {
|
|
8706
8707
|
background-image: var(--dh-svg-icon-select-indicator-hover), linear-gradient(0deg, var(--dh-color-input-bg), var(--dh-color-input-bg));
|
|
@@ -8725,7 +8726,7 @@ input[type=number]::-webkit-inner-spin-button {
|
|
|
8725
8726
|
}
|
|
8726
8727
|
.console-creator .custom-select:-moz-focusring {
|
|
8727
8728
|
color: transparent;
|
|
8728
|
-
text-shadow: 0 0 0 var(--dh-color-fg) !important;
|
|
8729
|
+
text-shadow: 0 0 0 var(--dh-color-fg, #f0f0ee) !important;
|
|
8729
8730
|
}
|
|
8730
8731
|
|
|
8731
8732
|
.custom-select option {
|