vandoeuvre: somes fixes (#56129)
gitea-wip/publik-base-theme/pipeline/head There was a failure building this commit Details

This commit is contained in:
Lauréline Guérin 2021-08-12 15:10:44 +02:00
parent 3e72a71bdb
commit a041552e07
No known key found for this signature in database
GPG Key ID: 1FAB9B9B4F93D473
3 changed files with 59 additions and 2 deletions

View File

@ -43,7 +43,7 @@
@mixin underlined-with-triangle {
@include triangle(left, 0.8rem 0.6rem);
&::before {
::before {
content: "";
display: block;
position: absolute;

View File

@ -129,6 +129,9 @@
li a {
color: white;
padding: 0.75em 30px;
&::before {
content: none;
}
}
}
@ -154,9 +157,13 @@
.gru-content div.cell {
box-shadow: 2px 2px #CFCFCF;
.description, .intro {
color: $wcs-step-color;
}
}
%button {
box-shadow: none;
padding: 5px 10px;
&:hover, &:focus {
border-color: #0049DB;
}
@ -189,3 +196,50 @@ h3 {
}
}
}
.tracking-code-input-cell {
input, button {
width: 100%;
}
}
div#rub_service div.category ul,
div#services > ul > li > ul,
div#account-management ul,
div.links-list ul,
div.menucell ul,
div.wcsformcell,
div.categoriescell ul,
div.wcscurrentdraftscell ul,
div.wcscurrentformscell ul {
& > li > a {
padding-left: 2em;
position: relative;
&::before {
content: "\f061"; /* fa-arrow-right */
font-family: FontAwesome;
color: $link-color;
font-size: 0.8em;
display: inline-block;
position: absolute;
top: 1.6em;
left: 1em;
width: 1em;
}
}
}
.pk-transparent {
box-shadow: none !important;
h2:first-child, ul > li {
background: transparent !important;
border-color: transparent !important;
& > a::before {
content: none !important;
}
}
}
.empty-cell {
display: none;
}

View File

@ -1,7 +1,7 @@
$primary-color: #26D07C;
$font-color: #202020;
$link-color: #0049DB;
$link-color: #1F69FF;
$font-family: 'Noto Sans';
$title-color: #202020;
$title-weight: bold;
@ -34,6 +34,9 @@ $wcs-step-border-bottom: $title-border-bottom;
$wcs-step-current-border-bottom: 1px solid $wcs-step-current-background;
$cell-title-cover-border: false;
$cell-entry-hover-background: none;
$cell-entry-color: $font-color;
$cell-entry-hover-color: $link-color;
$back-top-icon-size: 2em;
$back-top-display: block;