mirror of
https://github.com/directus/directus.git
synced 2026-02-14 23:35:00 -05:00
Update dependency stylelint to v14 (#9016)
* Update dependency stylelint to v14 * Update dependency stylelint-scss to v4 * Update dependency stylelint-order to v5 * Undo command change * Update stylelint command * Use modern color syntax Who knew this was already supported everywhere? Awesome!! * Update stylelint-config-standard Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
This commit is contained in:
@@ -101,7 +101,7 @@ export default defineComponent({
|
||||
|
||||
.container > :slotted(*) {
|
||||
z-index: 2;
|
||||
box-shadow: 0px 4px 12px rgba(38, 50, 56, 0.1);
|
||||
box-shadow: 0px 4px 12px rgb(38 50 56 / 0.1);
|
||||
}
|
||||
|
||||
.container.center {
|
||||
|
||||
@@ -413,7 +413,7 @@ body {
|
||||
&::-webkit-outer-spin-button,
|
||||
&::-webkit-inner-spin-button {
|
||||
margin: 0;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
@@ -423,7 +423,7 @@ body {
|
||||
/* Firefox */
|
||||
|
||||
&[type='number'] {
|
||||
-moz-appearance: textfield;
|
||||
appearance: textfield;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -389,7 +389,7 @@ body {
|
||||
background-color: var(--card-face-color);
|
||||
border: none;
|
||||
border-radius: var(--border-radius);
|
||||
box-shadow: 0px 0px 6px 0px rgba(var(--card-shadow-color), 0.2), 0px 0px 12px 2px rgba(var(--card-shadow-color), 0.05);
|
||||
box-shadow: 0px 0px 6px 0px rgb(var(--card-shadow-color) 0.2), 0px 0px 12px 2px rgb(var(--card-shadow-color) 0.05);
|
||||
transition-timing-function: var(--transition-out);
|
||||
transition-duration: var(--fast);
|
||||
transition-property: opacity, transform;
|
||||
|
||||
@@ -132,7 +132,6 @@ body {
|
||||
padding: 8px 0;
|
||||
background-color: var(--background-page);
|
||||
cursor: pointer;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
|
||||
&::-webkit-slider-runnable-track {
|
||||
@@ -163,7 +162,6 @@ body {
|
||||
box-shadow: none;
|
||||
box-shadow: 0 0 0 4px var(--v-slider-thumb-color);
|
||||
transition: all var(--fast) var(--transition);
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
}
|
||||
|
||||
@@ -179,7 +177,6 @@ body {
|
||||
box-shadow: none;
|
||||
box-shadow: 0 0 0 4px var(--v-slider-thumb-color);
|
||||
transition: all var(--fast) var(--transition);
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -105,7 +105,7 @@ export default defineComponent({
|
||||
border-bottom: var(--border-width) solid var(--border-subdued);
|
||||
|
||||
&:last-child {
|
||||
padding: 0 12px 0 12px;
|
||||
padding: 0 12px;
|
||||
}
|
||||
|
||||
&.select {
|
||||
|
||||
@@ -364,7 +364,7 @@ export default defineComponent({
|
||||
|
||||
.uploading {
|
||||
--v-progress-linear-color: var(--white);
|
||||
--v-progress-linear-background-color: rgb(255 255 255 / 25%);
|
||||
--v-progress-linear-background-color: rgb(255 255 255 / 0.25);
|
||||
--v-progress-linear-height: 8px;
|
||||
|
||||
color: var(--white);
|
||||
|
||||
Reference in New Issue
Block a user