mirror of
https://codeberg.org/vyn/mirai.git
synced 2025-07-02 01:13:19 +00:00
Improve calendar's lines color contrast
This commit is contained in:
parent
84760b603d
commit
6ca4fd718d
5 changed files with 48 additions and 32 deletions
|
@ -74,7 +74,7 @@ export component Calendar inherits Rectangle {
|
|||
y: header-height - 32px;
|
||||
width: 1px;
|
||||
height: parent.height;
|
||||
background: Palette.card-background.transparentize(0.5);
|
||||
background: Palette.card-background.brighter(0.5);
|
||||
}
|
||||
VerticalLayout {
|
||||
y: 0;
|
||||
|
@ -87,7 +87,7 @@ export component Calendar inherits Rectangle {
|
|||
}
|
||||
}
|
||||
for hour[hour-index] in 24 : Rectangle {
|
||||
background: Palette.card-background.transparentize(0.5);
|
||||
background: Palette.card-background.brighter(0.5);
|
||||
x: 0px;
|
||||
width: parent.width;
|
||||
y: day-start-y + hour-spacing * hour-index;
|
||||
|
@ -120,7 +120,7 @@ export component Calendar inherits Rectangle {
|
|||
wrap: TextWrap.word-wrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
eventActionsPopup := VPopupIconMenu {
|
||||
//VActionButton {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue