diff options
author | RaindropsSys <contact@minteck.org> | 2023-04-20 16:20:07 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-04-20 16:20:07 +0200 |
commit | b4bcb0912c5fe1c7f00c7ac76e5b67620781d3cc (patch) | |
tree | 027238ccdf43719ae4bbb65eedeaf9823fff6471 /includes/components/header.inc | |
parent | b484fc41a94e18f679f2494d598ac3d0ae72e3f8 (diff) | |
download | pluralconnect-b4bcb0912c5fe1c7f00c7ac76e5b67620781d3cc.tar.gz pluralconnect-b4bcb0912c5fe1c7f00c7ac76e5b67620781d3cc.tar.bz2 pluralconnect-b4bcb0912c5fe1c7f00c7ac76e5b67620781d3cc.zip |
Updated 12 files and added 3 files (automated)
Diffstat (limited to 'includes/components/header.inc')
-rw-r--r-- | includes/components/header.inc | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/includes/components/header.inc b/includes/components/header.inc index c87e5a5..34b30e6 100644 --- a/includes/components/header.inc +++ b/includes/components/header.inc @@ -85,6 +85,10 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; width: calc(100% - 300px); } + .modal { + left: 150px; + } + nav { display: none !important; } @@ -124,8 +128,8 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; right: 0; height: 48px; background: rgba(0, 0, 0, .75); - backdrop-filter: blur(10px); - -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(30px); + -webkit-backdrop-filter: blur(30px); border-top: 1px solid rgba(255, 255, 255, .25); z-index: 999999; } @@ -136,6 +140,10 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; width: calc(100% - 250px) !important; } + .modal { + left: 125px !important; + } + #title-bar { left: 250px !important; } @@ -159,6 +167,10 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; width: calc(100% - 200px) !important; } + .modal { + left: 100px !important; + } + #title-bar { left: 200px !important; } @@ -178,6 +190,10 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; width: 100% !important; } + .modal { + left: 0 !important; + } + #title-bar { left: 0 !important; } @@ -238,4 +254,6 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; display: none; } </style> -<?php } $GLOBALS["ColdHazePerformance"]["header"] = (microtime(true) - $start) * 1000; $start = microtime(true); ?> +<?php } +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/components/explicit.php"; +$GLOBALS["ColdHazePerformance"]["header"] = (microtime(true) - $start) * 1000; $start = microtime(true); ?> |