Skip to content

Commit

Permalink
Merge pull request #372 from texastribune/live-blog
Browse files Browse the repository at this point in the history
Live blog
  • Loading branch information
AndrewGibson27 authored Mar 22, 2021
2 parents dbf3f66 + 89f4de8 commit 99c0604
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions assets/icons/amp/link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/base/link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/scss/6-components/list/_list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
list-style: disc;

&::marker {
color: $color-gray-medium;
color: $color-black-off;
}

&:hover::marker {
Expand Down
6 changes: 6 additions & 0 deletions assets/scss/utilities/_border.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// Helpers for borders. {{isHelper}}
//
// .has-border - This is our standard border color.
// .has-featured-border - A thick yellow border on top and thin gray borders everywhere else. Used to draw attention to a box of content. Used on the home-page featured series module and the live-blog table of contents.
// .has-styled-border - Uses `currentColor` to inherit a `border-color` from `color`. Can be coupled with the `has-text-<color>` helper. This border is a common pattern in sidebar blocks and ads.
//
// Markup: <div class="{{ className }} has-text-black has-padding">Bordered</div>
Expand All @@ -14,6 +15,11 @@
border: 1px solid $color-gray-light;
}

.has-featured-border {
border: 1px solid $color-gray-light;
border-top: 5px solid $color-yellow-tribune;
}

.has-styled-border {
border-top: 4px solid currentColor;
border-bottom: 2px solid currentColor;
Expand Down

0 comments on commit 99c0604

Please sign in to comment.