Compare commits

...

5 Commits

Author SHA1 Message Date
Frédéric Péters 312dfd83a9 strasbourg-2018: duplicate disclose dataview style (#35431)
gitea-wip/publik-base-theme/pipeline/head There was a failure building this commit Details
gitea/publik-base-theme/pipeline/head Something is wrong with the build of this commit Details
2019-08-20 10:42:45 +02:00
Frédéric Péters 9d8588d1f1 toulouse: reduce top space for neutral authentic pages on mobile 2019-08-10 13:08:19 +02:00
Frédéric Péters b13a5509cd toulouse: style FC login registration template (#35348) 2019-08-10 13:08:19 +02:00
Christophe Siraut 96990967a9 entrouvert: do not underline carrousel arrows (#35241) 2019-08-10 13:08:19 +02:00
Christophe Siraut 56e2b19afe entrouvert: mask carrousel bullet (#35240) 2019-08-10 13:08:19 +02:00
4 changed files with 65 additions and 7 deletions

View File

@ -165,7 +165,7 @@ div.carrousel-content input + div div.carrousel-item div.carrousel-item-content
line-height: 1.1em;
}
div.carrousel-content a:hover {
div.carrousel-content a:hover, div.carrousel-references-content a:hover {
text-decoration: none;
}

View File

@ -33,4 +33,4 @@ $nav-mobile-bottom-bar-item-selected-color: white;
$nav-mobile-bottom-bar-item-selected-background: $primary-color;
$carrousel-height: 220px;
$carrousel-text-position: bottom-left;
$carrousel-navigation-bullet-color: #ccc;
$carrousel-navigation-bullet-color: #fff;

View File

@ -130,10 +130,6 @@ div#receipt-intro {
display: block;
}
div.dataview {
display: none;
}
div.qommon-map {
height: 280px;
}
@ -1216,3 +1212,44 @@ footer {
.template-evaluation .customSelectContain {
display: none;
}
div.section.foldable {
// duplicated from _wcs.scss that cannot be imported due to local
// custom widgets
margin-bottom: 1rem;
> h2:first-child {
&::after {
font-family: FontAwesome;
content: "\f106"; // angle-up
position: absolute;
right: 1em;
}
cursor: pointer;
&:focus span.disclose-message,
&:hover span.disclose-message {
text-decoration: underline;
}
}
span.disclose-message {
padding-left: 1ex;
font-size: 1rem;
display: none;
}
&.folded {
span.disclose-message {
display: inline-block;
@media screen and (max-width: $mobile-limit) {
// never displayed on mobile as the small width
// makes clear the relation between title and
// open/close bracket.
display: none;
}
}
div {
display: none;
}
> h2:first-child::after {
content: "\f107"; // angle-down
}
}
}

View File

@ -1671,9 +1671,18 @@ $list-illus:
div#frontend-login-fc,
div#frontend-registration-fc {
div#fc-button-wrapper, div#fc-explanation-text {
div#fc-button-wrapper, div#fc-explanation-text, div#fc-registration-user-info {
text-align: left;
padding-top: 0;
p {
margin-left: 0;
}
}
div#fc-registration-user-info {
p.certified {
margin-left: 2rem;
}
}
div#fc-button {
@ -1688,6 +1697,12 @@ div#frontend-registration-fc {
position: static;
}
}
div#fc-registration-user-info + div#fc-button-wrapper {
div#fc-button {
position: static;
}
}
}
div.list-of-forms span.form-number {
@ -1733,4 +1748,10 @@ div#rub_service div#info {
footer {
margin-left: 0;
}
@media screen and (max-width: $mobile-limit) {
div#main-content-wrapper,
#content #registration-title {
padding-top: 1rem;
}
}
}