easy transparency for yoinkers

This commit is contained in:
end-4
2025-05-31 01:39:06 +02:00
parent 42abc57b65
commit 92947e3360
18 changed files with 57 additions and 41 deletions
@@ -27,7 +27,7 @@ RippleButton {
property string materialSymbol: entry?.materialSymbol ?? ""
property string cliphistRawString: entry?.cliphistRawString ?? ""
property string highlightPrefix: `<u><font color="${Appearance.m3colors.m3primary}">`
property string highlightPrefix: `<u><font color="${Appearance.colors.colPrimary}">`
property string highlightSuffix: `</font></u>`
function highlightContent(content, query) {
if (!query || query.length === 0 || content == query || fontType === "monospace")
@@ -162,7 +162,7 @@ RippleButton {
implicitWidth: activeText.implicitHeight
implicitHeight: activeText.implicitHeight
radius: Appearance.rounding.full
color: Appearance.m3colors.m3primary
color: Appearance.colors.colPrimary
MaterialSymbol {
id: activeText
anchors.centerIn: parent
@@ -245,7 +245,7 @@ Item { // Wrapper
cursorDelegate: Rectangle {
width: 1
color: searchInput.activeFocus ? Appearance.m3colors.m3primary : "transparent"
color: searchInput.activeFocus ? Appearance.colors.colPrimary : "transparent"
radius: 1
}
}