/*
  Aquarius - Habillage des blocs sous forme de boites
  CBE - V1.0    - 04.09.2019
  CBE - V1.1.0  - 21.11.2019
  CBE - V1.1.1  - 14.12.2019
  CBE - V1.1.2  - 22.01.2020
  CBE - V1.1.4  - 17.09.2020 - ajout de fond rouge pour mettre en avant un bloc
  CBE - V1.1.5  - 27.19.2020 - ajout .dropbutton-widget --> display: inline-block pour affichage correcte du bouton d'actions dans la fiche user.
  CBE - V1.1.6  - 30.12.2024 - transfert des classes .button vers fichier button.css (surcharge Claro)
*/

.square-block {
    display: block;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 0px 2px 2px #DDD;
    padding: 0.116em 1.1600928074246%;
    margin: 10px 0.011342819711552em;
    flex-basis: auto;
    flex-grow: 1;
    -webkit-flex-basis: auto;
    -webkit-flex-grow: 1;
}

.red-block {
	display: block;
    overflow: hidden;
    border: none;
	background-color: red;
	color: white;
	padding: 0.5em;
}

li.square-block {   /* Supprime les puces pour les listes au format square-block */
	background: none !important;
}

.pager li {  /* pour liens de pagination */
  background-image: none !important;
  padding-left: 0 !important;
}

.scrolling { /* Autorise un scroll en cas de dépassement du contenu */
  overflow: auto;
}

.bloc-tag {           /* blocs de signalement d'annomalie membre, en haut des pages */
	float: right;	      /* flotant pour avoir les blocs sur une ligne */
	text-align: right;
  margin: 0 0.2em;
}


.tag, .tag_ok, .tag_warning, .tag_error {  
    display: inline-block;
    padding: 0.2em 0.4em;
    margin: 0.1em 0;
    text-align: center;
    color: #000000;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
}
.tag { background-color: #00b2ff;}
.tag_ok { background-color: lightgreen; }
.tag_warning { background-color: orange;}
.tag_error {background-color: red;}

.tag_efface {  /* Le tag disparait au bout d'un certain temps */
  animation:efface 1s 1;
  -webkit-animation:efface 1s 1; 
  animation-fill-mode: forwards;
  animation-delay:5s;
  -webkit-animation-delay:5s; /* Safari et Chrome */
  -webkit-animation-fill-mode: forwards;
} 
@-webkit-keyframes efface {
  from {opacity: 1; height: 1em;}
  to {opacity: 0; height: 0; -webkit-transform: translateY(-1em);}
}

.dropbutton-widget {
  display: inline-block !important;
}

.text-to-copy .view-content {
    padding: 0.5em;
    border-style: solid;
    border-color: rgb(63, 63, 63);
    border-radius: 4px;
    background-color: rgb(63, 63, 63);
    color: rgb(239, 239, 143);
    font: normal 10pt Consolas, Monaco, monospace;
    line-height: 1.5em;
    white-space: nowrap;
    overflow: scroll;
}

.text-to-copy .view-content h3 {
    padding: 0;
    margin: 0;
    line-height: 3em
}

.origine {
	float: right;
	font-size: 0.8em;
}

