-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewriting most remaining MUI usage (#2905)
Co-authored-by: Ole Martin Handeland <[email protected]>
- Loading branch information
1 parent
c61c924
commit 870092b
Showing
59 changed files
with
625 additions
and
719 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.spinner { | ||
color: var(--colors-primary-blueDark); | ||
margin-right: auto; | ||
margin-left: auto; | ||
display: inline-block; | ||
} | ||
|
||
.spinnerText { | ||
display: inline-block; | ||
font-size: 16px; | ||
margin-left: 10px; | ||
vertical-align: middle; | ||
margin-bottom: 25px; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.button { | ||
text-decoration: underline; | ||
text-align: left; | ||
padding: 5px 5px 5px 10px; | ||
} | ||
|
||
.srOnly { | ||
position: absolute; | ||
clip: rect(0, 0, 0, 0); | ||
border: 0; | ||
} | ||
|
||
.srOnly:focus { | ||
position: relative; | ||
width: auto; | ||
height: 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
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 |
---|---|---|
@@ -0,0 +1,98 @@ | ||
.partyPaper { | ||
margin-bottom: 0.75rem; | ||
border-radius: 0; | ||
background-color: var(--colors-primary-blueLighter); | ||
box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); | ||
width: 100%; | ||
} | ||
|
||
.partyWrapper { | ||
padding: 1.25rem; | ||
gap: 0.75rem; | ||
} | ||
|
||
.partyWrapper:hover { | ||
cursor: pointer; | ||
} | ||
|
||
.partyWrapperDisabled:hover { | ||
cursor: not-allowed; | ||
} | ||
|
||
.partyPaperDisabled { | ||
margin-bottom: 0.75rem; | ||
border-radius: 0; | ||
background-color: var(--colors-primary-blueLighter); | ||
box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); | ||
color: var(--colors-primary-grey); | ||
width: 100%; | ||
} | ||
|
||
.partyIcon { | ||
padding: 0.75rem; | ||
font-size: 42px; | ||
} | ||
|
||
.partyName { | ||
font-weight: 700; | ||
} | ||
|
||
.partyInfo { | ||
font-weight: 300; | ||
font-size: 0.875rem; | ||
} | ||
|
||
.subUnitWrapper { | ||
color: var(--colors-primary-black); | ||
} | ||
|
||
.subUnitListHeaderWrapper { | ||
padding-top: 0.75rem; | ||
padding-bottom: 0.75rem; | ||
gap: 0.75rem; | ||
border-top: 1px solid var(--colors-primary-greyMedium); | ||
} | ||
|
||
.subUnitListHeaderWrapper:hover { | ||
cursor: pointer; | ||
} | ||
|
||
.subUnit { | ||
width: 100%; | ||
padding: 0 1.25rem; | ||
} | ||
|
||
.subUnit:hover { | ||
background: var(--colors-primary-blueLight); | ||
cursor: pointer; | ||
} | ||
|
||
.subUnitListHeader { | ||
padding-left: 1.5rem; | ||
padding-right: 1.5rem; | ||
} | ||
|
||
.subUnitListHeader:hover { | ||
background: var(--colors-primary-blueLight); | ||
cursor: pointer; | ||
} | ||
|
||
.subUnitListHeaderIcon { | ||
font-size: 2rem; | ||
color: var(--colors-primary-blue); | ||
} | ||
|
||
.subUnitTextWrapper { | ||
padding: 1.25rem 1.25rem 1.25rem 3rem; | ||
gap: 0.75rem; | ||
border-top: 1px solid var(--colors-primary-greyMedium); | ||
} | ||
|
||
.subUnitTextBold { | ||
font-weight: 700; | ||
} | ||
|
||
.subUnitIcon { | ||
padding-left: 1.75rem; | ||
font-size: 2.625rem; | ||
} |
Oops, something went wrong.