mirror of https://github.com/ColorlibHQ/AdminLTE
⬆️ stylelint 14
parent
7b23289ed3
commit
ed66ff8c9f
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": [
|
"extends": [
|
||||||
"stylelint-config-twbs-bootstrap/scss"
|
"stylelint-config-twbs-bootstrap"
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"declaration-no-important": null,
|
"declaration-no-important": null,
|
||||||
|
@ -9,6 +9,7 @@
|
||||||
"lighten",
|
"lighten",
|
||||||
"darken"
|
"darken"
|
||||||
],
|
],
|
||||||
|
"keyframes-name-pattern": null,
|
||||||
"order/properties-order": null,
|
"order/properties-order": null,
|
||||||
"selector-max-class": null,
|
"selector-max-class": null,
|
||||||
"selector-max-combinators": null,
|
"selector-max-combinators": null,
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -66,8 +66,8 @@
|
||||||
"rollup": "^2.60.2",
|
"rollup": "^2.60.2",
|
||||||
"rtlcss": "^3.5.0",
|
"rtlcss": "^3.5.0",
|
||||||
"sass": "^1.44.0",
|
"sass": "^1.44.0",
|
||||||
"stylelint": "^13.13.1",
|
"stylelint": "^14.1.0",
|
||||||
"stylelint-config-twbs-bootstrap": "^2.2.4",
|
"stylelint-config-twbs-bootstrap": "^3.0.0-beta1",
|
||||||
"tslib": "^2.3.1",
|
"tslib": "^2.3.1",
|
||||||
"typescript": "^4.5.2"
|
"typescript": "^4.5.2"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
.btn-group.show .dropdown-toggle {
|
.btn-group.show .dropdown-toggle {
|
||||||
@include box-shadow($btn-active-box-shadow-alt);
|
@include box-shadow($btn-active-box-shadow-alt);
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
.btn-close {
|
.btn-close {
|
||||||
color: $btn-close-color-alt;
|
color: $btn-close-color-alt;
|
||||||
background: transparent escape-svg($btn-close-bg-alt) center / $btn-close-width auto no-repeat; // include transparent for button elements
|
background: transparent escape-svg($btn-close-bg-alt) center / $btn-close-width auto no-repeat; // include transparent for button elements
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
// from Chris Coyier on Jul 26, 2016: https://css-tricks.com/overriding-the-default-text-selection-color-with-css/
|
// from Chris Coyier on Jul 26, 2016: https://css-tricks.com/overriding-the-default-text-selection-color-with-css/
|
||||||
|
|
||||||
body::selection {
|
body::selection {
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
// The dropdown menu
|
// The dropdown menu
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
color: $dropdown-color-alt;
|
color: $dropdown-color-alt;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
// Actual modal
|
// Actual modal
|
||||||
.modal-content {
|
.modal-content {
|
||||||
color: $modal-content-color-alt;
|
color: $modal-content-color-alt;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
.offcanvas {
|
.offcanvas {
|
||||||
color: $offcanvas-color-alt;
|
color: $offcanvas-color-alt;
|
||||||
background-color: $offcanvas-bg-color-alt;
|
background-color: $offcanvas-bg-color-alt;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
.page-link {
|
.page-link {
|
||||||
color: $pagination-color-alt;
|
color: $pagination-color-alt;
|
||||||
background-color: $pagination-bg-alt;
|
background-color: $pagination-bg-alt;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
.progress {
|
.progress {
|
||||||
background-color: $progress-bg-alt;
|
background-color: $progress-bg-alt;
|
||||||
@include box-shadow($progress-box-shadow-alt);
|
@include box-shadow($progress-box-shadow-alt);
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
@mixin overlay-backdrop-alt($backdrop-bg-alt, $backdrop-opacity-alt) {
|
@mixin overlay-backdrop-alt($backdrop-bg-alt, $backdrop-opacity-alt) {
|
||||||
background-color: $backdrop-bg-alt;
|
background-color: $backdrop-bg-alt;
|
||||||
|
|
||||||
|
|
|
@ -24,13 +24,13 @@
|
||||||
color-scheme: dark light;
|
color-scheme: dark light;
|
||||||
} @else if $scheme == light {
|
} @else if $scheme == light {
|
||||||
color-scheme: light dark;
|
color-scheme: light dark;
|
||||||
} // else ignore
|
}
|
||||||
} @else {
|
} @else {
|
||||||
@if $scheme == dark {
|
@if $scheme == dark {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
} @else if $scheme == light {
|
} @else if $scheme == light {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
} // else ignore
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
@mixin form-validation-state-alt(
|
@mixin form-validation-state-alt(
|
||||||
$state,
|
$state,
|
||||||
$color,
|
$color,
|
||||||
|
|
Loading…
Reference in New Issue