Lint
This commit is contained in:
parent
7e2ddcef29
commit
cff9c26ef2
|
@ -102,7 +102,9 @@
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
transition: color ease-out 130ms;
|
transition: color ease-out 130ms;
|
||||||
}
|
}
|
||||||
.is-selected:not(.spectrum-ActionButton--emphasized):not(.spectrum-ActionButton--quiet) {
|
.is-selected:not(.spectrum-ActionButton--emphasized):not(
|
||||||
|
.spectrum-ActionButton--quiet
|
||||||
|
) {
|
||||||
background: var(--spectrum-global-color-gray-300);
|
background: var(--spectrum-global-color-gray-300);
|
||||||
border-color: var(--spectrum-global-color-gray-500);
|
border-color: var(--spectrum-global-color-gray-500);
|
||||||
}
|
}
|
||||||
|
|
|
@ -146,15 +146,18 @@
|
||||||
|
|
||||||
/* Override default active line highlight colour in dark theme */
|
/* Override default active line highlight colour in dark theme */
|
||||||
div
|
div
|
||||||
:global(.CodeMirror-focused.cm-s-tomorrow-night-eighties
|
:global(
|
||||||
.CodeMirror-activeline-background) {
|
.CodeMirror-focused.cm-s-tomorrow-night-eighties
|
||||||
|
.CodeMirror-activeline-background
|
||||||
|
) {
|
||||||
background: rgba(255, 255, 255, 0.075);
|
background: rgba(255, 255, 255, 0.075);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove active line styling when not focused */
|
/* Remove active line styling when not focused */
|
||||||
div
|
div
|
||||||
:global(.CodeMirror:not(.CodeMirror-focused)
|
:global(
|
||||||
.CodeMirror-activeline-background) {
|
.CodeMirror:not(.CodeMirror-focused) .CodeMirror-activeline-background
|
||||||
|
) {
|
||||||
background: unset;
|
background: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -115,27 +115,6 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="file"] {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.sso-link-icon {
|
|
||||||
padding-top: 4px;
|
|
||||||
margin-left: 3px;
|
|
||||||
}
|
|
||||||
.sso-link {
|
|
||||||
margin-top: 12px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.enforce-sso-title {
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
.enforce-sso-heading-container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: start;
|
|
||||||
}
|
|
||||||
.provider-title {
|
.provider-title {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -143,9 +122,6 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--spacing-m);
|
gap: var(--spacing-m);
|
||||||
}
|
}
|
||||||
.provider-title span {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.inputContainer {
|
.inputContainer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
|
@ -54,8 +54,9 @@
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
div
|
div
|
||||||
:global(.apexcharts-theme-dark
|
:global(
|
||||||
.apexcharts-tooltip-series-group.apexcharts-active) {
|
.apexcharts-theme-dark .apexcharts-tooltip-series-group.apexcharts-active
|
||||||
|
) {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -72,9 +72,11 @@
|
||||||
:global(.spectrum-Form-itemField .spectrum-Textfield--multiline) {
|
:global(.spectrum-Form-itemField .spectrum-Textfield--multiline) {
|
||||||
min-height: calc(var(--height) - 24px);
|
min-height: calc(var(--height) - 24px);
|
||||||
}
|
}
|
||||||
:global(.spectrum-Form--labelsAbove
|
:global(
|
||||||
.spectrum-Form-itemField
|
.spectrum-Form--labelsAbove
|
||||||
.spectrum-Textfield--multiline) {
|
.spectrum-Form-itemField
|
||||||
|
.spectrum-Textfield--multiline
|
||||||
|
) {
|
||||||
min-height: calc(var(--height) - 24px);
|
min-height: calc(var(--height) - 24px);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue