diff options
author | ArthurHoaro <arthur@hoa.ro> | 2019-07-08 23:10:00 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2019-07-08 23:20:56 +0200 |
commit | a5a0c0399bcfea518330c4bad186da77f89ace6e (patch) | |
tree | 3b8d80e19d3337bf5243eff63e10ab3bed4b5c67 /.dev | |
parent | c03c90a13e1356ca9cf40cc664547c49305cb24b (diff) | |
download | Shaarli-a5a0c0399bcfea518330c4bad186da77f89ace6e.tar.gz Shaarli-a5a0c0399bcfea518330c4bad186da77f89ace6e.tar.zst Shaarli-a5a0c0399bcfea518330c4bad186da77f89ace6e.zip |
WIP - Plugin to override default template colors
* Adds a new core plugin to override default template colors
* Adds a new hook when plugin settings are saved
(`save_plugin_parameters`)
* Use CSS native variables for main colors instead of SASS variables
* Disable SASS sort order rules due to a bug in the plugin
Fixes #1312
Diffstat (limited to '.dev')
-rw-r--r-- | .dev/.sasslintrc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.dev/.sasslintrc b/.dev/.sasslintrc index ac406d7b..47c3145d 100644 --- a/.dev/.sasslintrc +++ b/.dev/.sasslintrc | |||
@@ -2,9 +2,11 @@ options: | |||
2 | max-warnings: 0 | 2 | max-warnings: 0 |
3 | rules: | 3 | rules: |
4 | property-sort-order: | 4 | property-sort-order: |
5 | - 1 | 5 | - 0 |
6 | - | 6 | # Sort order rule does not work with CSS variables: https://github.com/sasstools/sass-lint/issues/1161 |
7 | order: 'concentric' | 7 | # - 1 |
8 | # - | ||
9 | # order: 'concentric' | ||
8 | no-important: | 10 | no-important: |
9 | - 0 | 11 | - 0 |
10 | no-vendor-prefixes: | 12 | no-vendor-prefixes: |