aboutsummaryrefslogtreecommitdiff
path: root/p/themes/Mapco/_logs.scss
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-02-04 15:41:51 +0100
committerGravatar GitHub <noreply@github.com> 2022-02-04 15:41:51 +0100
commit5a891dc0e4d1e5c7d36609bba4bd3df5063b9745 (patch)
tree4b420f96082fcde911a36ed8fc709ed12a500089 /p/themes/Mapco/_logs.scss
parent88b934da8bec70da1400525748336c0b71864b1a (diff)
Update dev dependencies stylelint SASS (#4173)
* Update dev dependencies stylelint SASS Major update for stylelint with breaking changes https://stylelint.io/migration-guide/to-14/ Applied automatic SASS migration to current syntax https://sass-lang.com/documentation/cli/migrator#migrations And a few manual fixes such as: https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/dollar-variable-no-missing-interpolation/README.md Other dev dependencies are minor updates. * RTLCSS * Fix color-hex-length bug * Implement make bin/composer * Update git hash
Diffstat (limited to 'p/themes/Mapco/_logs.scss')
-rw-r--r--p/themes/Mapco/_logs.scss18
1 files changed, 10 insertions, 8 deletions
diff --git a/p/themes/Mapco/_logs.scss b/p/themes/Mapco/_logs.scss
index 82eead3c9..2ea26e68b 100644
--- a/p/themes/Mapco/_logs.scss
+++ b/p/themes/Mapco/_logs.scss
@@ -1,15 +1,17 @@
+@use "variables";
+
/*=== LOGS */
/*=========*/
.loglist {
overflow: hidden;
- border: 1px solid $grey-medium-dark;
+ border: 1px solid variables.$grey-medium-dark;
}
.log {
margin: 10px 0;
padding: 5px 2%;
- background: $grey-lighter;
- color: $grey-dark;
+ background: variables.$grey-lighter;
+ color: variables.$grey-dark;
font-size: 0.8rem;
overflow: auto;
}
@@ -21,19 +23,19 @@
}
.log.error > .date {
- background: $alert-bg;
+ background: variables.$alert-bg;
color: #fff;
}
.log.warning > .date {
- background: $warning-bg;
+ background: variables.$warning-bg;
}
.log.notice > .date {
- background: $grey-light;
+ background: variables.$grey-light;
}
.log.debug > .date {
- background: $main-first-darker;
- color: $white;
+ background: variables.$main-first-darker;
+ color: variables.$white;
}