saint-laurent-du-var: add "or" in login & registration pages (#44439)

This commit is contained in:
Thomas Jund 2020-06-25 12:26:32 +02:00
parent 80d25fa1d8
commit fbd135637b
2 changed files with 17 additions and 3 deletions

View File

@ -168,8 +168,13 @@ body.has-picture nav::after {
}
}
// cells
div#services > ul > li,
.gru-content div.cell {
border: 1px solid #ccc;
}
// Cells in sidebar
// Cells in sidebars & authentic pages
#sidebar, #gauche, .authentic-page .gru-content {
// Cells titles
div#tracking-code h3,
@ -184,7 +189,7 @@ body.has-picture nav::after {
div.cell,
div.block,
.a2-block {
background-color: transparent;
background-color: $sldv-main-color;
border: none;
margin-bottom: 1.5rem;
margin-top: 1.5rem;
@ -205,7 +210,15 @@ body.has-picture nav::after {
}
}
// login / connect "OU"
@if $cell-border == none {
#registration-blocks .a2-block:not(:first-child),
#login-page .block:not(:first-child) {
&::after {
background-color: inherit;
}
}
}
// Don't overlaid link text & key icon
li.required-authentication a {

View File

@ -37,6 +37,7 @@ $title-transform: uppercase;
$cell-border-radius: 3px;
$cell-image-padding: 0.7rem;
$cell-entry-hover-background: $sldv-links-background-color;
$cell-border: none;
$wcs-steps-spacing: 0.5rem;
$wcs-step-current-color: $dark-desaturated-blue;