diff options
author | tdro <tdro@noreply.example.com> | 2022-08-10 22:17:04 -0400 |
---|---|---|
committer | tdro <tdro@noreply.example.com> | 2022-08-10 22:17:04 -0400 |
commit | e37c7a24880d4a0ba424e24014d69c5c5d0cf11d (patch) | |
tree | a81a4f82e64cc9e9e118f5fc0d05dd655eb83de2 /assets | |
parent | a57e584987c182c77060a2ed1a4c2d450d54120d (diff) | |
download | canory-e37c7a24880d4a0ba424e24014d69c5c5d0cf11d.tar.gz canory-e37c7a24880d4a0ba424e24014d69c5c5d0cf11d.tar.bz2 canory-e37c7a24880d4a0ba424e24014d69c5c5d0cf11d.zip |
assets/css/default: Restrict header normalization to data pages
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/default.css | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index fce8d2c..c5cdd34 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -688,9 +688,9 @@ micro-content { width: 0; } -micro-content h1 a, -micro-content h2 a, -micro-content h3 a { +[data-kind] micro-content h1 a, +[data-kind] micro-content h2 a, +[data-kind] micro-content h3 a { color: inherit; } @@ -809,9 +809,9 @@ micro-metadata-menu context-menu a:hover { border-radius: 0.25rem; } -micro-content h1 a, -micro-content h2 a, -micro-content h3 a, +[data-kind] micro-content h1 a, +[data-kind] micro-content h2 a, +[data-kind] micro-content h3 a, micro-metadata-view a, micro-metadata-name a, micro-metadata-draft a, @@ -822,9 +822,9 @@ micro-metadata context-menu a span { text-decoration: none; } -micro-content h1 a:hover, -micro-content h2 a:hover, -micro-content h3 a:hover, +[data-kind] micro-content h1 a:hover, +[data-kind] micro-content h2 a:hover, +[data-kind] micro-content h3 a:hover, micro-metadata-menu span, micro-metadata-view a span, micro-metadata-name a:hover, |