styling!!!!!!!!!!!!!!
This commit is contained in:
parent
0ba4396ab6
commit
31af598f7f
2 changed files with 37 additions and 8 deletions
40
style.scss
40
style.scss
|
|
@ -21,11 +21,15 @@ button {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
|
transition:
|
||||||
|
border 0.5s,
|
||||||
|
background 0.5s;
|
||||||
background: $mantle;
|
background: $mantle;
|
||||||
}
|
}
|
||||||
|
|
||||||
label:hover {
|
label:hover {
|
||||||
background: $crust;
|
background: $crust;
|
||||||
|
border: 3px solid $rosewater;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -36,7 +40,7 @@ label {
|
||||||
color: $rosewater;
|
color: $rosewater;
|
||||||
padding: 2px 12px;
|
padding: 2px 12px;
|
||||||
background: $crust;
|
background: $crust;
|
||||||
border: 4px solid $crust;
|
border: 3px solid $crust;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -56,11 +60,15 @@ label {
|
||||||
-gtk-icon-size: 24px;
|
-gtk-icon-size: 24px;
|
||||||
padding: 4px 8px;
|
padding: 4px 8px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border: 4px solid $crust;
|
border: 3px solid $crust;
|
||||||
background: $mantle;
|
background: $mantle;
|
||||||
|
transition:
|
||||||
|
border 0.5s,
|
||||||
|
background 0.5s;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: $crust;
|
background: $crust;
|
||||||
|
border: 3px solid $rosewater;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -120,16 +128,38 @@ label {
|
||||||
|
|
||||||
.CalendarMenu {
|
.CalendarMenu {
|
||||||
contents {
|
contents {
|
||||||
// all: initial;
|
button {
|
||||||
|
|
||||||
grid button {
|
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
|
padding: 4px;
|
||||||
|
border-radius: 8px;
|
||||||
|
background: $crust;
|
||||||
|
transition:
|
||||||
|
border 0.5s,
|
||||||
|
background 0.5s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $crust;
|
||||||
|
background: $rosewater;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.today {
|
||||||
|
border: 3px solid $rosewater;
|
||||||
|
}
|
||||||
|
|
||||||
|
.other-month {
|
||||||
|
color: $surface0;
|
||||||
|
transition: border 0.5s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border: 3px solid $rosewater;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
padding: 4px 12px;
|
padding: 4px 12px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border: 4px solid $crust;
|
border: 4px solid $crust;
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,8 @@ const OS = function () {
|
||||||
hexpand
|
hexpand
|
||||||
halign={Gtk.Align.START}
|
halign={Gtk.Align.START}
|
||||||
cssClasses={["Arch"]}
|
cssClasses={["Arch"]}
|
||||||
>
|
iconName={GLib.get_os_info("LOGO") || "missing-symbolic"}
|
||||||
<image iconName={GLib.get_os_info("LOGO") || "missing-symbolic"} />
|
/>
|
||||||
</button>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue