scss: add a background to selectable datetimes (#50245)

This commit is contained in:
Frédéric Péters 2021-01-18 10:13:11 +01:00
parent af192cd5a1
commit 033e7bbb85
2 changed files with 8 additions and 2 deletions

View File

@ -650,6 +650,7 @@ div.meetings_table {
& > div {
flex: 0 1 auto;
width: 20%;
padding: 0 2px;
text-align: center;
display: none;
}
@ -677,12 +678,16 @@ div.meetings_table {
opacity: 0.3;
cursor: not-allowed;
}
border-radius: $button-border-radius;
margin-bottom: 4px;
}
span.selectable {
background: transparentize($button-background, 0.8);
&:hover {
background: #ccc;
color: black;
background: $button-background;
color: $button-color;
box-shadow: 1px 0px 5px $button-background;
}
&.on {
background: $button-background;

View File

@ -139,6 +139,7 @@ div.meetings_table {
span.selectable {
background-color: $green;
&:hover {
box-shadow: none;
background-color: $green;
color: black;
border: 1px solid;