Acceptation des noms longs dans les pastilles

This commit is contained in:
Nicolas MORIN
2022-01-17 23:01:53 +01:00
parent e55fd03a5d
commit f3fedca887
5 changed files with 35 additions and 27 deletions
+11 -1
View File
@@ -1,8 +1,18 @@
/* Style concernant la confirmation de suppression d'un alias virtuel */
.confirmation-suppression {
display: none;
color: #e23026;
color: #fff;
text-align: center;
text-decoration: none;
background-color: #dc3545;
}
.confirmation-suppression:hover {
color: #fff;
background-color: #bb2d3b;
border-color: #b02a37;
}
.input-checkbox-supprimer-valeur:checked ~ .confirmation-suppression {
display: inline;
}
+2 -6
View File
@@ -14,15 +14,11 @@ overflow: hidden;
.champ-interrupteur label {
background-color: #e4e4e4;
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
line-height: 1;
text-align: center;
margin-right: -1px;
border: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
transition: all 0.1s ease-in-out;
width: 60px;
width: 38px;
height: 34px;
}
.champ-interrupteur label:hover {
+3 -1
View File
@@ -56,7 +56,9 @@ body {
}
.titre-pastille {
width: 100%;
width: calc(100% - 122px);
text-align: center;
padding-top: 4px;
padding-left: 10px;
padding-right: 10px;
}