mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
Fix button styling
This commit is contained in:
parent
f71da5c3af
commit
23b597208e
2 changed files with 25 additions and 18 deletions
|
@ -1,28 +1,30 @@
|
|||
.ui.button.safing-active {
|
||||
color: $white;
|
||||
.ui.safing-primary {
|
||||
background-color: $primary;
|
||||
|
||||
&.button {
|
||||
color: $white;
|
||||
|
||||
&:hover {
|
||||
background-color: darken($primary, 5%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ui.button.safing-active:hover {
|
||||
background-color: $anchor_hover;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
.ui.button.safing-secondary{
|
||||
.ui.button.safing-secondary {
|
||||
color: $secondary;
|
||||
|
||||
&:hover {
|
||||
color: $secondary;
|
||||
}
|
||||
}
|
||||
|
||||
.ui.button.safing-secondary:hover{
|
||||
background-color: $fill_medium;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
.ui.button.safing-full {
|
||||
color: $fill_lighter;
|
||||
color: $secondary;
|
||||
background-color: $white;
|
||||
}
|
||||
|
||||
.ui.button.safing-full:hover {
|
||||
background-color: $fill_lighter;
|
||||
color: $white;
|
||||
&:hover {
|
||||
background-color: $secondary;
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,13 +5,18 @@ body, .ui.header, h1, h2, h3, h4, h5, h6, p {
|
|||
a {
|
||||
color: $anchor;
|
||||
}
|
||||
a:hover {
|
||||
|
||||
p a:hover {
|
||||
color: $anchor_hover;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.color-primary {
|
||||
color: $primary;
|
||||
|
||||
&:hover {
|
||||
color: darken($primary, 10%)
|
||||
}
|
||||
}
|
||||
|
||||
.color-primary-important {
|
||||
|
|
Loading…
Add table
Reference in a new issue