1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-24 06:13:17 +00:00

More specificity for plugin listing CSS rules

This is to enable us to use nested SVGs as icons (see next commit)
This commit is contained in:
Jermolene 2015-08-02 11:38:25 +01:00
parent 9ec38eef32
commit 1e25de984b

View File

@ -1579,7 +1579,7 @@ a.tc-tiddlylink.tc-plugin-info:hover {
fill: <<colour foreground>>;
}
a.tc-tiddlylink.tc-plugin-info:hover svg {
a.tc-tiddlylink.tc-plugin-info:hover .tc-plugin-info > .tc-plugin-info-chunk > svg {
fill: <<colour foreground>>;
}
@ -1603,13 +1603,19 @@ a.tc-tiddlylink.tc-plugin-info:hover svg {
margin: 2px 0 2px 0;
}
.tc-plugin-info img, .tc-plugin-info svg {
.tc-plugin-info:hover > .tc-plugin-info-chunk > img, .tc-plugin-info:hover > .tc-plugin-info-chunk > svg {
width: 2em;
height: 2em;
fill: <<colour foreground>>;
}
.tc-plugin-info > .tc-plugin-info-chunk > img, .tc-plugin-info > .tc-plugin-info-chunk > svg {
width: 2em;
height: 2em;
fill: <<colour muted-foreground>>;
}
.tc-plugin-info.tc-small-icon img, .tc-plugin-info.tc-small-icon svg {
.tc-plugin-info.tc-small-icon > .tc-plugin-info-chunk > img, .tc-plugin-info.tc-small-icon > .tc-plugin-info-chunk > svg {
width: 1em;
height: 1em;
}