2021-01-17 13:21:58 +01:00
|
|
|
@import "../../../node_modules/bulma/bulma";
|
2019-12-19 23:09:23 +01:00
|
|
|
|
2021-01-17 13:21:58 +01:00
|
|
|
@import "fonts";
|
2020-07-07 22:16:13 +02:00
|
|
|
|
2021-01-17 13:21:58 +01:00
|
|
|
@import "variables-derived";
|
2020-06-17 21:44:44 +02:00
|
|
|
|
2021-01-17 13:21:58 +01:00
|
|
|
*,
|
|
|
|
*:hover,
|
|
|
|
*:active,
|
|
|
|
*:focus {
|
2019-12-19 23:09:23 +01:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-11-22 17:47:47 +01:00
|
|
|
:focus {
|
|
|
|
box-shadow: 0 0 0 2px rgba($primary, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
:focus:not(:focus-visible) {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2021-01-17 13:21:58 +01:00
|
|
|
:focus-visible,
|
|
|
|
:-moz-focusring {
|
2020-11-22 17:47:47 +01:00
|
|
|
box-shadow: 0 0 0 2px rgba($primary, 0.5);
|
|
|
|
}
|
|
|
|
|
2019-12-19 23:09:23 +01:00
|
|
|
body {
|
2021-01-17 19:58:03 +01:00
|
|
|
background: $light-background;
|
2019-12-19 23:09:23 +01:00
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
2021-01-17 13:21:58 +01:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2019-12-19 23:09:23 +01:00
|
|
|
font-family: $vikunja-font;
|
|
|
|
font-weight: 400 !important;
|
|
|
|
}
|
2020-05-09 21:46:28 +02:00
|
|
|
|
2019-12-19 23:09:23 +01:00
|
|
|
.logo {
|
|
|
|
padding-left: 2rem !important;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 3rem !important;
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress {
|
|
|
|
border-radius: $radius-large;
|
|
|
|
}
|
2020-01-22 21:18:39 +01:00
|
|
|
|
2020-05-09 21:46:28 +02:00
|
|
|
.has-no-border {
|
2020-01-22 21:18:39 +01:00
|
|
|
border: none !important;
|
|
|
|
}
|
2020-02-25 21:11:36 +01:00
|
|
|
|
|
|
|
.has-rounded-corners {
|
|
|
|
border-radius: $radius;
|
|
|
|
}
|
|
|
|
|
2021-01-06 23:36:31 +01:00
|
|
|
.has-overflow {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
2020-05-09 21:46:28 +02:00
|
|
|
.image.is-avatar {
|
2020-02-25 21:11:36 +01:00
|
|
|
border-radius: 100%;
|
|
|
|
}
|
2020-03-26 22:21:09 +01:00
|
|
|
|
|
|
|
button.table {
|
|
|
|
margin-bottom: 0 !important;
|
2020-04-26 01:11:34 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 17:17:04 +01:00
|
|
|
.dropdown-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: left !important;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
padding-right: .5rem;
|
2021-03-24 21:16:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon:not(.has-text-success) {
|
2021-01-30 17:17:04 +01:00
|
|
|
color: $grey-300 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.has-text-danger .icon {
|
|
|
|
color: $danger !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-disabled {
|
|
|
|
cursor: not-allowed;
|
2020-04-26 01:11:34 +02:00
|
|
|
|
2021-01-30 17:17:04 +01:00
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2020-04-26 01:11:34 +02:00
|
|
|
}
|
|
|
|
}
|
2020-05-31 21:17:10 +02:00
|
|
|
|
|
|
|
.pagination {
|
2021-01-23 18:18:09 +01:00
|
|
|
padding-bottom: 1rem;
|
2020-08-11 20:32:17 +02:00
|
|
|
|
2021-01-17 13:21:58 +01:00
|
|
|
.pagination-previous,
|
|
|
|
.pagination-next {
|
2020-08-11 20:32:17 +02:00
|
|
|
&:not(:disabled):hover {
|
|
|
|
background: $button-background-color;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2020-05-31 21:17:10 +02:00
|
|
|
}
|
2020-07-03 19:37:20 +02:00
|
|
|
|
|
|
|
.is-max-width-desktop {
|
|
|
|
width: 100%;
|
|
|
|
max-width: $desktop;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-07-25 16:52:04 +02:00
|
|
|
|
|
|
|
.has-no-shadow {
|
2021-01-17 13:21:58 +01:00
|
|
|
&,
|
|
|
|
&.is-hovered,
|
|
|
|
&:hover,
|
|
|
|
&.is-active,
|
|
|
|
&.is-focused,
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:focus:not(:active) {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
2020-07-25 16:52:04 +02:00
|
|
|
}
|
2020-11-28 16:02:38 +01:00
|
|
|
|
|
|
|
.is-fullwidth {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-12-10 13:06:49 +01:00
|
|
|
|
|
|
|
.color-bubble {
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 100%;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2021-01-30 17:17:04 +01:00
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
.dropdown-content {
|
|
|
|
box-shadow: $shadow-md;
|
|
|
|
}
|
|
|
|
}
|