forked from AuroraMiddleware/gtk
2ab9be54fb
It seems that Meson's gnome.compile_resources() cannot deal with two files with the same name under different directories, which breaks the build parallelism because the GResource file ends up not depending on either the Adwaita or the HighContrast gtk-contained.css file. This commit only changes the on-disk names of the Adwaita and HighContrast SCSS files, and the corresponding generated CSS files; the files in the GResource are going to be aliased to the old file names, to minimise the breakage. We might want to change the theme entry points at some later date, if we decide to commit to this naming scheme. Fixes: #2423 See Meson bug: https://github.com/mesonbuild/meson/issues/6615
12 lines
379 B
SCSS
12 lines
379 B
SCSS
// General guidelines:
|
|
// - very unlikely you want to edit something else than _common.scss
|
|
// - keep the number of defined colors to a minimum, use the color blending functions if
|
|
// you need a subtle shade
|
|
// - if you need to inverse a color function use the @if directive to match for dark $variant
|
|
|
|
$variant: 'dark';
|
|
|
|
@import 'colors';
|
|
@import 'drawing';
|
|
@import 'common';
|