mirror of
https://github.com/msberends/AMR.git
synced 2024-12-27 10:06:12 +01:00
fix website nav header (no-check)
This commit is contained in:
parent
35f095cceb
commit
04df6dfcf5
@ -29,7 +29,17 @@
|
|||||||
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
|
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
|
||||||
# ==================================================================== #
|
# ==================================================================== #
|
||||||
|
|
||||||
echo "Running pre-commit hook..."
|
#!/bin/bash
|
||||||
|
|
||||||
|
echo "Running commit-msg hook..."
|
||||||
|
|
||||||
|
# check if the commit message contains '(no-check)' or '(no-verify)'
|
||||||
|
COMMIT_MSG=$(cat "$1")
|
||||||
|
if [[ "$COMMIT_MSG" =~ \(no-check\)|\(no-verify\) ]]; then
|
||||||
|
echo "Commit check bypassed by commit message."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
if command -v Rscript > /dev/null; then
|
if command -v Rscript > /dev/null; then
|
@ -36,11 +36,10 @@
|
|||||||
--amr-green-dark-rgb: 18, 143, 118;
|
--amr-green-dark-rgb: 18, 143, 118;
|
||||||
--amr-green-middle: #60a799;
|
--amr-green-middle: #60a799;
|
||||||
--amr-green-middle-rgb: 96, 167, 153;
|
--amr-green-middle-rgb: 96, 167, 153;
|
||||||
--amr-blue-light: #a8d5ef
|
--amr-blue-light: #a8d5ef;
|
||||||
--amr-blue-light-rgb: 168, 213, 239;
|
--amr-blue-light-rgb: 168, 213, 239;
|
||||||
|
|
||||||
--bs-success: var(--amr-green-dark) !important);
|
--bs-success: var(--amr-green-dark) !important;
|
||||||
--bs-link-color: var(--amr-green-dark) !important;
|
|
||||||
--bs-light: var(--amr-green-light) !important;
|
--bs-light: var(--amr-green-light) !important;
|
||||||
/* --bs-light was this: #128f76a6; that's success with 60% alpha */
|
/* --bs-light was this: #128f76a6; that's success with 60% alpha */
|
||||||
--bs-info: var(--amr-green-middle) !important;
|
--bs-info: var(--amr-green-middle) !important;
|
||||||
@ -58,14 +57,34 @@
|
|||||||
--bs-navbar-brand-color: white !important;
|
--bs-navbar-brand-color: white !important;
|
||||||
--bs-navbar-brand-color-hover: white !important;
|
--bs-navbar-brand-color-hover: white !important;
|
||||||
--bs-nav-link-color: white !important;
|
--bs-nav-link-color: white !important;
|
||||||
|
--bs-navbar-active-color: var(--amr-green-light) !important;
|
||||||
--bs-bg-opacity: 1 !important;
|
--bs-bg-opacity: 1 !important;
|
||||||
|
|
||||||
|
--bs-dropdown-bg: var(--amr-green-dark) !important;
|
||||||
|
--bs-dropdown-link-color: white !important;
|
||||||
|
--bs-dropdown-link-color: white !important;
|
||||||
|
--bs-dropdown-link-hover-color: var(--amr-green-light) !important;
|
||||||
|
--bs-dropdown-link-hover-bg: var(--amr-green-dark) !important;
|
||||||
|
--bs-dropdown-link-active-color: white !important;
|
||||||
|
|
||||||
}
|
}
|
||||||
.nav-text.text-muted {
|
.nav-text.text-muted,
|
||||||
color: var(--amr-green-dark) !important;
|
.bg-primary .navbar-nav .show>.nav-link,
|
||||||
|
.bg-primary .navbar-nav .nav-link.active,
|
||||||
|
.bg-primary .navbar-nav .nav-link:hover,
|
||||||
|
.bg-primary .navbar-nav .nav-link:focus {
|
||||||
|
color: var(--amr-green-light) !important;
|
||||||
|
}
|
||||||
|
.navbar-dark .navbar-nav .nav-item > .nav-link:hover,
|
||||||
|
.navbar-light .navbar-nav .nav-item>.nav-link:hover {
|
||||||
|
background: none !important;
|
||||||
}
|
}
|
||||||
.navbar-dark input[type="search"] {
|
.navbar-dark input[type="search"] {
|
||||||
background-color: var(--amr-green-light) !important;
|
background-color: var(--amr-green-light) !important;
|
||||||
}
|
}
|
||||||
|
.navbar-nav .nav-item > .nav-link {
|
||||||
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
.form-control:focus {
|
.form-control:focus {
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user