parse-sass.sh: Change the CSS output style
I prefer 'expanded' style rather than the default 'nested' style.
I prefer 'expanded' style rather than the default 'nested' style.
by roundabout, Tuesday, 4 April 2017, 15:08:58 (1491318538), pushed by roundabout, Sunday, 11 May 2025, 13:22:08 (1746969728)
Author identity: nana-4 <hnmaigo@gmail.com>
7e848b7101f8cfbd148608be10cf3c0749fa87c5
#!/bin/sh
for color in '' '-dark' '-light' ; do
sassc src/gtk-3.0/3.18/gtk${color}.{scss,css}
sassc -t expanded src/gtk-3.0/3.18/gtk${color}.{scss,css}
for size in '' '-compact' ; do
for version in '3.20' '3.22' ; do
sassc src/gtk-3.0/${version}/gtk${color}${size}.{scss,css}
sassc -t expanded src/gtk-3.0/${version}/gtk${color}${size}.{scss,css}
done
# This gnome-shell theme can skip versions '3.20' & '2.22'
for version in '3.18' '3.24' ; do
sassc src/gnome-shell/${version}/gnome-shell${color}${size}.{scss,css}
sassc -t expanded src/gnome-shell/${version}/gnome-shell${color}${size}.{scss,css}
done
done
done