mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 00:45:44 +01:00
This commit introduces a new more relaxed theme, the dark theme! In addition, the theme can now be selected according to the system defaults. And the other themes, as well as the general structure were unified/simplified. Co-authored-by: Philipp Ahrendt <philipp.ahrendt@cloudogu.com> Co-authored-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com> Co-authored-by: René Pfeuffer <rene.pfeuffer@cloudogu.com> Co-authored-by: Matthias Thieroff <matthias.thieroff@cloudogu.com>
999 lines
20 KiB
SCSS
999 lines
20 KiB
SCSS
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
:root {
|
|
--scm-white-color: #{$white};
|
|
--scm-light-color: #{$light};
|
|
--scm-dark-color: #{$dark};
|
|
--scm-primary-color: #{$primary};
|
|
--scm-link-color: #{$link};
|
|
--scm-info-color: #{$info};
|
|
--scm-success-color: #{$success};
|
|
--scm-warning-color: #{$warning};
|
|
--scm-danger-color: #{$danger};
|
|
|
|
--scm-secondary-least-color: #{$secondary-least};
|
|
--scm-secondary-less-color: #{$secondary-less};
|
|
--scm-secondary-color: #{$secondary};
|
|
--scm-secondary-more-color: #{$secondary-more};
|
|
--scm-secondary-most-color: #{$secondary-most};
|
|
|
|
--scm-border-color: #{$border};
|
|
--scm-border: #{$border-width} solid #{$border};
|
|
|
|
--scm-popover-border-color: #{$white};
|
|
}
|
|
|
|
// TODO split into multiple files
|
|
|
|
.is-ellipsis-overflow {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.is-word-break {
|
|
-webkit-hyphens: none;
|
|
-moz-hyphens: none;
|
|
-ms-hyphens: none;
|
|
hyphens: none;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.has-rounded-border {
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.is-full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.is-overflow-x-auto {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.fitParent {
|
|
// TODO get rid of important
|
|
margin: 0 !important;
|
|
// 3.8em for line-numbers
|
|
padding: 0 0 0 3.8em !important;
|
|
}
|
|
|
|
// shown in top section when pageactions set
|
|
hr.header-with-actions {
|
|
margin-top: -10px;
|
|
|
|
@media screen and (max-width: 768px) {
|
|
display: none;
|
|
}
|
|
}
|
|
.is-mobile-action-spacing {
|
|
@media screen and (max-width: 768px) {
|
|
display: flow-root !important;
|
|
|
|
.input-field {
|
|
padding: 0;
|
|
margin: 0 0 1.25rem 0 !important;
|
|
width: 100%;
|
|
}
|
|
.input-button {
|
|
// TODO color def
|
|
border: 2px solid #e9f7fd;
|
|
padding: 1em 1em;
|
|
margin-top: 0 !important;
|
|
width: 100%;
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.has-hover-background-blue:hover {
|
|
background-color: scale-color($blue, $alpha: -90%);
|
|
}
|
|
|
|
// readability issues with original color
|
|
.has-text-warning {
|
|
// TODO color def
|
|
color: #ffb600 !important;
|
|
}
|
|
.has-text-warning-invert {
|
|
color: $warning-invert;
|
|
}
|
|
|
|
.has-text-blue-light {
|
|
color: $blue-light;
|
|
}
|
|
.has-background-blue-light {
|
|
background-color: $blue-light;
|
|
}
|
|
|
|
.has-text-secondary-least {
|
|
color: $secondary-least !important;
|
|
}
|
|
a.has-text-secondary-least:hover,
|
|
a.has-text-secondary-least:focus {
|
|
color: lighten($secondary-least, 10%) !important;
|
|
}
|
|
.has-background-secondary-least {
|
|
background-color: $secondary-least !important;
|
|
}
|
|
|
|
.has-text-secondary-less {
|
|
color: $secondary-less !important;
|
|
}
|
|
a.has-text-secondary-less:hover,
|
|
a.has-text-secondary-less:focus {
|
|
color: lighten($secondary-less, 10%) !important;
|
|
}
|
|
.has-background-secondary-less {
|
|
background-color: $secondary-less !important;
|
|
}
|
|
|
|
.has-text-secondary {
|
|
color: $secondary !important;
|
|
}
|
|
a.has-text-secondary:hover,
|
|
a.has-text-secondary:focus {
|
|
color: lighten($secondary, 10%) !important;
|
|
}
|
|
.has-background-secondary {
|
|
background-color: $secondary !important;
|
|
}
|
|
|
|
.has-text-secondary-more {
|
|
color: $secondary-more !important;
|
|
}
|
|
a.has-text-secondary-more:hover,
|
|
a.has-text-secondary-more:focus {
|
|
color: lighten($secondary-more, 10%) !important;
|
|
}
|
|
.has-background-secondary-more {
|
|
background-color: $secondary-more !important;
|
|
}
|
|
|
|
.has-text-secondary-most {
|
|
color: $secondary-most !important;
|
|
}
|
|
a.has-text-secondary-most:hover,
|
|
a.has-text-secondary-most:focus {
|
|
color: lighten($secondary-most, 10%) !important;
|
|
}
|
|
.has-background-secondary-most {
|
|
background-color: $secondary-most !important;
|
|
}
|
|
|
|
// border and background colors
|
|
.has-background-dark-75 {
|
|
background-color: $dark-75;
|
|
}
|
|
.has-background-dark-50 {
|
|
background-color: $dark-50;
|
|
}
|
|
.has-background-dark-25 {
|
|
background-color: $dark-25;
|
|
}
|
|
.has-background-info-75 {
|
|
background-color: $info-75;
|
|
}
|
|
.has-background-info-50 {
|
|
background-color: $info-50;
|
|
}
|
|
.has-background-info-25 {
|
|
background-color: $info-25;
|
|
}
|
|
.has-background-link-75 {
|
|
background-color: $link-75;
|
|
}
|
|
.has-background-link-50 {
|
|
background-color: $link-50;
|
|
}
|
|
.has-background-link-25 {
|
|
background-color: $link-25;
|
|
}
|
|
.has-background-primary-75 {
|
|
background-color: $primary-75;
|
|
}
|
|
.has-background-primary-50 {
|
|
background-color: $primary-50;
|
|
}
|
|
.has-background-primary-25 {
|
|
background-color: $primary-25;
|
|
}
|
|
.has-background-success-75 {
|
|
background-color: $success-75;
|
|
}
|
|
.has-background-success-50 {
|
|
background-color: $success-50;
|
|
}
|
|
.has-background-success-25 {
|
|
background-color: $success-25;
|
|
}
|
|
.has-background-warning-75 {
|
|
background-color: $warning-75;
|
|
}
|
|
.has-background-warning-50 {
|
|
background-color: $warning-50;
|
|
}
|
|
.has-background-warning-25 {
|
|
background-color: $warning-25;
|
|
}
|
|
.has-background-danger-75 {
|
|
background-color: $danger-75;
|
|
}
|
|
.has-background-danger-50 {
|
|
background-color: $danger-50;
|
|
}
|
|
.has-background-danger-25 {
|
|
background-color: $danger-25;
|
|
}
|
|
|
|
// tags
|
|
.tag:not(body) {
|
|
border: 1px solid transparent;
|
|
background-color: $scheme-main;
|
|
|
|
&.is-delete {
|
|
background-color: $light;
|
|
}
|
|
|
|
+ .is-delete {
|
|
border-color: #aaa;
|
|
border-width: 1px 1px 1px 0;
|
|
}
|
|
|
|
&.is-outlined {
|
|
background-color: $scheme-main;
|
|
}
|
|
&.is-black.is-outlined {
|
|
color: $black;
|
|
border-color: $black;
|
|
}
|
|
&.is-dark.is-outlined {
|
|
color: $dark;
|
|
border-color: $dark;
|
|
}
|
|
&.is-light.is-outlined {
|
|
color: $light;
|
|
border-color: $light;
|
|
}
|
|
&.is-white.is-outlined {
|
|
color: $white;
|
|
border-color: $white;
|
|
}
|
|
&.is-primary.is-outlined {
|
|
color: $primary;
|
|
border-color: $primary;
|
|
}
|
|
&.is-link.is-outlined {
|
|
color: $link;
|
|
border-color: $link;
|
|
}
|
|
&.is-info.is-outlined {
|
|
color: $info;
|
|
border-color: $info;
|
|
}
|
|
&.is-success.is-outlined {
|
|
color: $success;
|
|
border-color: $success;
|
|
}
|
|
&.is-warning.is-outlined {
|
|
color: $warning;
|
|
border-color: $warning;
|
|
}
|
|
&.is-danger.is-outlined {
|
|
color: $danger;
|
|
border-color: $danger;
|
|
}
|
|
}
|
|
|
|
.popover {
|
|
&:before {
|
|
border-bottom-color: $popover-background-color;
|
|
border-left-color: $popover-background-color;
|
|
}
|
|
}
|
|
|
|
// buttons
|
|
.button {
|
|
padding-left: 1.5em;
|
|
padding-right: 1.5em;
|
|
height: 2.5rem;
|
|
font-weight: $weight-semibold;
|
|
|
|
&.is-primary,
|
|
&.is-info,
|
|
&.is-link,
|
|
&.is-success,
|
|
&.is-warning,
|
|
&.is-danger {
|
|
&.is-outlined {
|
|
background-color: inherit;
|
|
}
|
|
}
|
|
|
|
&.is-primary:hover,
|
|
&.is-primary.is-hovered {
|
|
background-color: scale-color($primary, $lightness: -10%);
|
|
}
|
|
|
|
&.is-primary:active,
|
|
&.is-primary.is-active {
|
|
background-color: scale-color($primary, $lightness: -20%);
|
|
}
|
|
|
|
&.is-info:hover,
|
|
&.is-info.is-hovered {
|
|
background-color: scale-color($info, $lightness: -10%);
|
|
}
|
|
|
|
&.is-info:active,
|
|
&.is-info.is-active {
|
|
background-color: scale-color($info, $lightness: -20%);
|
|
}
|
|
|
|
&.is-link:hover,
|
|
&.is-link.is-hovered {
|
|
background-color: scale-color($link, $lightness: -10%);
|
|
}
|
|
|
|
&.is-link:active,
|
|
&.is-link.is-active {
|
|
background-color: scale-color($link, $lightness: -20%);
|
|
}
|
|
|
|
&.is-success:hover,
|
|
&.is-success.is-hovered {
|
|
background-color: scale-color($success, $lightness: -10%);
|
|
}
|
|
|
|
&.is-success:active,
|
|
&.is-success.is-active {
|
|
background-color: scale-color($success, $lightness: -20%);
|
|
}
|
|
|
|
&.is-warning:hover,
|
|
&.is-warning.is-hovered {
|
|
background-color: scale-color($warning, $lightness: -10%);
|
|
}
|
|
|
|
&.is-warning:active,
|
|
&.is-warning.is-active {
|
|
background-color: scale-color($warning, $lightness: -20%);
|
|
}
|
|
|
|
&.is-danger:hover,
|
|
&.is-danger.is-hovered {
|
|
background-color: scale-color($danger, $lightness: -10%);
|
|
}
|
|
|
|
&.is-danger:active,
|
|
&.is-danger.is-active {
|
|
background-color: scale-color($danger, $lightness: -20%);
|
|
}
|
|
|
|
&.is-reduced-mobile,
|
|
&.reduced-mobile {
|
|
@media screen and (max-width: 1087px) {
|
|
> span:nth-child(2) {
|
|
display: none;
|
|
}
|
|
}
|
|
@media screen and (max-width: 1087px) and (min-width: 769px) {
|
|
// simultaneously with left margin of Bulma
|
|
> .icon:first-child:not(:last-child) {
|
|
margin: 0;
|
|
}
|
|
}
|
|
@media screen and (max-width: 768px) {
|
|
// simultaneously with left margin of Bulma
|
|
.icon:first-child:not(:last-child) {
|
|
margin-right: calc(-0.375em - 1px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.box-link-shadow {
|
|
&:hover,
|
|
&:focus {
|
|
box-shadow: $box-link-hover-shadow;
|
|
}
|
|
&:active {
|
|
box-shadow: $box-link-active-shadow;
|
|
}
|
|
}
|
|
|
|
.notifications .dropdown-menu {
|
|
border: 1px solid $border;
|
|
|
|
&:before {
|
|
border: 0.4rem solid transparent;
|
|
border-bottom-color: $border;
|
|
border-left-color: $border;
|
|
}
|
|
}
|
|
|
|
@import "~@fortawesome/fontawesome-free/scss/fontawesome";
|
|
$fa-font-path: "~@fortawesome/fontawesome-free/webfonts";
|
|
@import "~@fortawesome/fontawesome-free/scss/solid";
|
|
@import "~@fortawesome/fontawesome-free/scss/regular";
|
|
@import "~@fortawesome/fontawesome-free/scss/brands";
|
|
|
|
@import "~react-diff-view/style/index";
|
|
|
|
// NEW STYLES
|
|
|
|
//typography
|
|
.has-border-white {
|
|
border-color: $white !important;
|
|
}
|
|
|
|
.has-border-success {
|
|
border-color: $success !important;
|
|
}
|
|
|
|
.has-border-info {
|
|
border-color: $info !important;
|
|
}
|
|
|
|
.has-border-danger {
|
|
border-color: $danger !important;
|
|
}
|
|
|
|
.has-border-warning {
|
|
border-color: $warning !important;
|
|
}
|
|
|
|
.has-border-primary {
|
|
border-color: $primary !important;
|
|
}
|
|
|
|
ul.is-separated {
|
|
> li:after {
|
|
content: ",\2800";
|
|
}
|
|
> li:last-child:after {
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
// card columns for repo and plugins overview
|
|
.card-columns {
|
|
.column {
|
|
height: 160px;
|
|
margin-bottom: 1.5rem;
|
|
|
|
.overlay-column {
|
|
position: absolute;
|
|
height: calc(160px - 1.5rem);
|
|
}
|
|
}
|
|
|
|
.column.is-half {
|
|
width: calc(50% - 0.75rem);
|
|
|
|
@media screen and (max-width: 768px) {
|
|
width: 100%;
|
|
}
|
|
|
|
&:nth-child(odd) {
|
|
margin-right: 1.5rem;
|
|
|
|
@media screen and (max-width: 768px) {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.overlay-column {
|
|
width: calc(50% - 3rem);
|
|
|
|
@media screen and (max-width: 768px) {
|
|
width: calc(100% - 1.5rem);
|
|
}
|
|
}
|
|
}
|
|
|
|
.column.is-full .overlay-column {
|
|
width: calc(100% - 1.5rem);
|
|
}
|
|
}
|
|
.content.is-plugin-page {
|
|
.card-columns {
|
|
.column.is-half .overlay-column {
|
|
width: calc(37.5% - 1.5rem);
|
|
}
|
|
|
|
.column.is-full .overlay-column {
|
|
width: calc(75% - 1.5rem);
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.column.is-half .overlay-column,
|
|
.column.is-full .overlay-column {
|
|
width: calc(100% - 1.5rem);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.text-box {
|
|
width: calc(50% - 0.75rem);
|
|
.shorten-text {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
// tables
|
|
.table {
|
|
width: 100%;
|
|
td,
|
|
th {
|
|
border-color: $white-ter;
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
|
|
// card tables
|
|
.card-table {
|
|
border-collapse: separate;
|
|
border-spacing: 0 5px;
|
|
|
|
tr {
|
|
a {
|
|
color: $grey-darker;
|
|
}
|
|
&.border-is-green td:first-child {
|
|
border-left-color: $green;
|
|
}
|
|
&.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: $white-ter;
|
|
|
|
&.is-darker {
|
|
background-color: #e1e1e1;
|
|
}
|
|
// Explicitly "remove" styles from td element to use it as an empty table column header, which is necessary for
|
|
// a11y because an empty th element is not allowed.
|
|
&.has-no-style {
|
|
background-color: transparent;
|
|
&.is-darker {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
a {
|
|
color: $blue;
|
|
}
|
|
}
|
|
}
|
|
td {
|
|
padding: 1em 1.25em;
|
|
background-color: $white-bis;
|
|
border-bottom: 1px solid $white-ter;
|
|
border-left-color: $grey;
|
|
|
|
&:first-child {
|
|
border-left: 3px solid;
|
|
}
|
|
&.is-darker {
|
|
background-color: $white-ter;
|
|
}
|
|
// Explicitly "remove" styles from td element to use it as an empty table column header, which is necessary for
|
|
// a11y because an empty th element is not allowed.
|
|
&.has-no-style {
|
|
padding: 0;
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
}
|
|
&.is-hoverable tbody tr:not(.is-selected):hover {
|
|
background-color: $white-ter;
|
|
}
|
|
thead th {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
// panels
|
|
.panel {
|
|
border: 1px solid $border;
|
|
border-radius: 0.25rem;
|
|
|
|
.panel-heading {
|
|
border: none;
|
|
border-bottom: 1px solid $border;
|
|
border-radius: 0.25rem 0.25rem 0 0;
|
|
|
|
> .field {
|
|
margin-bottom: 0; // replace selector margin
|
|
}
|
|
}
|
|
|
|
.panel-block {
|
|
display: block;
|
|
border: none;
|
|
}
|
|
|
|
.panel-footer {
|
|
background-color: $panel-heading-background-color;
|
|
color: $panel-heading-color;
|
|
font-size: 1.25em;
|
|
font-weight: 300;
|
|
line-height: 1.25;
|
|
padding: 0.5em 0.75em;
|
|
border: none;
|
|
border-top: 1px solid $border;
|
|
border-radius: 0 0 0.25rem 0.25rem;
|
|
}
|
|
}
|
|
|
|
// forms
|
|
form .field:not(.is-grouped) {
|
|
margin-bottom: 1rem;
|
|
}
|
|
.input,
|
|
.select select,
|
|
.textarea,
|
|
.file-name {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.select,
|
|
.select:hover {
|
|
&:not(.is-multiple):not(.is-loading) {
|
|
&.disabled::after {
|
|
border-color: #7a7a7a;
|
|
}
|
|
}
|
|
}
|
|
|
|
.help {
|
|
position: absolute;
|
|
}
|
|
|
|
// label with help-icon compensation
|
|
.label-icon-spacing {
|
|
margin-top: 30px;
|
|
|
|
@media screen and (max-width: 768px) {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
// pagination
|
|
.pagination-next,
|
|
.pagination-link,
|
|
.pagination-ellipsis {
|
|
padding-left: 1.5em;
|
|
padding-right: 1.5em;
|
|
height: 2.8rem;
|
|
min-width: 5rem;
|
|
}
|
|
.pagination-previous,
|
|
.pagination-next {
|
|
height: 2.8rem;
|
|
min-width: 6.75em;
|
|
}
|
|
.pagination-previous[disabled],
|
|
.pagination-next[disabled] {
|
|
background-color: #ededed;
|
|
color: #bcbcbc;
|
|
}
|
|
.pagination-link.is-current {
|
|
opacity: 1;
|
|
}
|
|
|
|
.has-scm-background {
|
|
background-image: url(images/scmManagerHero.jpg) !important;
|
|
background-size: cover;
|
|
background-position: top center;
|
|
background-color: #002e4b;
|
|
}
|
|
|
|
// hero
|
|
.hero.is-dark {
|
|
background-color: #002e4b;
|
|
background-image: url(images/scmManagerHero.jpg);
|
|
background-size: cover;
|
|
background-position: top center;
|
|
|
|
.tabs.is-boxed li.is-active a,
|
|
.tabs.is-boxed li.is-active a:hover,
|
|
.tabs.is-toggle li.is-active a,
|
|
.tabs.is-toggle li.is-active a:hover {
|
|
background-color: #28b1e8;
|
|
border-color: #28b1e8;
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
// aside
|
|
.aside-background {
|
|
bottom: 0;
|
|
left: 50%;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
background-color: $white-ter;
|
|
}
|
|
|
|
// menu
|
|
.menu {
|
|
div {
|
|
height: 100%;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
.menu-label {
|
|
display: flex;
|
|
height: 3.2rem;
|
|
align-items: center;
|
|
font-size: 1em;
|
|
font-weight: 600;
|
|
background-color: $blue;
|
|
border-radius: 5px 5px 0 0;
|
|
padding: 0.5rem 1rem;
|
|
text-transform: none;
|
|
|
|
&:last-child,
|
|
&:not(:last-child) {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
.menu-list {
|
|
a {
|
|
padding: 1rem;
|
|
|
|
&.is-active {
|
|
color: $link;
|
|
background-color: $scheme-main;
|
|
}
|
|
}
|
|
|
|
> li {
|
|
ul {
|
|
margin: 0;
|
|
border-top: 1px solid $white-ter;
|
|
|
|
li {
|
|
border-right: none;
|
|
}
|
|
li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
> a.is-active:before {
|
|
position: relative;
|
|
content: " ";
|
|
background: $blue;
|
|
height: 53px;
|
|
width: 2px;
|
|
display: block;
|
|
left: -17px;
|
|
float: left;
|
|
top: -16px;
|
|
}
|
|
|
|
border-radius: 0;
|
|
border-top: 1px solid $white-ter;
|
|
border-left: 1px solid $white-ter;
|
|
border-right: 1px solid $white-ter;
|
|
}
|
|
> li:first-child {
|
|
border-top: none;
|
|
}
|
|
li:last-child {
|
|
border-bottom: 1px solid $white-ter;
|
|
}
|
|
div {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.sub-menu li {
|
|
line-height: 1;
|
|
|
|
a {
|
|
padding: 0.75rem 1rem;
|
|
}
|
|
|
|
a:before {
|
|
font-family: "Font Awesome 5 Free"; /* NOSONAR */
|
|
font-weight: 900;
|
|
-webkit-font-smoothing: antialiased;
|
|
display: inline-block;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
text-rendering: auto;
|
|
line-height: 1;
|
|
content: "\f105";
|
|
padding-right: 5px;
|
|
}
|
|
|
|
i {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// modal
|
|
.modal-card {
|
|
border-radius: 6px;
|
|
|
|
.modal-card-foot {
|
|
justify-content: flex-end; // pulled-right
|
|
}
|
|
}
|
|
|
|
.is-overflow-visible {
|
|
overflow: visible;
|
|
}
|
|
|
|
.is-overflow-auto {
|
|
overflow: auto;
|
|
}
|
|
|
|
.is-border-bottom-radius-inherit {
|
|
border-bottom-left-radius: inherit;
|
|
border-bottom-right-radius: inherit;
|
|
}
|
|
|
|
.is-border-bottom-radius-unset {
|
|
border-bottom-left-radius: unset;
|
|
border-bottom-right-radius: unset;
|
|
}
|
|
|
|
// radio
|
|
//overwrite bulma's default margin
|
|
.radio + .radio {
|
|
margin-left: 0;
|
|
}
|
|
|
|
// NOTE: use .is-clickable instead!
|
|
.has-cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
// fix tooltip bug in firefox
|
|
// for bulma-tooltip v3.0.0
|
|
[data-tooltip]:not(.is-disabled).has-tooltip-right::after,
|
|
[data-tooltip]:not(.is-loading).has-tooltip-right::after,
|
|
[data-tooltip]:not([disabled]).has-tooltip-right::after,
|
|
[data-tooltip]:not(.is-disabled).has-tooltip-left::after,
|
|
[data-tooltip]:not(.is-loading).has-tooltip-left::after,
|
|
[data-tooltip]:not([disabled]).has-tooltip-left::after {
|
|
height: 12px;
|
|
}
|
|
|
|
.diff-gutter-conflict {
|
|
background: $warning-50;
|
|
}
|
|
|
|
.diff-code-conflict {
|
|
background: $warning-25;
|
|
}
|
|
|
|
.small-loading-spinner {
|
|
position: relative;
|
|
pointer-events: none;
|
|
&:after {
|
|
@include loader;
|
|
}
|
|
}
|
|
|
|
.sg-sub-section + .sg-sub-section {
|
|
margin-top: 2.5rem;
|
|
}
|
|
|
|
.has-text-inherit {
|
|
color: inherit !important;
|
|
}
|
|
|
|
.has-text-default {
|
|
color: $text !important;
|
|
}
|
|
|
|
.autocomplete-entry__option--is-focused {
|
|
background-color: $link !important;
|
|
color: $link-invert !important;
|
|
}
|
|
|
|
.autocomplete-entry__option--is-selected {
|
|
// TODO better use link-light or something
|
|
background-color: $blue-light !important;
|
|
color: $link-invert !important;
|
|
}
|
|
|
|
.autocomplete-entry__single-value {
|
|
color: $text !important;
|
|
}
|
|
|
|
.autocomplete-entry > div {
|
|
color: $text-strong !important;
|
|
}
|
|
|
|
.autocomplete-entry__menu {
|
|
background-color: $background !important;
|
|
}
|
|
|
|
.autocomplete-entry__control {
|
|
background-color: $scheme-main !important;
|
|
border-color: $input-border-color !important;
|
|
}
|
|
|
|
.autocomplete-entry__control:hover {
|
|
border-color: $input-hover-border-color !important;
|
|
}
|
|
|
|
.autocomplete-entry__control--is-focused {
|
|
border-color: $input-focus-border-color !important;
|
|
box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color !important;
|
|
}
|
|
|
|
.autocomplete-entry__control--is-focused:hover {
|
|
border-color: $input-focus-border-color !important;
|
|
box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color !important;
|
|
}
|
|
|
|
.autocomplete-entry__input {
|
|
color: $text-strong !important;
|
|
}
|
|
|
|
.breadcrumb {
|
|
& .prefix-button {
|
|
border-right: 1px solid lightgray;
|
|
}
|
|
|
|
& li:not(:last-child)::after {
|
|
color: $breadcrumb-item-separator-color;
|
|
content: "\0002f";
|
|
}
|
|
}
|