Skip to content

Commit

Permalink
[docs-infra] Fix a stylelint issue (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored May 30, 2024
1 parent 519d615 commit 86a7d7e
Show file tree
Hide file tree
Showing 56 changed files with 57 additions and 57 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ function Styles() {
width: 100%;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ function Styles() {
width: 100%;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const StyledListbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const StyledListbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/autocomplete/ControlledStates.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const Listbox = styled('ul')(
max-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const Listbox = styled('ul')(
max-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/autocomplete/UseAutocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const Listbox = styled('ul')(
width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/autocomplete/UseAutocomplete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const Listbox = styled('ul')(
width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
max-height: 300px;
z-index: 1;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function Styles() {
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function Styles() {
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/MenuSimple/css/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function Styles() {
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/MenuSimple/css/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function Styles() {
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/MenuSimple/system/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/MenuSimple/system/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/MenuTransitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/MenuTransitions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/UseMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function Styles() {
border-radius: 0.75em;
color: ${grey[900]};
overflow: auto;
outline: 0px;
outline: 0;
box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/UseMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function Styles() {
border-radius: 0.75em;
color: ${grey[900]};
overflow: auto;
outline: 0px;
outline: 0;
box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/WrappedMenuItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/menu/WrappedMenuItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const Listbox = styled('ul')(
min-width: 200px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function Styles() {
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function Styles() {
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/select/UnstyledSelectForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/select/UnstyledSelectForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/select/UnstyledSelectGrouping.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function Styles() {
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function Styles() {
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/base/components/select/UnstyledSelectMultiple.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const Listbox = styled('ul')(
min-width: 320px;
border-radius: 12px;
overflow: auto;
outline: 0px;
outline: 0;
background: ${theme.palette.mode === 'dark' ? grey[900] : '#fff'};
border: 1px solid ${theme.palette.mode === 'dark' ? grey[700] : grey[200]};
color: ${theme.palette.mode === 'dark' ? grey[300] : grey[900]};
Expand Down
Loading

0 comments on commit 86a7d7e

Please sign in to comment.