1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-07-05 02:34:21 +00:00

Fix styling of link-buttons

This commit is contained in:
Magnus Walbeck 2019-12-05 21:27:27 +01:00
parent 7f7eda6b9e
commit 7eecb036a5

View file

@ -148,12 +148,18 @@ div[contenteditable="false"] {
// Link Buttons
.link-button:active,
.link-button:hover,
.link-button:focus {
color: $foreground-normal;
background-color: $foreground-link;
border-color: $decoration-active !important;
.link-button {
background-color: $background-normal !important;
border: 1px solid $decoration-normal !important;
color: $foreground-normal !important;
&:active,
&:hover,
&:focus {
color: $foreground-normal !important;
background-color: $foreground-link !important;
border-color: $decoration-active !important;
}
}
/* General nextcloud -------------------------------------------------------- */