mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web: use hover effects only when supported
This commit is contained in:
parent
95aeec3380
commit
5390415aa7
3 changed files with 20 additions and 15 deletions
|
@ -121,19 +121,20 @@
|
||||||
margin-bottom: 0.1rem;
|
margin-bottom: 0.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#download-button:hover {
|
|
||||||
background: var(--button-hover-transparent);
|
|
||||||
}
|
|
||||||
|
|
||||||
#download-button:disabled {
|
#download-button:disabled {
|
||||||
cursor: unset;
|
cursor: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
#download-button:disabled:hover {
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
:global(#input-container.focused) #download-button {
|
:global(#input-container.focused) #download-button {
|
||||||
border-left: 2px var(--secondary) solid;
|
border-left: 2px var(--secondary) solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (hover: hover) {
|
||||||
|
#download-button:hover {
|
||||||
|
background: var(--button-hover-transparent);
|
||||||
|
}
|
||||||
|
#download-button:disabled:hover {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -63,10 +63,6 @@
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-tab:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar-tab:focus-visible {
|
.sidebar-tab:focus-visible {
|
||||||
box-shadow: 0 0 0 3px var(--blue) inset;
|
box-shadow: 0 0 0 3px var(--blue) inset;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
@ -78,6 +74,12 @@
|
||||||
color: var(--sidebar-highlight);
|
color: var(--sidebar-highlight);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (hover: hover) {
|
||||||
|
.sidebar-tab:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 535px) {
|
@media screen and (max-width: 535px) {
|
||||||
.sidebar-tab {
|
.sidebar-tab {
|
||||||
padding: 5px var(--padding);
|
padding: 5px var(--padding);
|
||||||
|
|
|
@ -130,10 +130,12 @@
|
||||||
transform: scale(0.95);
|
transform: scale(0.95);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (hover: hover) {
|
||||||
:global(button:hover) {
|
:global(button:hover) {
|
||||||
background-color: var(--button-hover);
|
background-color: var(--button-hover);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
:global(.center-column-container) {
|
:global(.center-column-container) {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in a new issue