File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,22 @@ const listStyles = css`
62
62
display : flex;
63
63
flex-wrap : wrap;
64
64
gap : 1.5rem 0.25rem ;
65
+ background-image : repeating-linear-gradient (
66
+ to bottom,
67
+ ${ palette ( '--sub-meta-background' ) } 0px ,
68
+ ${ palette ( '--sub-meta-background' ) } 2.25rem ,
69
+ transparent 2.25rem ,
70
+ transparent 2.3125rem ,
71
+ ${ palette ( '--sub-meta-background' ) } 2.3125rem ,
72
+ ${ palette ( '--sub-meta-background' ) } 3rem
73
+ ),
74
+ repeating-linear-gradient (
75
+ to right,
76
+ ${ palette ( '--article-border' ) } 0px ,
77
+ ${ palette ( '--article-border' ) } 0.1875rem ,
78
+ transparent 0.1875rem ,
79
+ transparent 0.3125rem
80
+ );
65
81
background-position : top;
66
82
background-repeat : no-repeat;
67
83
` ;
Original file line number Diff line number Diff line change @@ -3919,13 +3919,15 @@ const subMetaBackgroundLight: PaletteFunction = ({
3919
3919
case ArticleDesign . Picture :
3920
3920
case ArticleDesign . Video :
3921
3921
case ArticleDesign . Audio :
3922
- case ArticleDesign . Gallery :
3923
3922
switch ( theme ) {
3924
3923
case ArticleSpecial . Labs :
3925
3924
return sourcePalette . neutral [ 86 ] ;
3926
3925
default :
3927
3926
return sourcePalette . neutral [ 7 ] ;
3928
3927
}
3928
+ case ArticleDesign . Gallery :
3929
+ return sourcePalette . neutral [ 7 ] ;
3930
+
3929
3931
default :
3930
3932
switch ( theme ) {
3931
3933
case ArticleSpecial . SpecialReport :
You can’t perform that action at this time.
0 commit comments