Merged some light and dark theme mode style rules

This commit is contained in:
djmaze 2021-03-09 11:14:15 +01:00
parent ab9e56f8b6
commit 8a875670d9
5 changed files with 25 additions and 49 deletions

View file

@ -9,18 +9,19 @@
padding: 5px 15px;
margin: 2px 5px;
width: 180px;
background-color: #fff;
background-color: rgba(128, 128, 128, 0.1);
text-align: left;
border: 1px solid transparent;
border-radius: 3px;
position: relative;
cursor: pointer;
&.user {
background-color: #ffd;
background-color: rgba(255, 255, 64, .15);
border-color: #ff5;
}
&.selected {
background-color: #efe;
background-color: rgba(64, 255, 64, 0.2);
border-color: #9c9;
}
&.selected::after {
@ -31,7 +32,7 @@
font-family: snappymail;
}
&:hover {
background-color: #eee;
background-color: rgba(128, 128, 128, 0.2);
border-color: #ccc;
}
}