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