-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
916057f
commit 1938c54
Showing
10 changed files
with
135 additions
and
126 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
apps/docs-website/src/components/ConfigCombinationForm.module.css
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.checkboxGroupContainer { | ||
display: flex; | ||
align-items: center; | ||
border: 2px solid var(--ifm-toc-border-color); | ||
border-radius: var(--ifm-global-radius); | ||
padding: 9px 16px 8px 16px; | ||
} | ||
|
||
.nativeCheckbox { | ||
display: block; | ||
margin-right: 12px; | ||
} | ||
|
||
.nativeCheckbox input { | ||
padding: 0; | ||
height: initial; | ||
width: initial; | ||
margin-bottom: 0; | ||
display: none; | ||
cursor: pointer; | ||
} | ||
|
||
.nativeCheckbox label { | ||
position: relative; | ||
cursor: pointer; | ||
user-select: none; | ||
} | ||
|
||
.nativeCheckbox label:before { | ||
content: ""; | ||
-webkit-appearance: none; | ||
background-color: transparent; | ||
border: 2px solid var(--ifm-toc-border-color); | ||
border-radius: var(--ifm-global-radius); | ||
box-shadow: | ||
0 1px 2px rgba(0, 0, 0, 0.05), | ||
inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05); | ||
padding: 10px; | ||
display: inline-block; | ||
position: relative; | ||
vertical-align: middle; | ||
cursor: pointer; | ||
margin-right: 5px; | ||
top: -2px; | ||
} | ||
|
||
.nativeCheckbox input:checked + label:after { | ||
content: ""; | ||
display: block; | ||
position: absolute; | ||
top: 3px; | ||
left: 9px; | ||
width: 4px; | ||
height: 10px; | ||
border: solid var(--ifm-color-primary); | ||
border-width: 0 2px 2px 0; | ||
transform: rotate(45deg); | ||
} |
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
15 changes: 15 additions & 0 deletions
15
apps/docs-website/src/components/QueriedRulesMetricsGroup.module.css
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
align-items: center; | ||
gap: 2rem; | ||
} | ||
|
||
.label { | ||
color: var(--ifm-color-emphasis-600); | ||
} | ||
|
||
.number { | ||
font-size: 18px; | ||
font-weight: 500; | ||
} |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -30,3 +30,8 @@ | |
opacity: 1 !important; | ||
margin-top: 2px; | ||
} | ||
|
||
.heroActionsBlock { | ||
max-width: 24rem; | ||
margin: 0 auto; | ||
} |
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