-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: save 2 css snippets #459
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Notes for reviewers.
/* | ||
.nav-link:focus-visible, | ||
#header-logo:focus-visible, | ||
.navbar-dark .navbar-toggler:focus-visible { | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not know why this is commented out. When I remember, or when prodded, I will comment it or remove it accordingly.
@@ -23,7 +26,7 @@ | |||
left: 0; top: 0; bottom: 0; right: 0; | |||
background-color: var(--global-color-primary--x-light); | |||
} | |||
.banner-cell--major a:hover .u-highlight { | |||
.banner-cell--major a:hover :is(.u-highlight, .highlight) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two class names are supported: ITCSS class name, simple class name.
<template id="css-banner-tacc--notes"> | ||
<!-- TO DYNAMICALL REDUCE HEIGHT OF BANNER: NO NEED to edit this stylesheet. Edit banner "Picture / Image" on CMS. Set `style="height: 60vh; max-height: 550px; min-height: 230px;"`. To use static height, set `style="height: 550px"` instead. --> | ||
</template> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If dev is asked to change height of the banner, and sees this snippet, they may be tempted to work in here. But this stylesheet intentionally does not manage the banner height, because CMS editor should use style
tag to set image height reliably.¹
Because TACC/Core-CMS clones style
attribute of CMS image to parent tags that appear if image is made a link or given a caption.
Overview
Save snippet that only existed in CMS content. Migrate a note to an existing snippet.
Related
None.
Changes
templates/css-global-a11y.html
templates/css-banner-tacc.html
Testing
Note
Not required. This change merely saves code that has been working live.
UI