1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2026-05-06 21:51:31 +00:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Saq Imtiaz
1daae720e3 Revert "Fix side effects of PR 9316 (#9568)"
This reverts commit bf7c0b575c.
2026-04-10 12:22:25 +02:00
5 changed files with 4 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ tags: $:/tags/EditTemplate
<$let backgroundColor=<<colour>> >
<span class="tc-tag-label tc-tag-list-item tc-small-gap-right"
data-tag-title=<<currentTiddler>>
style=`color:$(foregroundColor)$; background-color:$(backgroundColor)$; --tp-remove-tag-button-color:$(foregroundColor)$`
style=`color:$(foregroundColor)$; background-color:$(backgroundColor)$;`
>
<$transclude tiddler=<<icon>>/>
<$view field="title" format="text"/>

View File

@@ -4,7 +4,7 @@ release: 5.4.0
tags: $:/tags/ChangeNote
change-type: enhancement
change-category: theme
github-links: https://github.com/TiddlyWiki/TiddlyWiki5/pull/9316 https://github.com/TiddlyWiki/TiddlyWiki5/pull/9568
github-links: https://github.com/TiddlyWiki/TiddlyWiki5/pull/9316
github-contributors: Leilei332
Replaces hardcoded `fill` attributes with one `fill: currentColor` rule to solve the compatibility issues of migrating to lucide icons.

View File

@@ -9,7 +9,7 @@ Rules copied from Snow White
*/
.tc-page-controls button svg, .tc-tiddler-controls button svg, .tc-topbar button svg {
transition: color 150ms ease-in-out;
<<transition "fill 150ms ease-in-out">>
}
.tc-tiddler-controls button.tc-selected svg {

View File

@@ -28,7 +28,7 @@ tags: [[$:/tags/Stylesheet]]
}
.tc-page-controls button svg, .tc-tiddler-controls button svg, .tc-topbar button svg {
transition: color 150ms ease-in-out;
transition: fill 150ms ease-in-out;
}
.tc-tiddler-controls button.tc-selected,

View File

@@ -852,7 +852,6 @@ button.tc-untagged-label {
.tc-edit-tags button.tc-remove-tag-button svg {
font-size: 0.7em;
vertical-align: middle;
color: var(--tp-remove-tag-button-color);
}
.tc-tag-manager-table .tc-tag-label {
@@ -2755,10 +2754,6 @@ a.tc-tiddlylink.tc-plugin-info:hover > .tc-plugin-info-chunk .tc-plugin-info-sta
padding: 3px;
}
.tc-install-plugin > svg {
color: white;
}
.tc-install-plugin.tc-reinstall-downgrade {
background: red;
}