UI - Make tabs hoverable

pull/1178/head
dgtlmoon 2022-12-01 23:47:51 +01:00
rodzic 64caeea491
commit 8aae4197d7
2 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -525,6 +525,8 @@ footer {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: rgba(255, 255, 255, 0.2); }
.tabs ul li:not(.active):hover {
background-color: rgba(255, 255, 255, 0.5); }
.tabs ul li.active, .tabs ul li :target {
background-color: #fff; }
.tabs ul li.active a, .tabs ul li :target a {

Wyświetl plik

@ -609,7 +609,11 @@ footer {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: rgba(255, 255, 255, 0.2);
&:not(.active) {
&:hover {
background-color: rgba(255, 255, 255, 0.5);
}
}
&.active, :target {
background-color: #fff;