diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-06-21 10:16:50 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-06-21 10:47:46 -0300 |
commit | 4d040ff96841366cb024171de80751da448d7254 (patch) | |
tree | b82d46c55f7fe38165a6ff27e12411bbaf6c36ab /src/static | |
parent | b6369a60d550c2c98340e6fd6e0ae1c584b9391e (diff) |
content: generateCommentaryEntry: access date tooltip
Diffstat (limited to 'src/static')
-rw-r--r-- | src/static/css/site.css | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index 80801c85..266c7b0f 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -844,7 +844,8 @@ a:not([href]):hover { } .text-with-tooltip.datetimestamp .text-with-tooltip-interaction-cue, -.text-with-tooltip.missing-duration .text-with-tooltip-interaction-cue { +.text-with-tooltip.missing-duration .text-with-tooltip-interaction-cue, +.text-with-tooltip.commentary-date .text-with-tooltip-interaction-cue { cursor: default; } @@ -898,7 +899,8 @@ li:not(:first-child:last-child) .tooltip, } .datetimestamp-tooltip, -.missing-duration-tooltip { +.missing-duration-tooltip, +.commentary-date-tooltip { padding: 3px 4px 2px 2px; left: -10px; } @@ -1045,7 +1047,8 @@ li:not(:first-child:last-child) .tooltip, } .datetimestamp-tooltip .tooltip-content, -.missing-duration-tooltip .tooltip-content { +.missing-duration-tooltip .tooltip-content, +.commentary-date-tooltip .tooltip-content { padding: 5px 6px; white-space: nowrap; font-size: 0.9em; @@ -1186,8 +1189,11 @@ ul.image-details li { font-style: oblique; } -.commentary-entry-heading time { +.commentary-entry-heading .commentary-date { float: right; +} + +.commentary-entry-heading .commentary-date .hoverable { padding-left: 0.5ch; padding-right: 0.25ch; margin-left: 0.75ch; @@ -1195,7 +1201,8 @@ ul.image-details li { transition: border-left-color 0.15s; } -.commentary-entry-heading time:hover { +.commentary-entry-heading .commentary-date .hoverable:hover, +.commentary-entry-heading .commentary-date .hoverable.has-visible-tooltip { border-left-color: white; } |