[assets] Remove redundant class already provided by bulma:

Replace all classes `hidden` with `is-hidden` in templates, CSS and JS.
This commit is contained in:
Fabien Basmaison
2021-04-07 17:31:00 +02:00
parent f2a2b410a1
commit f77088b964
23 changed files with 48 additions and 48 deletions

View File

@ -25,16 +25,6 @@ html {
min-width: 75% !important;
}
/* --- "disabled" for non-buttons --- */
.is-disabled {
background-color: #dbdbdb;
border-color: #dbdbdb;
box-shadow: none;
color: #7a7a7a;
opacity: 0.5;
cursor: not-allowed;
}
/* --- SHELVING --- */
/** @todo Replace icons with SVG symbols.
@ -57,10 +47,6 @@ html {
display: none;
}
.hidden {
display: none !important;
}
.hidden.transition-y,
.hidden.transition-x {
display: block !important;
@ -252,3 +238,17 @@ html {
animation-duration: 1.5s;
}
}
/* States
******************************************************************************/
/* "disabled" for non-buttons */
.is-disabled {
background-color: #dbdbdb;
border-color: #dbdbdb;
box-shadow: none;
color: #7a7a7a;
opacity: 0.5;
cursor: not-allowed;
}