-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: slideshow filter content and style
- Loading branch information
1 parent
11e1f8c
commit 524c937
Showing
3 changed files
with
36 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,49 @@ | ||
.filterButton { | ||
padding: 4px; | ||
inline-size: auto; | ||
border-radius: 3px; | ||
color: black; | ||
background-color: #f4f6f8; | ||
display: flex; | ||
align-items: center; | ||
gap: var(--spacers-dp4); | ||
font-size: 14px; | ||
} | ||
|
||
.singleFilterText { | ||
padding: 4px; | ||
display: flex; | ||
gap: var(--spacers-dp4); | ||
padding: 0px var(--spacers-dp8) 0 0; | ||
font-size: 14px; | ||
inline-size: auto; | ||
border-radius: 3px; | ||
color: black; | ||
background-color: #f4f6f8; | ||
color: var(--colors-grey300); | ||
} | ||
|
||
.popover { | ||
border: 1px solid var(--colors-grey400); | ||
border-radius: 4px; | ||
border: 1px solid #202124; | ||
background-color: #171819; | ||
border-radius: 6px; | ||
box-shadow: var(--elevations-e400); | ||
padding: var(--spacers-dp8); | ||
background-color: var(--colors-white); | ||
padding: var(--spacers-dp12) var(--spacers-dp12) var(--spacers-dp16); | ||
font-size: 13px; | ||
color: var(--colors-grey300); | ||
min-width: 200px; | ||
max-width: 420px; | ||
margin-block-end: var(--spacers-dp4); | ||
} | ||
|
||
.filterSection { | ||
margin-block-end: var(--spacers-dp4); | ||
.filterSection:not(:last-of-type) { | ||
margin-block-end: var(--spacers-dp12); | ||
} | ||
|
||
.filterSectionHeader { | ||
margin: 0; | ||
margin: 0 0 var(--spacers-dp4) 0; | ||
font-weight: 500; | ||
padding: 0; | ||
} | ||
|
||
.filterSectionList { | ||
margin: 0; | ||
padding: 0; | ||
padding-inline-start: 18px; | ||
list-style-type: circle; | ||
} | ||
.filterSectionList li:not(:last-of-type) { | ||
margin-block-end: 2px; | ||
} |