Compare commits

...

4 Commits

Author SHA1 Message Date
8c602f1513 refactoring...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2024-08-28 03:05:11 +03:00
94b87a4719 more tweaks...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2024-08-28 02:16:24 +03:00
df1a4f6647 minor tweak...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2024-08-28 02:00:07 +03:00
9f0a57e7cc minor fix...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2024-08-28 01:55:20 +03:00

View File

@ -583,12 +583,32 @@
:host .outline, :host .outline,
.editor .outline { .editor .outline {
--highlight-color: yellow;
--highlight-focus-color: rgb(253, 218, 13);
--highlight-hover-color: rgba(253, 218, 13, 0.5);
--highlight-focus-hover-color: rgba(253, 218, 13, 0.7);
.highlight { .highlight {
font-weight: bold; font-weight: bold;
background: yellow; background: yellow;
} }
.XXX>.view { .XXX {
background: yellow; &>.view {
background: var(--highlight-color);
}
&:hover>.view {
background: var(--highlight-hover-color) !important;
}
&.focused {
&>.view,
&>.text {
/* XXX can we avoid !important here??? */
background: var(--highlight-focus-color) !important;
}
&:hover>.view {
background: var(--highlight-focus-hover-color) !important;
}
}
} }
} }