0fe28e83ee
Universal: PR Check / Branch Policy (pull_request) Failing after 2s
Generic: Repo Health / Access control (pull_request) Successful in 1s
Generic: Repo Health / Site Health (pull_request) Has been skipped
Joomla: Extension CI / Release Readiness Check (pull_request) Failing after 6s
Universal: Secret Scanning / Gitleaks Secret Scan (pull_request) Successful in 9s
Universal: PR Check / Validate PR (pull_request) Failing after 16s
Generic: Project CI / Lint & Validate (pull_request) Successful in 32s
Joomla: Extension CI / Lint & Validate (pull_request) Failing after 44s
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || 'development' }}) (pull_request_target) Failing after 8s
RC Revert / Rename rc/ back to dev/ (pull_request) Has been skipped
Branch Cleanup / Delete merged branch (pull_request) Successful in 2s
Universal: Workflow Sync Trigger / Sync workflows to live repos (pull_request) Failing after 3s
Universal: Build & Release / Promote to RC (pull_request) Has been skipped
Generic: Project CI / Tests (pull_request) Has been cancelled
Joomla: Extension CI / Tests (PHP 8.2) (pull_request) Has been cancelled
Joomla: Extension CI / Tests (PHP 8.3) (pull_request) Has been cancelled
Joomla: Extension CI / PHPStan Analysis (pull_request) Has been cancelled
Joomla: Extension CI / Build RC Pre-Release (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
Generic: Repo Health / Scripts governance (pull_request) Has been cancelled
Generic: Repo Health / Repository health (pull_request) Has been cancelled
Generic: Repo Health / Report Issues (pull_request) Has been cancelled
49 lines
1.4 KiB
CSS
49 lines
1.4 KiB
CSS
/*!
|
|
* Bootstrap Table of Contents v1.0.1 (https://afeld.github.io/bootstrap-toc/)
|
|
* Copyright 2015 Aidan Feldman
|
|
* Licensed under MIT (https://github.com/afeld/bootstrap-toc/blob/gh-pages/LICENSE.md)
|
|
*
|
|
* Modified for MokoCassiopeia to use template color variables for theme integration
|
|
*/
|
|
|
|
/* All levels of nav */
|
|
nav[data-toggle='toc'] .nav > li > a {
|
|
display: block;
|
|
padding: 4px 20px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--link-color, var(--color-link, #0d6efd));
|
|
}
|
|
nav[data-toggle='toc'] .nav > li > a:hover,
|
|
nav[data-toggle='toc'] .nav > li > a:focus {
|
|
padding-left: 19px;
|
|
color: var(--link-hover-color, var(--color-hover, #0a58ca));
|
|
text-decoration: none;
|
|
background-color: transparent;
|
|
border-left: 1px solid var(--link-color, var(--color-link, #0d6efd));
|
|
}
|
|
nav[data-toggle='toc'] .nav > .active > a,
|
|
nav[data-toggle='toc'] .nav > .active:hover > a,
|
|
nav[data-toggle='toc'] .nav > .active:focus > a {
|
|
padding-left: 18px;
|
|
font-weight: bold;
|
|
color: var(--link-color, var(--color-link, #0d6efd));
|
|
background-color: transparent;
|
|
border-left: 2px solid var(--link-color, var(--color-link, #0d6efd));
|
|
}
|
|
|
|
/* Nav: second level (shown on .active) */
|
|
nav[data-toggle='toc'] .nav .nav {
|
|
display: none; /* Hide by default, but at >768px, show it */
|
|
padding-bottom: 10px;
|
|
}
|
|
nav[data-toggle='toc'] .nav > .active > ul {
|
|
display: block;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
nav[data-toggle='toc'] .nav .nav {
|
|
display: block;
|
|
}
|
|
}
|