mirror of
https://github.com/mue/mue.git
synced 2026-07-14 20:43:54 +02:00
102 lines
2.1 KiB
SCSS
102 lines
2.1 KiB
SCSS
@import '../../../../../scss/modules/buttons';
|
|
|
|
.refresh {
|
|
@extend %settingsButton;
|
|
|
|
background-color: map-get($button-colours, 'confirm');
|
|
border: 2px solid map-get($button-colours, 'confirm');
|
|
|
|
&:hover {
|
|
border: 2px solid map-get($button-colours, 'confirm');
|
|
color: map-get($button-colours, 'confirm');
|
|
}
|
|
}
|
|
|
|
.reset {
|
|
@extend %settingsButton;
|
|
|
|
margin-left: 5px;
|
|
background-color: map-get($button-colours, 'reset');
|
|
border: 2px solid map-get($button-colours, 'reset');
|
|
|
|
&:hover {
|
|
border: 2px solid map-get($button-colours, 'reset');
|
|
color: map-get($button-colours, 'reset');
|
|
}
|
|
}
|
|
|
|
.add {
|
|
@extend %settingsButton;
|
|
|
|
background-color: map-get($button-colours, 'other');
|
|
border: 2px solid map-get($button-colours, 'other');
|
|
|
|
&:hover {
|
|
color: map-get($button-colours, 'other');
|
|
border: 2px solid map-get($button-colours, 'other');
|
|
}
|
|
}
|
|
|
|
.close {
|
|
@extend %settingsButton;
|
|
|
|
padding: 10px 50px 10px 50px;
|
|
background-color: map-get($button-colours, 'other');
|
|
border: 2px solid map-get($button-colours, 'other');
|
|
|
|
&:hover {
|
|
color: map-get($button-colours, 'other');
|
|
border: 2px solid map-get($button-colours, 'other');
|
|
}
|
|
}
|
|
|
|
.export,
|
|
.uploadbg,
|
|
.import {
|
|
@extend %settingsButton;
|
|
|
|
background-color: map-get($button-colours, 'other');
|
|
color: map-get($theme-colours, 'primary');
|
|
border: 2px solid map-get($button-colours, 'other');
|
|
|
|
&:hover {
|
|
color: map-get($button-colours, 'other');
|
|
border: 2px solid map-get($button-colours, 'other');
|
|
}
|
|
}
|
|
|
|
.export,
|
|
.import {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.MuiIconButton-label > svg.MuiSvgIcon-root {
|
|
color: var(--modal-text) !important;
|
|
}
|
|
|
|
.sortableitem {
|
|
background: var(--sidebar) !important;
|
|
padding: 10px 80px;
|
|
padding-left: 10px;
|
|
border-radius: 15px;
|
|
margin-bottom: 10px;
|
|
font-size: 1.325rem;
|
|
color: var(--modal-text) !important;
|
|
cursor: move;
|
|
width: 150px;
|
|
z-index: 999 !important;
|
|
|
|
svg {
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
&:hover {
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.15);
|
|
transition: 0.3s;
|
|
}
|
|
}
|
|
|
|
.MuiTouchRipple-root {
|
|
background: transparent;
|
|
}
|