forked from dbroqua/MusicTopus
issue/19 (#20)
!19 Co-authored-by: dbroqua <contact@darkou.fr> Reviewed-on: https://git.darkou.fr/dbroqua/MyMusicLibrary/pulls/20 Co-authored-by: Damien Broqua <dbroqua@noreply.localhost> Co-committed-by: Damien Broqua <dbroqua@noreply.localhost>
This commit is contained in:
parent
18d4970ebd
commit
a0f9ab1f45
35 changed files with 973 additions and 366 deletions
|
@ -7,43 +7,57 @@
|
|||
padding-top: calc(0.5em - 1px);
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
border-width: 1px;
|
||||
border: 1px solid transparent;
|
||||
margin-bottom: .5rem;
|
||||
background-color: #fff;
|
||||
border-color: #dbdbdb;
|
||||
background-color: $nord9;
|
||||
border-radius: 0.375rem;
|
||||
color: $button-font-color;
|
||||
@include transition() {}
|
||||
|
||||
&.is-danger {
|
||||
background-color: #d73455;
|
||||
border-color: transparent;
|
||||
color: #fff;
|
||||
|
||||
&:hover {
|
||||
background-color: #d70933;
|
||||
border-color: transparent;
|
||||
color: #fff;
|
||||
}
|
||||
&:hover {
|
||||
background-color: darken($nord9, $hoverAmount);
|
||||
}
|
||||
|
||||
&.is-link {
|
||||
background-color: #485fc7;
|
||||
border-color: transparent;
|
||||
color: #fff;
|
||||
&.is-danger {
|
||||
background-color: $danger-color;
|
||||
color: $button-alternate-color;
|
||||
|
||||
&:hover {
|
||||
background-color: #3e56c4;
|
||||
border-color: transparent;
|
||||
color: #fff;
|
||||
background-color: $danger-color-hl;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-primary {
|
||||
background-color: #2d7c58;
|
||||
border-color: transparent;
|
||||
color: #fff;
|
||||
background-color: $primary-color;
|
||||
|
||||
&:hover {
|
||||
background-color: #267953;
|
||||
background-color: $primary-color-hl;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-warning {
|
||||
background-color: $warning-color;
|
||||
|
||||
&:hover {
|
||||
background-color: $warning-color-hl;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-success {
|
||||
background-color: $success-color;
|
||||
|
||||
&:hover {
|
||||
background-color: $success-color-hl;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-link {
|
||||
background-color: transparent;
|
||||
border-color: $nord9;
|
||||
color: $nord9;
|
||||
|
||||
&:hover {
|
||||
border-color: darken($nord9, $hoverAmount);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue