Skip to content
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

DIGITAL-348: Add relative inhertance to checklist shortcode css #8379

Merged
merged 3 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,7 @@ This month, we’re focusing on large group meetings: divisional Town Halls or o
<p>A staple of TTS large group meetings is sharing “pets, children, and other cuteness.” Staff turn on their video cameras (if they weren’t already on) and show off their pets, children, or something else they enjoy. Photos can be shown to the camera, too. The icing on the cake: if you wait until the end of the meeting to reveal these, people will stay until the end!</p>

<p>We also encourage gratitude and reflection. Kudos are another staple of our meetings: we set aside a timeblock for teammates to thank each other, in their own words. The moderator can gather names ahead of time and call on each person to unmute. They can also read off kudos for anyone who can’t attend or would prefer not to unmute.</p>

</li>

</ol>

We hope you’ll stir together our five ingredients and create the dish that best serves your audience. Stay tuned for the next piece, focused on small team meetings.
7 changes: 7 additions & 0 deletions themes/digital.gov/src/scss/new/shortcodes/_checklist.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
@include u-margin-top(0, "!important");
@include u-border-top("2px", "gray-cool-10", "solid");

> li,
&__item {
list-style-type: none;

Expand All @@ -23,6 +24,12 @@
@include u-width(2);
@include u-height(2);
}

> ul {
> li {
list-style-type: disc !important;
}
}
}

&__sublist {
Expand Down