Skip to content

Commit c31db2a

Browse files
committed
Mint-Y - Don't darken unselected ibus candidates.
ref: linuxmint/cinnamon#13191
1 parent 6261a9f commit c31db2a

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

src/Mint-Y/cinnamon/cinnamon-dark.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2019,10 +2019,9 @@ On-Screen Keyboard (>= Cinnamon 6.6)
20192019
.candidate-box {
20202020
padding: 0.3em 0.5em 0.3em 0.5em;
20212021
border-radius: 6px;
2022-
color: #626262; }
2022+
color: #e1e1e1; }
20232023
.candidate-box:selected, .candidate-box:hover {
2024-
background-color: #38383e;
2025-
color: #e1e1e1; }
2024+
background-color: #38383e; }
20262025

20272026
.candidate-page-button-box {
20282027
height: 2em; }

src/Mint-Y/cinnamon/cinnamon.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2021,10 +2021,9 @@ On-Screen Keyboard (>= Cinnamon 6.6)
20212021
.candidate-box {
20222022
padding: 0.3em 0.5em 0.3em 0.5em;
20232023
border-radius: 6px;
2024-
color: black; }
2024+
color: #303030; }
20252025
.candidate-box:selected, .candidate-box:hover {
2026-
background-color: #c0c0c6;
2027-
color: #303030; }
2026+
background-color: #c0c0c6; }
20282027

20292028
.candidate-page-button-box {
20302029
height: 2em; }

src/Mint-Y/cinnamon/sass/_ibus-popup.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ $popover_arrow_height: 6px;
2525
.candidate-box {
2626
padding: 0.3em 0.5em 0.3em 0.5em;
2727
border-radius: $radius;
28-
color: darken($fg_color,50%);
29-
&:selected,&:hover { background-color: $bg_color4; color: $fg_color; }
28+
color: $fg_color;
29+
&:selected,&:hover { background-color: $bg_color4; }
3030
}
3131

3232
.candidate-page-button-box {

0 commit comments

Comments
 (0)