v2.5.0 - fix bouton...
This commit is contained in:
parent
ada2cf8c75
commit
88fef6bfaa
@ -1,7 +1,7 @@
|
||||
<paquet
|
||||
prefix="baz_april"
|
||||
categorie="squelette"
|
||||
version="2.4.10"
|
||||
version="2.5.0"
|
||||
schema="1.0.1"
|
||||
etat="stable"
|
||||
compatibilite="[3.2.0;4.0.*]"
|
||||
|
@ -26,7 +26,7 @@ $(function() {
|
||||
// .menu-entree.sousinitiatives > ul > li > a
|
||||
$('.page_wrapper').append('<div class="menucache"></div>');
|
||||
$('.menu-items__lien.sousinitiatives').on('click', function(){
|
||||
$('.menucache').addClass('cache');
|
||||
$('.menucache').toggleClass('cache');
|
||||
$(this).toggleClass('actif');
|
||||
$(this).siblings('ul').toggleClass('ouvert');
|
||||
$(this).parent().siblings('.sousinitiatives').find('ul.ouvert').removeClass('ouvert');
|
||||
|
@ -31,7 +31,8 @@
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
ul.spip {
|
||||
ul.spip, ol.spip {
|
||||
margin-left: 1rem;
|
||||
li {
|
||||
margin:0 0 0.5em;
|
||||
}
|
||||
|
@ -63,3 +63,38 @@
|
||||
.col .next {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* spip4 */
|
||||
.pagination, .aside .nav .pagination {
|
||||
margin: 2em 0;
|
||||
.pagination-items {
|
||||
display:flex;
|
||||
justify-content:center;
|
||||
flex-wrap:wrap;
|
||||
list-style:none;
|
||||
}
|
||||
.pagination-item {
|
||||
padding:0;
|
||||
background:none;
|
||||
margin:0 0.15em 0.5em;
|
||||
}
|
||||
.pagination-items a, .pagination-items span.on {
|
||||
display:inline-block;
|
||||
text-decoration:none;
|
||||
border:none;
|
||||
padding:0.5em;
|
||||
@include vendor-prefix(border-radius,0.25em);
|
||||
font-size:1em;
|
||||
font-weight:700;
|
||||
line-height:1.5;
|
||||
color:$couleur-lien;
|
||||
}
|
||||
.pagination-items a:hover, .pagination-items span.on {
|
||||
background:$grayLighter !important;
|
||||
color:$couleur-lien-hover;
|
||||
text-decoration:none;
|
||||
}
|
||||
.tbc {
|
||||
line-height: 2.4;
|
||||
}
|
||||
}
|
||||
|
@ -20,3 +20,30 @@ a {
|
||||
font-size:140%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// modele bouton
|
||||
//
|
||||
.btn {
|
||||
@include bouton();
|
||||
&.right {
|
||||
float:right;
|
||||
margin-left:$spacer;
|
||||
}
|
||||
&.left {
|
||||
float:left;
|
||||
margin-right:$spacer;
|
||||
}
|
||||
&.center {
|
||||
display: block;
|
||||
clear:both;
|
||||
width: 300px;
|
||||
margin:0 auto;
|
||||
padding:1.5rem;
|
||||
}
|
||||
&.bold {
|
||||
border-width:2px;
|
||||
font-weight:700;
|
||||
}
|
||||
}
|
||||
|
@ -71,7 +71,7 @@
|
||||
// ----------------------------------------
|
||||
.btn-nav {
|
||||
position:absolute;
|
||||
z-index:2;
|
||||
z-index:10;
|
||||
right:$spacer;
|
||||
top:0;
|
||||
padding:0.4rem;
|
||||
@ -109,6 +109,7 @@
|
||||
left:-100%;
|
||||
padding:$spacer/2 $spacer;
|
||||
text-align:center;
|
||||
z-index:10;
|
||||
&.ouvert{
|
||||
left:0;
|
||||
}
|
||||
|
@ -1,18 +1,5 @@
|
||||
|
||||
//
|
||||
// modele bouton
|
||||
//
|
||||
.btn {
|
||||
@include bouton();
|
||||
&.right {
|
||||
float:right;
|
||||
margin-left:$spacer;
|
||||
}
|
||||
&.left {
|
||||
float:left;
|
||||
margin-right:$spacer;
|
||||
}
|
||||
}
|
||||
|
||||
// pour usage du btn, mais utile ailleurs eventuellement
|
||||
.taille70 {
|
||||
font-size:70%;
|
||||
@ -160,8 +147,17 @@ a.back-to-top {
|
||||
flex-wrap:wrap;
|
||||
justify-content:space-between;
|
||||
}
|
||||
.flex2 > * {
|
||||
width:100%;
|
||||
@include media($bp-small-up) {
|
||||
max-width:calc(50% - 1rem);
|
||||
}
|
||||
}
|
||||
.flex3 > * {
|
||||
max-width:30%;
|
||||
width:100%;
|
||||
@include media($bp-small-up) {
|
||||
max-width:calc(33.33% - 1rem);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -116,7 +116,7 @@
|
||||
background:$sombre;
|
||||
color:$clair !important;
|
||||
font-weight:700;
|
||||
padding: ($spacer/2) $spacer;
|
||||
padding: ($spacer/2.5) ($spacer/1.5);
|
||||
|
||||
&:hover {
|
||||
background-color: $survol;
|
||||
|
Loading…
Reference in New Issue
Block a user