Small fixes
parent
70b2565f3d
commit
646c67661b
|
@ -64,7 +64,7 @@
|
||||||
background-color: fade-out($black, .7);
|
background-color: fade-out($black, .7);
|
||||||
border-color: fade-out($white, .4);
|
border-color: fade-out($white, .4);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 7px;
|
padding: 6px;
|
||||||
color: $white;
|
color: $white;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
@ -93,10 +93,10 @@
|
||||||
animation: dashentry_spinner 1s infinite linear;
|
animation: dashentry_spinner 1s infinite linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.lightdm.option-button {
|
.lightdm.option-button {
|
||||||
padding: 5px;
|
|
||||||
background: none;
|
background: none;
|
||||||
border: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lightdm.toggle-button {
|
.lightdm.toggle-button {
|
||||||
|
|
|
@ -4,19 +4,36 @@
|
||||||
|
|
||||||
@include exports("calendar") {
|
@include exports("calendar") {
|
||||||
GtkCalendar {
|
GtkCalendar {
|
||||||
|
margin: 4px;
|
||||||
padding: $spacing;
|
padding: $spacing;
|
||||||
outline-offset: -1px;
|
outline-offset: -1px;
|
||||||
|
|
||||||
&:inconsistent { color: mix($fg_color, $bg_color, .5); }
|
&:inconsistent { color: mix($fg_color, $bg_color, .5); }
|
||||||
|
|
||||||
&.view, &.highlight, &.header, &.button {
|
&:selected {
|
||||||
&, &:focus, &:hover, &:insensitive {
|
&, &:focus, &:hover, &:insensitive {
|
||||||
border: 0;
|
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
background-image: none;
|
color: $selected_bg_color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.view, &.highlight, &.header, &.button {
|
||||||
|
&, &:focus, &:hover, &:insensitive {
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: none;
|
||||||
|
border-width: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.button {
|
||||||
|
&, &:focus, &:hover, &:insensitive {
|
||||||
|
color: $white;
|
||||||
|
border-width: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.highlight { color: $selected_bg_color; }
|
&.highlight { color: $selected_bg_color; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue