Fixed z-index property in dropdown menu

This commit is contained in:
pmoreno.rodriguez 2025-01-24 17:55:46 +01:00
parent 98f512eb3d
commit f7da3e7ec8
4 changed files with 7 additions and 3 deletions

View file

@ -3144,6 +3144,7 @@ table.alt tfoot {
line-height: normal;
background-color: rgb(230, 230, 230);
box-shadow: 0 0.05rem 1rem rgba(0, 0, 0, 0.15) !important;
z-index: 10002;
}
#header .dropdown li ul li a {
font-family: "Raleway", Helvetica, sans-serif;

File diff suppressed because one or more lines are too long

View file

@ -33,7 +33,7 @@
line-height: normal;
background-color: _palette(bg-dropdown);
box-shadow: 0 0.05rem 1rem _palette(border-dropdown) !important;
z-index: _misc(z-index-base) + 2;
li {
a {

View file

@ -1,16 +1,19 @@
// html-grid.scss v1.0 | @ajlkn | MIT licensed */
@use 'sass:math';
// Mixins.
/// Initializes the current element as an HTML grid.
/// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).
/// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list).
@mixin html-grid($gutters: 1.5em, $suffix: '') {
// Initialize.
$cols: 12;
$multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;
$unit: calc(100% / $cols);
$unit: math.div(100%, $cols);
// Suffixes.
$suffixes: null;