new theme elements
every element has been ported to use stylesheets Change-Id: I2a09d5bcf7359351b04d1732358252567714f670
This commit is contained in:
parent
44439aae59
commit
7e23d31c11
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/desktoptheme/breeze/widgets/notes.svgz
Normal file
BIN
src/desktoptheme/breeze/widgets/notes.svgz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/desktoptheme/breeze/widgets/timer.svgz
Normal file
BIN
src/desktoptheme/breeze/widgets/timer.svgz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -20,54 +20,103 @@ echo Processing $file
|
|||||||
stylesheet='
|
stylesheet='
|
||||||
.ColorScheme-Text {
|
.ColorScheme-Text {
|
||||||
color:#31363b;
|
color:#31363b;
|
||||||
|
stop-color:#31363b;
|
||||||
}
|
}
|
||||||
.ColorScheme-Background {
|
.ColorScheme-Background {
|
||||||
color:#eff0f1;
|
color:#eff0f1;
|
||||||
|
stop-color:#eff0f1;
|
||||||
}
|
}
|
||||||
.ColorScheme-Highlight {
|
.ColorScheme-Highlight {
|
||||||
color:#3daee9;
|
color:#3daee9;
|
||||||
|
stop-color:#3daee9;
|
||||||
}
|
}
|
||||||
.ColorScheme-ViewText {
|
.ColorScheme-ViewText {
|
||||||
color:#31363b;
|
color:#31363b;
|
||||||
|
stop-color:#31363b;
|
||||||
}
|
}
|
||||||
.ColorScheme-ViewBackground {
|
.ColorScheme-ViewBackground {
|
||||||
color:#fcfcfc;
|
color:#fcfcfc;
|
||||||
|
stop-color:#fcfcfc;
|
||||||
}
|
}
|
||||||
.ColorScheme-ViewHover {
|
.ColorScheme-ViewHover {
|
||||||
color:#93cee9;
|
color:#93cee9;
|
||||||
|
stop-color:#93cee9;
|
||||||
}
|
}
|
||||||
.ColorScheme-ViewFocus{
|
.ColorScheme-ViewFocus{
|
||||||
color:#3daee9;
|
color:#3daee9;
|
||||||
|
stop-color:#3daee9;
|
||||||
}
|
}
|
||||||
.ColorScheme-ButtonText {
|
.ColorScheme-ButtonText {
|
||||||
color:#31363b;
|
color:#31363b;
|
||||||
|
stop-color:#31363b;
|
||||||
}
|
}
|
||||||
.ColorScheme-ButtonBackground {
|
.ColorScheme-ButtonBackground {
|
||||||
color:#eff0f1;
|
color:#eff0f1;
|
||||||
|
stop-color:#eff0f1;
|
||||||
}
|
}
|
||||||
.ColorScheme-ButtonHover {
|
.ColorScheme-ButtonHover {
|
||||||
color:#93cee9;
|
color:#93cee9;
|
||||||
|
stop-color:#93cee9;
|
||||||
}
|
}
|
||||||
.ColorScheme-ButtonFocus{
|
.ColorScheme-ButtonFocus{
|
||||||
color:#3daee9;
|
color:#3daee9;
|
||||||
|
stop-color:#3daee9;
|
||||||
}
|
}
|
||||||
'
|
'
|
||||||
colors=(\#31363b \#eff0f1 \#3daee9 \#fcfcfc \#93cee9)
|
colors=(\#caced0 \#ffffff \#93cee9 \#fcfcfc \#a3cee9)
|
||||||
colorNames=(ColorScheme-Text ColorScheme-Background ColorScheme-Highlight ColorScheme-ViewBackground ColorScheme-ViewHover)
|
colorNames=(ColorScheme-Text ColorScheme-Background ColorScheme-Highlight ColorScheme-ViewBackground ColorScheme-ViewHover)
|
||||||
|
|
||||||
|
|
||||||
|
reorderXslt='
|
||||||
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<xsl:output omit-xml-declaration="yes" indent="yes"/>
|
||||||
|
<xsl:strip-space elements="*"/>
|
||||||
|
|
||||||
|
<xsl:template match="@* | node()">
|
||||||
|
<xsl:copy>
|
||||||
|
<xsl:apply-templates select="@* | node()"/>
|
||||||
|
</xsl:copy>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="svg:defs">
|
||||||
|
<xsl:copy>
|
||||||
|
<xsl:apply-templates select="@*" />
|
||||||
|
<xsl:apply-templates select="*">
|
||||||
|
<xsl:sort select="name()" data-type="text" order="descending"/>
|
||||||
|
</xsl:apply-templates>
|
||||||
|
</xsl:copy>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
|
'
|
||||||
|
echo $reorderXslt > transform.xsl
|
||||||
|
|
||||||
|
if grep -q '"current-color-scheme"' $file.svg; then
|
||||||
|
echo replacing the stylesheet
|
||||||
|
xml ed --update "/svg:svg/svg:defs/_:style" -v "$stylesheet" $file.svg > temp.svg
|
||||||
|
else
|
||||||
|
echo adding the stylesheet
|
||||||
xml ed --subnode "/svg:svg/svg:defs" -t elem -n "style" -v "$stylesheet"\
|
xml ed --subnode "/svg:svg/svg:defs" -t elem -n "style" -v "$stylesheet"\
|
||||||
--subnode "/svg:svg/svg:defs/style" -t attr -n "type" -v "text/css"\
|
--subnode "/svg:svg/svg:defs/style" -t attr -n "type" -v "text/css"\
|
||||||
--subnode "/svg:svg/svg:defs/style" -t attr -n "id" -v "current-color-scheme" $file.svg > temp.svg
|
--subnode "/svg:svg/svg:defs/style" -t attr -n "id" -v "current-color-scheme" $file.svg > temp.svg
|
||||||
|
fi
|
||||||
|
|
||||||
|
xml tr transform.xsl temp.svg > temp2.svg
|
||||||
|
mv temp2.svg temp.svg
|
||||||
|
|
||||||
for i in {0..4}
|
for i in {0..4}
|
||||||
do
|
do
|
||||||
xml ed --subnode "//*/*[contains(@style, '${colors[i]}')]" -t attr -n "class" -v "${colorNames[i]}" temp.svg > temp2.svg
|
xml ed --subnode "//*/*[contains(@style, '${colors[i]}') and not (@class)]" -t attr -n "class" -v "${colorNames[i]}" temp.svg > temp2.svg
|
||||||
|
|
||||||
mv temp2.svg temp.svg
|
mv temp2.svg temp.svg
|
||||||
|
|
||||||
sed -i 's/\(style=".*\)fill:'${colors[i]}'/\1fill:currentColor/g' temp.svg
|
sed -i 's/\(style=".*\)fill:'${colors[i]}'/\1fill:currentColor/g' temp.svg
|
||||||
|
sed -i 's/\(style=".*\)stop-color:'${colors[i]}'/\1stop-color:currentColor/g' temp.svg
|
||||||
done
|
done
|
||||||
|
|
||||||
|
rm transform.xsl
|
||||||
|
|
||||||
mv temp.svg $file.svg
|
mv temp.svg $file.svg
|
||||||
gzip $file.svg
|
gzip $file.svg
|
||||||
mv $file.svg.gz $file.svgz
|
mv $file.svg.gz $file.svgz
|
||||||
|
Loading…
Reference in New Issue
Block a user