mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 09:19:16 +02:00
30 lines
631 B
CSS
30 lines
631 B
CSS
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
html.plugin-docs.plugin-id-docs-tests .red > a {
|
|
color: red;
|
|
}
|
|
|
|
html.plugin-docs.plugin-id-docs-tests .navbar {
|
|
border-bottom: solid thin cyan;
|
|
}
|
|
|
|
html.plugin-blog.plugin-id-blog-tests .navbar {
|
|
border-bottom: solid thin lime;
|
|
}
|
|
|
|
html.plugin-pages.plugin-id-pages-tests .navbar {
|
|
border-bottom: solid thin yellow;
|
|
}
|
|
|
|
#z-index-test {
|
|
z-index: 100;
|
|
}
|
|
|
|
html:has(#navbar-dropdown-tests) .navbar__item.dropdown ~ a {
|
|
display: none;
|
|
}
|