splitting out rest of makeStyles
This commit is contained in:
parent
c27c7311c2
commit
41ddf7d52c
55 changed files with 7453 additions and 9992 deletions
55
assets/css/MuiAccordion.css
Normal file
55
assets/css/MuiAccordion.css
Normal file
|
@ -0,0 +1,55 @@
|
|||
|
||||
.MuiAccordion-root {
|
||||
position: relative;
|
||||
transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiAccordion-root:before {
|
||||
top: -1px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
content: "";
|
||||
opacity: 1;
|
||||
position: absolute;
|
||||
transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
background-color: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
.MuiAccordion-root.Mui-expanded {
|
||||
margin: 16px 0;
|
||||
}
|
||||
.MuiAccordion-root.Mui-disabled {
|
||||
background-color: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
.MuiAccordion-root.Mui-expanded + .MuiAccordion-root:before {
|
||||
display: none;
|
||||
}
|
||||
.MuiAccordion-root.Mui-expanded:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.MuiAccordion-root.Mui-expanded:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.MuiAccordion-root.Mui-expanded:before {
|
||||
opacity: 0;
|
||||
}
|
||||
.MuiAccordion-root:first-child:before {
|
||||
display: none;
|
||||
}
|
||||
.MuiAccordion-rounded {
|
||||
border-radius: 0;
|
||||
}
|
||||
.MuiAccordion-rounded:first-child {
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
.MuiAccordion-rounded:last-child {
|
||||
border-bottom-left-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
@supports (-ms-ime-align: auto) {
|
||||
.MuiAccordion-rounded:last-child {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
}
|
||||
|
6
assets/css/MuiAccordionDetails.css
Normal file
6
assets/css/MuiAccordionDetails.css
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
.MuiAccordionDetails-root {
|
||||
display: flex;
|
||||
padding: 8px 16px 16px;
|
||||
}
|
||||
|
39
assets/css/MuiAccordionSummary.css
Normal file
39
assets/css/MuiAccordionSummary.css
Normal file
|
@ -0,0 +1,39 @@
|
|||
|
||||
.MuiAccordionSummary-root {
|
||||
display: flex;
|
||||
padding: 0px 16px;
|
||||
min-height: 48px;
|
||||
transition: min-height 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiAccordionSummary-root:hover:not(.Mui-disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
.MuiAccordionSummary-root.Mui-expanded {
|
||||
min-height: 64px;
|
||||
}
|
||||
.MuiAccordionSummary-root.Mui-focused, .MuiAccordionSummary-root.Mui-focusVisible {
|
||||
background-color: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
.MuiAccordionSummary-root.Mui-disabled {
|
||||
opacity: 0.38;
|
||||
}
|
||||
.MuiAccordionSummary-content {
|
||||
margin: 12px 0;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiAccordionSummary-content.Mui-expanded {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.MuiAccordionSummary-expandIcon {
|
||||
transform: rotate(0deg);
|
||||
transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiAccordionSummary-expandIcon:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
.MuiAccordionSummary-expandIcon.Mui-expanded {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiAppBar-root {
|
||||
.MuiAppBar-root {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
z-index: 1100;
|
||||
|
@ -55,3 +55,4 @@
|
|||
color: inherit;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiBackdrop-root {
|
||||
.MuiBackdrop-root {
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
@ -15,3 +15,4 @@
|
|||
.MuiBackdrop-invisible {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
193
assets/css/MuiBadge.css
Normal file
193
assets/css/MuiBadge.css
Normal file
|
@ -0,0 +1,193 @@
|
|||
|
||||
.MuiBadge-root {
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.MuiBadge-badge {
|
||||
height: 20px;
|
||||
display: flex;
|
||||
padding: 0 6px;
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
flex-wrap: wrap;
|
||||
font-size: 0.75rem;
|
||||
min-width: 20px;
|
||||
box-sizing: border-box;
|
||||
transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
align-items: center;
|
||||
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||||
font-weight: 500;
|
||||
line-height: 1;
|
||||
align-content: center;
|
||||
border-radius: 10px;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
}
|
||||
.MuiBadge-colorPrimary {
|
||||
color: #fff;
|
||||
background-color: #1b365d;
|
||||
}
|
||||
.MuiBadge-colorSecondary {
|
||||
color: #fff;
|
||||
background-color: #ee3524;
|
||||
}
|
||||
.MuiBadge-colorError {
|
||||
color: #fff;
|
||||
background-color: #ff1744;
|
||||
}
|
||||
.MuiBadge-dot {
|
||||
height: 8px;
|
||||
padding: 0;
|
||||
min-width: 8px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightRectangle {
|
||||
top: 0;
|
||||
right: 0;
|
||||
transform: scale(1) translate(50%, -50%);
|
||||
transform-origin: 100% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightRectangle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightRectangular {
|
||||
top: 0;
|
||||
right: 0;
|
||||
transform: scale(1) translate(50%, -50%);
|
||||
transform-origin: 100% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightRectangular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightRectangle {
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
transform: scale(1) translate(50%, 50%);
|
||||
transform-origin: 100% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightRectangle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, 50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightRectangular {
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
transform: scale(1) translate(50%, 50%);
|
||||
transform-origin: 100% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightRectangular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, 50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftRectangle {
|
||||
top: 0;
|
||||
left: 0;
|
||||
transform: scale(1) translate(-50%, -50%);
|
||||
transform-origin: 0% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftRectangle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftRectangular {
|
||||
top: 0;
|
||||
left: 0;
|
||||
transform: scale(1) translate(-50%, -50%);
|
||||
transform-origin: 0% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftRectangular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftRectangle {
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
transform: scale(1) translate(-50%, 50%);
|
||||
transform-origin: 0% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftRectangle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, 50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftRectangular {
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
transform: scale(1) translate(-50%, 50%);
|
||||
transform-origin: 0% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftRectangular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, 50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightCircle {
|
||||
top: 14%;
|
||||
right: 14%;
|
||||
transform: scale(1) translate(50%, -50%);
|
||||
transform-origin: 100% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightCircle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightCircular {
|
||||
top: 14%;
|
||||
right: 14%;
|
||||
transform: scale(1) translate(50%, -50%);
|
||||
transform-origin: 100% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopRightCircular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightCircle {
|
||||
right: 14%;
|
||||
bottom: 14%;
|
||||
transform: scale(1) translate(50%, 50%);
|
||||
transform-origin: 100% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightCircle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, 50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightCircular {
|
||||
right: 14%;
|
||||
bottom: 14%;
|
||||
transform: scale(1) translate(50%, 50%);
|
||||
transform-origin: 100% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomRightCircular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(50%, 50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftCircle {
|
||||
top: 14%;
|
||||
left: 14%;
|
||||
transform: scale(1) translate(-50%, -50%);
|
||||
transform-origin: 0% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftCircle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftCircular {
|
||||
top: 14%;
|
||||
left: 14%;
|
||||
transform: scale(1) translate(-50%, -50%);
|
||||
transform-origin: 0% 0%;
|
||||
}
|
||||
.MuiBadge-anchorOriginTopLeftCircular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, -50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftCircle {
|
||||
left: 14%;
|
||||
bottom: 14%;
|
||||
transform: scale(1) translate(-50%, 50%);
|
||||
transform-origin: 0% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftCircle.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, 50%);
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftCircular {
|
||||
left: 14%;
|
||||
bottom: 14%;
|
||||
transform: scale(1) translate(-50%, 50%);
|
||||
transform-origin: 0% 100%;
|
||||
}
|
||||
.MuiBadge-anchorOriginBottomLeftCircular.MuiBadge-invisible {
|
||||
transform: scale(0) translate(-50%, 50%);
|
||||
}
|
||||
.MuiBadge-invisible {
|
||||
transition: transform 195ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
|
|
@ -1,7 +1 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiButton-root {
|
||||
.MuiButton-root {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
padding: 6px 16px;
|
||||
font-size: 0.875rem;
|
||||
|
@ -219,3 +219,4 @@
|
|||
.MuiButton-iconSizeLarge > *:first-child {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiButtonBase-root {
|
||||
.MuiButtonBase-root {
|
||||
color: inherit;
|
||||
border: 0;
|
||||
cursor: pointer;
|
||||
|
@ -31,3 +31,4 @@
|
|||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
}
|
||||
|
33
assets/css/MuiCheckbox.css
Normal file
33
assets/css/MuiCheckbox.css
Normal file
|
@ -0,0 +1,33 @@
|
|||
|
||||
.MuiCheckbox-root {
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
}
|
||||
.MuiCheckbox-colorPrimary.Mui-checked {
|
||||
color: #1b365d;
|
||||
}
|
||||
.MuiCheckbox-colorPrimary.Mui-disabled {
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
}
|
||||
.MuiCheckbox-colorPrimary.Mui-checked:hover {
|
||||
background-color: rgba(27, 54, 93, 0.04);
|
||||
}
|
||||
@media (hover: none) {
|
||||
.MuiCheckbox-colorPrimary.Mui-checked:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
.MuiCheckbox-colorSecondary.Mui-checked {
|
||||
color: #ee3524;
|
||||
}
|
||||
.MuiCheckbox-colorSecondary.Mui-disabled {
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
}
|
||||
.MuiCheckbox-colorSecondary.Mui-checked:hover {
|
||||
background-color: rgba(238, 53, 36, 0.04);
|
||||
}
|
||||
@media (hover: none) {
|
||||
.MuiCheckbox-colorSecondary.Mui-checked:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
194
assets/css/MuiChip.css
Normal file
194
assets/css/MuiChip.css
Normal file
|
@ -0,0 +1,194 @@
|
|||
|
||||
.MuiChip-root {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border: none;
|
||||
cursor: default;
|
||||
height: 32px;
|
||||
display: inline-flex;
|
||||
outline: 0;
|
||||
padding: 0;
|
||||
font-size: 0.8125rem;
|
||||
box-sizing: border-box;
|
||||
transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
align-items: center;
|
||||
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||||
white-space: nowrap;
|
||||
border-radius: 16px;
|
||||
vertical-align: middle;
|
||||
justify-content: center;
|
||||
text-decoration: none;
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
.MuiChip-root.Mui-disabled {
|
||||
opacity: 0.5;
|
||||
pointer-events: none;
|
||||
}
|
||||
.MuiChip-root .MuiChip-avatar {
|
||||
color: #616161;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
font-size: 0.75rem;
|
||||
margin-left: 5px;
|
||||
margin-right: -6px;
|
||||
}
|
||||
.MuiChip-root .MuiChip-avatarColorPrimary {
|
||||
color: #fff;
|
||||
background-color: rgb(18, 37, 65);
|
||||
}
|
||||
.MuiChip-root .MuiChip-avatarColorSecondary {
|
||||
color: #fff;
|
||||
background-color: rgb(166, 37, 25);
|
||||
}
|
||||
.MuiChip-root .MuiChip-avatarSmall {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
font-size: 0.625rem;
|
||||
margin-left: 4px;
|
||||
margin-right: -4px;
|
||||
}
|
||||
.MuiChip-sizeSmall {
|
||||
height: 24px;
|
||||
}
|
||||
.MuiChip-colorPrimary {
|
||||
color: #fff;
|
||||
background-color: #1b365d;
|
||||
}
|
||||
.MuiChip-colorSecondary {
|
||||
color: #fff;
|
||||
background-color: #ee3524;
|
||||
}
|
||||
.MuiChip-clickable {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
.MuiChip-clickable:hover, .MuiChip-clickable:focus {
|
||||
background-color: rgb(206, 206, 206);
|
||||
}
|
||||
.MuiChip-clickable:active {
|
||||
box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12);
|
||||
}
|
||||
.MuiChip-clickableColorPrimary:hover, .MuiChip-clickableColorPrimary:focus {
|
||||
background-color: rgb(45, 70, 105);
|
||||
}
|
||||
.MuiChip-clickableColorSecondary:hover, .MuiChip-clickableColorSecondary:focus {
|
||||
background-color: rgb(239, 69, 53);
|
||||
}
|
||||
.MuiChip-deletable:focus {
|
||||
background-color: rgb(206, 206, 206);
|
||||
}
|
||||
.MuiChip-deletableColorPrimary:focus {
|
||||
background-color: rgb(72, 94, 125);
|
||||
}
|
||||
.MuiChip-deletableColorSecondary:focus {
|
||||
background-color: rgb(241, 93, 79);
|
||||
}
|
||||
.MuiChip-outlined {
|
||||
border: 1px solid rgba(0, 0, 0, 0.23);
|
||||
background-color: transparent;
|
||||
}
|
||||
.MuiChip-clickable.MuiChip-outlined:hover, .MuiChip-clickable.MuiChip-outlined:focus, .MuiChip-deletable.MuiChip-outlined:focus {
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.MuiChip-outlined .MuiChip-avatar {
|
||||
margin-left: 4px;
|
||||
}
|
||||
.MuiChip-outlined .MuiChip-avatarSmall {
|
||||
margin-left: 2px;
|
||||
}
|
||||
.MuiChip-outlined .MuiChip-icon {
|
||||
margin-left: 4px;
|
||||
}
|
||||
.MuiChip-outlined .MuiChip-iconSmall {
|
||||
margin-left: 2px;
|
||||
}
|
||||
.MuiChip-outlined .MuiChip-deleteIcon {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.MuiChip-outlined .MuiChip-deleteIconSmall {
|
||||
margin-right: 3px;
|
||||
}
|
||||
.MuiChip-outlinedPrimary {
|
||||
color: #1b365d;
|
||||
border: 1px solid #1b365d;
|
||||
}
|
||||
.MuiChip-clickable.MuiChip-outlinedPrimary:hover, .MuiChip-clickable.MuiChip-outlinedPrimary:focus, .MuiChip-deletable.MuiChip-outlinedPrimary:focus {
|
||||
background-color: rgba(27, 54, 93, 0.04);
|
||||
}
|
||||
.MuiChip-outlinedSecondary {
|
||||
color: #ee3524;
|
||||
border: 1px solid #ee3524;
|
||||
}
|
||||
.MuiChip-clickable.MuiChip-outlinedSecondary:hover, .MuiChip-clickable.MuiChip-outlinedSecondary:focus, .MuiChip-deletable.MuiChip-outlinedSecondary:focus {
|
||||
background-color: rgba(238, 53, 36, 0.04);
|
||||
}
|
||||
.MuiChip-icon {
|
||||
color: #616161;
|
||||
margin-left: 5px;
|
||||
margin-right: -6px;
|
||||
}
|
||||
.MuiChip-iconSmall {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin-left: 4px;
|
||||
margin-right: -4px;
|
||||
}
|
||||
.MuiChip-iconColorPrimary {
|
||||
color: inherit;
|
||||
}
|
||||
.MuiChip-iconColorSecondary {
|
||||
color: inherit;
|
||||
}
|
||||
.MuiChip-label {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.MuiChip-labelSmall {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
.MuiChip-deleteIcon {
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
width: 22px;
|
||||
cursor: pointer;
|
||||
height: 22px;
|
||||
margin: 0 5px 0 -6px;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
.MuiChip-deleteIcon:hover {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
.MuiChip-deleteIconSmall {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-left: -4px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.MuiChip-deleteIconColorPrimary {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
.MuiChip-deleteIconColorPrimary:hover, .MuiChip-deleteIconColorPrimary:active {
|
||||
color: #fff;
|
||||
}
|
||||
.MuiChip-deleteIconColorSecondary {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
.MuiChip-deleteIconColorSecondary:hover, .MuiChip-deleteIconColorSecondary:active {
|
||||
color: #fff;
|
||||
}
|
||||
.MuiChip-deleteIconOutlinedColorPrimary {
|
||||
color: rgba(27, 54, 93, 0.7);
|
||||
}
|
||||
.MuiChip-deleteIconOutlinedColorPrimary:hover, .MuiChip-deleteIconOutlinedColorPrimary:active {
|
||||
color: #1b365d;
|
||||
}
|
||||
.MuiChip-deleteIconOutlinedColorSecondary {
|
||||
color: rgba(238, 53, 36, 0.7);
|
||||
}
|
||||
.MuiChip-deleteIconOutlinedColorSecondary:hover, .MuiChip-deleteIconOutlinedColorSecondary:active {
|
||||
color: #ee3524;
|
||||
}
|
||||
|
20
assets/css/MuiCollapse.css
Normal file
20
assets/css/MuiCollapse.css
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
.MuiCollapse-root {
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiCollapse-entered {
|
||||
height: auto;
|
||||
overflow: visible;
|
||||
}
|
||||
.MuiCollapse-hidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
.MuiCollapse-wrapper {
|
||||
display: flex;
|
||||
}
|
||||
.MuiCollapse-wrapperInner {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiContainer-root {
|
||||
.MuiContainer-root {
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
|
@ -63,3 +63,4 @@
|
|||
max-width: 1920px;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
|
||||
|
||||
html {
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
@ -29,3 +28,4 @@ body {
|
|||
body::backdrop {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
@media print {
|
||||
@media print {
|
||||
.MuiDialog-root {
|
||||
position: absolute !important;
|
||||
}
|
||||
|
@ -109,3 +109,4 @@
|
|||
margin: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiDivider-root {
|
||||
.MuiDivider-root {
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 0;
|
||||
|
@ -30,3 +30,4 @@
|
|||
height: auto;
|
||||
align-self: stretch;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiDrawer-docked {
|
||||
.MuiDrawer-docked {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.MuiDrawer-paper {
|
||||
|
@ -50,3 +50,4 @@
|
|||
.MuiDrawer-paperAnchorDockedBottom {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
23
assets/css/MuiFormControl.css
Normal file
23
assets/css/MuiFormControl.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
.MuiFormControl-root {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
display: inline-flex;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
min-width: 0;
|
||||
flex-direction: column;
|
||||
vertical-align: top;
|
||||
}
|
||||
.MuiFormControl-marginNormal {
|
||||
margin-top: 16px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.MuiFormControl-marginDense {
|
||||
margin-top: 8px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.MuiFormControl-fullWidth {
|
||||
width: 100%;
|
||||
}
|
||||
|
30
assets/css/MuiFormControlLabel.css
Normal file
30
assets/css/MuiFormControlLabel.css
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
.MuiFormControlLabel-root {
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
margin-left: -11px;
|
||||
margin-right: 16px;
|
||||
vertical-align: middle;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
.MuiFormControlLabel-root.Mui-disabled {
|
||||
cursor: default;
|
||||
}
|
||||
.MuiFormControlLabel-labelPlacementStart {
|
||||
margin-left: 16px;
|
||||
margin-right: -11px;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
.MuiFormControlLabel-labelPlacementTop {
|
||||
margin-left: 16px;
|
||||
flex-direction: column-reverse;
|
||||
}
|
||||
.MuiFormControlLabel-labelPlacementBottom {
|
||||
margin-left: 16px;
|
||||
flex-direction: column;
|
||||
}
|
||||
.MuiFormControlLabel-label.Mui-disabled {
|
||||
color: rgba(0, 0, 0, 0.38);
|
||||
}
|
||||
|
26
assets/css/MuiFormHelperText.css
Normal file
26
assets/css/MuiFormHelperText.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
.MuiFormHelperText-root {
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
margin: 0;
|
||||
font-size: 0.75rem;
|
||||
margin-top: 3px;
|
||||
text-align: left;
|
||||
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1.66;
|
||||
letter-spacing: 0.03333em;
|
||||
}
|
||||
.MuiFormHelperText-root.Mui-disabled {
|
||||
color: rgba(0, 0, 0, 0.38);
|
||||
}
|
||||
.MuiFormHelperText-root.Mui-error {
|
||||
color: #ff1744;
|
||||
}
|
||||
.MuiFormHelperText-marginDense {
|
||||
margin-top: 4px;
|
||||
}
|
||||
.MuiFormHelperText-contained {
|
||||
margin-left: 14px;
|
||||
margin-right: 14px;
|
||||
}
|
||||
|
26
assets/css/MuiFormLabel.css
Normal file
26
assets/css/MuiFormLabel.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
.MuiFormLabel-root {
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
padding: 0;
|
||||
font-size: 1rem;
|
||||
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
letter-spacing: 0.00938em;
|
||||
}
|
||||
.MuiFormLabel-root.Mui-focused {
|
||||
color: #1b365d;
|
||||
}
|
||||
.MuiFormLabel-root.Mui-disabled {
|
||||
color: rgba(0, 0, 0, 0.38);
|
||||
}
|
||||
.MuiFormLabel-root.Mui-error {
|
||||
color: #ff1744;
|
||||
}
|
||||
.MuiFormLabel-colorSecondary.Mui-focused {
|
||||
color: #ee3524;
|
||||
}
|
||||
.MuiFormLabel-asterisk.Mui-error {
|
||||
color: #ff1744;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiGrid-container {
|
||||
.MuiGrid-container {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
@ -497,3 +497,4 @@
|
|||
flex-basis: 100%;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiIconButton-root {
|
||||
.MuiIconButton-root {
|
||||
flex: 0 0 auto;
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
padding: 12px;
|
||||
|
@ -68,3 +68,4 @@
|
|||
align-items: inherit;
|
||||
justify-content: inherit;
|
||||
}
|
||||
|
50
assets/css/MuiInput.css
Normal file
50
assets/css/MuiInput.css
Normal file
|
@ -0,0 +1,50 @@
|
|||
|
||||
.MuiInput-root {
|
||||
position: relative;
|
||||
}
|
||||
label + .MuiInput-formControl {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.MuiInput-colorSecondary.MuiInput-underline:after {
|
||||
border-bottom-color: #ee3524;
|
||||
}
|
||||
.MuiInput-underline:after {
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
content: "";
|
||||
position: absolute;
|
||||
transform: scaleX(0);
|
||||
transition: transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
|
||||
border-bottom: 2px solid #1b365d;
|
||||
pointer-events: none;
|
||||
}
|
||||
.MuiInput-underline.Mui-focused:after {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
.MuiInput-underline.Mui-error:after {
|
||||
transform: scaleX(1);
|
||||
border-bottom-color: #ff1744;
|
||||
}
|
||||
.MuiInput-underline:before {
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
content: "\00a0";
|
||||
position: absolute;
|
||||
transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.42);
|
||||
pointer-events: none;
|
||||
}
|
||||
.MuiInput-underline:hover:not(.Mui-disabled):before {
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.MuiInput-underline.Mui-disabled:before {
|
||||
border-bottom-style: dotted;
|
||||
}
|
||||
@media (hover: none) {
|
||||
.MuiInput-underline:hover:not(.Mui-disabled):before {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.42);
|
||||
}
|
||||
}
|
||||
|
119
assets/css/MuiInputBase.css
Normal file
119
assets/css/MuiInputBase.css
Normal file
|
@ -0,0 +1,119 @@
|
|||
|
||||
@-webkit-keyframes mui-auto-fill {}
|
||||
@-webkit-keyframes mui-auto-fill-cancel {}
|
||||
.MuiInputBase-root {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
cursor: text;
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
font-size: 1rem;
|
||||
box-sizing: border-box;
|
||||
align-items: center;
|
||||
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1.1876em;
|
||||
letter-spacing: 0.00938em;
|
||||
}
|
||||
.MuiInputBase-root.Mui-disabled {
|
||||
color: rgba(0, 0, 0, 0.38);
|
||||
cursor: default;
|
||||
}
|
||||
.MuiInputBase-multiline {
|
||||
padding: 6px 0 7px;
|
||||
}
|
||||
.MuiInputBase-multiline.MuiInputBase-marginDense {
|
||||
padding-top: 3px;
|
||||
}
|
||||
.MuiInputBase-fullWidth {
|
||||
width: 100%;
|
||||
}
|
||||
.MuiInputBase-input {
|
||||
font: inherit;
|
||||
color: currentColor;
|
||||
width: 100%;
|
||||
border: 0;
|
||||
height: 1.1876em;
|
||||
margin: 0;
|
||||
display: block;
|
||||
padding: 6px 0 7px;
|
||||
min-width: 0;
|
||||
background: none;
|
||||
box-sizing: content-box;
|
||||
animation-name: mui-auto-fill-cancel;
|
||||
letter-spacing: inherit;
|
||||
animation-duration: 10ms;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
.MuiInputBase-input::-webkit-input-placeholder {
|
||||
color: currentColor;
|
||||
opacity: 0.42;
|
||||
transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiInputBase-input::-moz-placeholder {
|
||||
color: currentColor;
|
||||
opacity: 0.42;
|
||||
transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiInputBase-input:-ms-input-placeholder {
|
||||
color: currentColor;
|
||||
opacity: 0.42;
|
||||
transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiInputBase-input::-ms-input-placeholder {
|
||||
color: currentColor;
|
||||
opacity: 0.42;
|
||||
transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiInputBase-input:focus {
|
||||
outline: 0;
|
||||
}
|
||||
.MuiInputBase-input:invalid {
|
||||
box-shadow: none;
|
||||
}
|
||||
.MuiInputBase-input::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.MuiInputBase-input.Mui-disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
.MuiInputBase-input:-webkit-autofill {
|
||||
animation-name: mui-auto-fill;
|
||||
animation-duration: 5000s;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input::-webkit-input-placeholder {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input::-moz-placeholder {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input:-ms-input-placeholder {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input::-ms-input-placeholder {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input:focus::-webkit-input-placeholder {
|
||||
opacity: 0.42;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input:focus::-moz-placeholder {
|
||||
opacity: 0.42;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input:focus:-ms-input-placeholder {
|
||||
opacity: 0.42;
|
||||
}
|
||||
label[data-shrink=false] + .MuiInputBase-formControl .MuiInputBase-input:focus::-ms-input-placeholder {
|
||||
opacity: 0.42;
|
||||
}
|
||||
.MuiInputBase-inputMarginDense {
|
||||
padding-top: 3px;
|
||||
}
|
||||
.MuiInputBase-inputMultiline {
|
||||
height: auto;
|
||||
resize: none;
|
||||
padding: 0;
|
||||
}
|
||||
.MuiInputBase-inputTypeSearch {
|
||||
-moz-appearance: textfield;
|
||||
-webkit-appearance: textfield;
|
||||
}
|
||||
|
47
assets/css/MuiInputLabel.css
Normal file
47
assets/css/MuiInputLabel.css
Normal file
|
@ -0,0 +1,47 @@
|
|||
|
||||
.MuiInputLabel-root {
|
||||
display: block;
|
||||
transform-origin: top left;
|
||||
}
|
||||
.MuiInputLabel-formControl {
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
transform: translate(0, 24px) scale(1);
|
||||
}
|
||||
.MuiInputLabel-marginDense {
|
||||
transform: translate(0, 21px) scale(1);
|
||||
}
|
||||
.MuiInputLabel-shrink {
|
||||
transform: translate(0, 1.5px) scale(0.75);
|
||||
transform-origin: top left;
|
||||
}
|
||||
.MuiInputLabel-animated {
|
||||
transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
|
||||
}
|
||||
.MuiInputLabel-filled {
|
||||
z-index: 1;
|
||||
transform: translate(12px, 20px) scale(1);
|
||||
pointer-events: none;
|
||||
}
|
||||
.MuiInputLabel-filled.MuiInputLabel-marginDense {
|
||||
transform: translate(12px, 17px) scale(1);
|
||||
}
|
||||
.MuiInputLabel-filled.MuiInputLabel-shrink {
|
||||
transform: translate(12px, 10px) scale(0.75);
|
||||
}
|
||||
.MuiInputLabel-filled.MuiInputLabel-shrink.MuiInputLabel-marginDense {
|
||||
transform: translate(12px, 7px) scale(0.75);
|
||||
}
|
||||
.MuiInputLabel-outlined {
|
||||
z-index: 1;
|
||||
transform: translate(14px, 20px) scale(1);
|
||||
pointer-events: none;
|
||||
}
|
||||
.MuiInputLabel-outlined.MuiInputLabel-marginDense {
|
||||
transform: translate(14px, 12px) scale(1);
|
||||
}
|
||||
.MuiInputLabel-outlined.MuiInputLabel-shrink {
|
||||
transform: translate(14px, -6px) scale(0.75);
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiList-root {
|
||||
.MuiList-root {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
|
@ -12,3 +12,4 @@
|
|||
.MuiList-subheader {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiListItem-root {
|
||||
.MuiListItem-root {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
position: relative;
|
||||
|
@ -53,3 +53,4 @@
|
|||
.MuiListItem-secondaryAction {
|
||||
padding-right: 48px;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiListItemText-root {
|
||||
.MuiListItemText-root {
|
||||
flex: 1 1 auto;
|
||||
min-width: 0;
|
||||
margin-top: 4px;
|
||||
|
@ -12,3 +12,4 @@
|
|||
.MuiListItemText-inset {
|
||||
padding-left: 56px;
|
||||
}
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
|
||||
.MuiMenu-paper {
|
||||
.MuiMenu-paper {
|
||||
max-height: calc(100% - 96px);
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.MuiMenu-list {
|
||||
outline: 0;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiMenuItem-root {
|
||||
.MuiMenuItem-root {
|
||||
width: auto;
|
||||
overflow: hidden;
|
||||
font-size: 1rem;
|
||||
|
@ -26,3 +26,4 @@
|
|||
line-height: 1.43;
|
||||
letter-spacing: 0.01071em;
|
||||
}
|
||||
|
62
assets/css/MuiOutlinedInput.css
Normal file
62
assets/css/MuiOutlinedInput.css
Normal file
|
@ -0,0 +1,62 @@
|
|||
|
||||
.MuiOutlinedInput-root {
|
||||
position: relative;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
|
||||
border-color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
@media (hover: none) {
|
||||
.MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
|
||||
border-color: rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
}
|
||||
.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
|
||||
border-color: #1b365d;
|
||||
border-width: 2px;
|
||||
}
|
||||
.MuiOutlinedInput-root.Mui-error .MuiOutlinedInput-notchedOutline {
|
||||
border-color: #ff1744;
|
||||
}
|
||||
.MuiOutlinedInput-root.Mui-disabled .MuiOutlinedInput-notchedOutline {
|
||||
border-color: rgba(0, 0, 0, 0.26);
|
||||
}
|
||||
.MuiOutlinedInput-colorSecondary.Mui-focused .MuiOutlinedInput-notchedOutline {
|
||||
border-color: #ee3524;
|
||||
}
|
||||
.MuiOutlinedInput-adornedStart {
|
||||
padding-left: 14px;
|
||||
}
|
||||
.MuiOutlinedInput-adornedEnd {
|
||||
padding-right: 14px;
|
||||
}
|
||||
.MuiOutlinedInput-multiline {
|
||||
padding: 18.5px 14px;
|
||||
}
|
||||
.MuiOutlinedInput-multiline.MuiOutlinedInput-marginDense {
|
||||
padding-top: 10.5px;
|
||||
padding-bottom: 10.5px;
|
||||
}
|
||||
.MuiOutlinedInput-notchedOutline {
|
||||
border-color: rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
.MuiOutlinedInput-input {
|
||||
padding: 18.5px 14px;
|
||||
}
|
||||
.MuiOutlinedInput-input:-webkit-autofill {
|
||||
border-radius: inherit;
|
||||
}
|
||||
.MuiOutlinedInput-inputMarginDense {
|
||||
padding-top: 10.5px;
|
||||
padding-bottom: 10.5px;
|
||||
}
|
||||
.MuiOutlinedInput-inputMultiline {
|
||||
padding: 0;
|
||||
}
|
||||
.MuiOutlinedInput-inputAdornedStart {
|
||||
padding-left: 0;
|
||||
}
|
||||
.MuiOutlinedInput-inputAdornedEnd {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiPaper-root {
|
||||
.MuiPaper-root {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
background-color: #fff;
|
||||
|
@ -85,3 +85,4 @@
|
|||
.MuiPaper-elevation24 {
|
||||
box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12);
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiPopover-paper {
|
||||
.MuiPopover-paper {
|
||||
outline: 0;
|
||||
position: absolute;
|
||||
max-width: calc(100% - 32px);
|
||||
|
@ -9,3 +9,4 @@
|
|||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
72
assets/css/MuiSelect.css
Normal file
72
assets/css/MuiSelect.css
Normal file
|
@ -0,0 +1,72 @@
|
|||
|
||||
.MuiSelect-select {
|
||||
cursor: pointer;
|
||||
min-width: 16px;
|
||||
user-select: none;
|
||||
border-radius: 0;
|
||||
-moz-appearance: none;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.MuiSelect-select:focus {
|
||||
border-radius: 0;
|
||||
background-color: rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.MuiSelect-select::-ms-expand {
|
||||
display: none;
|
||||
}
|
||||
.MuiSelect-select.Mui-disabled {
|
||||
cursor: default;
|
||||
}
|
||||
.MuiSelect-select[multiple] {
|
||||
height: auto;
|
||||
}
|
||||
.MuiSelect-select:not([multiple]) option, .MuiSelect-select:not([multiple]) optgroup {
|
||||
background-color: #fff;
|
||||
}
|
||||
.MuiSelect-select.MuiSelect-select {
|
||||
padding-right: 24px;
|
||||
}
|
||||
.MuiSelect-filled.MuiSelect-filled {
|
||||
padding-right: 32px;
|
||||
}
|
||||
.MuiSelect-outlined {
|
||||
border-radius: 4px;
|
||||
}
|
||||
.MuiSelect-outlined.MuiSelect-outlined {
|
||||
padding-right: 32px;
|
||||
}
|
||||
.MuiSelect-selectMenu {
|
||||
height: auto;
|
||||
overflow: hidden;
|
||||
min-height: 1.1876em;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.MuiSelect-icon {
|
||||
top: calc(50% - 12px);
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
right: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
.MuiSelect-icon.Mui-disabled {
|
||||
color: rgba(0, 0, 0, 0.26);
|
||||
}
|
||||
.MuiSelect-iconOpen {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.MuiSelect-iconFilled {
|
||||
right: 7px;
|
||||
}
|
||||
.MuiSelect-iconOutlined {
|
||||
right: 7px;
|
||||
}
|
||||
.MuiSelect-nativeInput {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.MuiSvgIcon-root {
|
||||
.MuiSvgIcon-root {
|
||||
fill: currentColor;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
|
@ -33,3 +33,4 @@
|
|||
.MuiSvgIcon-fontSizeLarge {
|
||||
font-size: 2.1875rem;
|
||||
}
|
||||
|
22
assets/css/MuiTable.css
Normal file
22
assets/css/MuiTable.css
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
.MuiTable-root {
|
||||
width: 100%;
|
||||
display: table;
|
||||
border-spacing: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.MuiTable-root caption {
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
padding: 16px;
|
||||
font-size: 0.875rem;
|
||||
text-align: left;
|
||||
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1.43;
|
||||
caption-side: bottom;
|
||||
letter-spacing: 0.01071em;
|
||||
}
|
||||
.MuiTable-stickyHeader {
|
||||
border-collapse: separate;
|
||||
}
|
||||
|
5
assets/css/MuiTableBody.css
Normal file
5
assets/css/MuiTableBody.css
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
.MuiTableBody-root {
|
||||
display: table-row-group;
|
||||
}
|
||||
|
79
assets/css/MuiTableCell.css
Normal file
79
assets/css/MuiTableCell.css
Normal file
|
@ -0,0 +1,79 @@
|
|||
|
||||
.MuiTableCell-root {
|
||||
display: table-cell;
|
||||
padding: 16px;
|
||||
font-size: 0.875rem;
|
||||
text-align: left;
|
||||
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1.43;
|
||||
border-bottom: 1px solid
|
||||
rgba(224, 224, 224, 1);
|
||||
letter-spacing: 0.01071em;
|
||||
vertical-align: inherit;
|
||||
}
|
||||
.MuiTableCell-head {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
font-weight: 500;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
.MuiTableCell-body {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.MuiTableCell-footer {
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.3125rem;
|
||||
}
|
||||
.MuiTableCell-sizeSmall {
|
||||
padding: 6px 24px 6px 16px;
|
||||
}
|
||||
.MuiTableCell-sizeSmall:last-child {
|
||||
padding-right: 16px;
|
||||
}
|
||||
.MuiTableCell-sizeSmall.MuiTableCell-paddingCheckbox {
|
||||
width: 24px;
|
||||
padding: 0 12px 0 16px;
|
||||
}
|
||||
.MuiTableCell-sizeSmall.MuiTableCell-paddingCheckbox:last-child {
|
||||
padding-left: 12px;
|
||||
padding-right: 16px;
|
||||
}
|
||||
.MuiTableCell-sizeSmall.MuiTableCell-paddingCheckbox > * {
|
||||
padding: 0;
|
||||
}
|
||||
.MuiTableCell-paddingCheckbox {
|
||||
width: 48px;
|
||||
padding: 0 0 0 4px;
|
||||
}
|
||||
.MuiTableCell-paddingCheckbox:last-child {
|
||||
padding-left: 0;
|
||||
padding-right: 4px;
|
||||
}
|
||||
.MuiTableCell-paddingNone {
|
||||
padding: 0;
|
||||
}
|
||||
.MuiTableCell-paddingNone:last-child {
|
||||
padding: 0;
|
||||
}
|
||||
.MuiTableCell-alignLeft {
|
||||
text-align: left;
|
||||
}
|
||||
.MuiTableCell-alignCenter {
|
||||
text-align: center;
|
||||
|