* style: move compound loading order * fix: spotlight fiting * fix: don't use internal compound css var in settings subsection * fix: don't use internaal compound css var in read receipt group * fix: add important to font settings on body element * fix: remove play pause button color and fix padding This color wasn't apply because this PR. Removing to avoid visual regression * fix: add important to form help message override in preference settings * fix: override compound in space panel buttons * fix: layout of forgot password * fix: height of encryption tab * fix: widget avatar border radius
16 lines
444 B
Bash
Executable File
16 lines
444 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
cd `dirname $0`
|
|
|
|
{
|
|
echo "/* autogenerated by rethemendex.sh */"
|
|
|
|
# we used to have exclude /themes from the find at this point.
|
|
# as themes are no longer a spurious subdirectory of css/, we don't
|
|
# need it any more.
|
|
find . -iname _\*.pcss | fgrep -v _components.pcss | fgrep -v _compound.pcss | LC_ALL=C sort |
|
|
while read i; do
|
|
echo "@import \"$i\";"
|
|
done
|
|
} > _components.pcss
|