This commit is contained in:
Philippe Torrel
2026-08-21 11:02:52 +02:00
parent a08de03d4d
commit e2da42e181
140 changed files with 16542 additions and 8 deletions

View File

@@ -12176,6 +12176,17 @@ textarea.form-control-lg {
font-weight: 900;
src: url("../fonts/source-sans-3-v19-latin/source-sans-3-v19-latin-900italic.woff2") format("woff2");
}
.sr-only {
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
/* Color Theme Swatches in Hex */
*,
html {
@@ -12923,12 +12934,26 @@ figure.logo-main figcaption {
list-style: none;
}
.menu-main ul ul {
display: none;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.menu-main ul > li:hover ul,
.menu-main ul > li:focus ul,
.menu-main ul > li:focus-within ul {
display: block;
width: inherit !important;
height: inherit !important;
padding: inherit !important;
margin: inherit !important;
overflow: inherit !important;
clip: inherit !important;
white-space: inherit !important;
border: inherit !important;
}
.menu-main ul.list {
display: flex;

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
.sr-only {
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}

View File

@@ -8,13 +8,29 @@
}
ul ul {
display: none; // TODO: change to not visible
// display: none; // TODO: change to not visible
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
ul > li:hover,
ul > li:focus,
ul > li:focus-within {
ul {
display: block;
width: inherit !important;
height: inherit !important;
padding: inherit !important;
margin: inherit !important;
overflow: inherit !important;
clip: inherit !important;
white-space: inherit !important;
border: inherit !important;
}
}