mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 11:58:53 +00:00
Fixed z-index property in dropdown menu
This commit is contained in:
parent
98f512eb3d
commit
f7da3e7ec8
4 changed files with 7 additions and 3 deletions
|
@ -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;
|
||||
|
|
2
assets/css/main.min.css
vendored
2
assets/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue