Feature/global notifications (#1646)

Add global notifications
This commit is contained in:
Sebastian Sdorra
2021-05-05 14:43:16 +02:00
committed by GitHub
parent de28cac4ab
commit b975fb655d
81 changed files with 3450 additions and 30 deletions

View File

@@ -572,6 +572,26 @@ ul.is-separated {
&.border-is-yellow td:first-child {
border-left-color: $yellow;
}
&.is-primary td:first-child {
border-left-color: $primary;
}
&.is-success td:first-child {
border-left-color: $success;
}
&.is-warning td:first-child {
border-left-color: $warning;
}
&.is-danger td:first-child {
border-left-color: $danger;
}
&.is-info td:first-child {
border-left-color: $info;
}
&.is-link td:first-child {
border-left-color: $link;
}
&:hover {
td {
background-color: whitesmoke;
@@ -866,4 +886,12 @@ form .field:not(.is-grouped) {
background: $warning-25;
}
.small-loading-spinner {
position: relative;
pointer-events: none;
&:after {
@include loader;
}
}
@import "bulma-popover/css/bulma-popover";