mirror of
https://github.com/mue/mue.git
synced 2026-07-09 21:45:26 +02:00
* refactor(files): Initial commit on experimental file structure * refactor(structure): New components system * refactor(structure): Tidy settings' components * Refactor(structure): Component exports and imports * refactor(settings): Use new component imports * feat: unified background.js script * fix(build): Partially, distributions still not ready * feat: critical error on noscript, light theme support for it * fix(background): Critical issue of code making every background #000 * refactor(welcome): Partition into different files + shared components - This took too long and destroyed my sanity --------- Co-authored-by: alexsparkes <turbomarshmello@gmail.com> Co-authored-by: alexsparkes <alexsparkes@gmail.com>
111 lines
1.8 KiB
SCSS
111 lines
1.8 KiB
SCSS
@import 'scss/variables';
|
|
|
|
.smallModal {
|
|
@extend %tabText;
|
|
|
|
display: flex;
|
|
flex-flow: column;
|
|
gap: 15px;
|
|
padding: 15px;
|
|
width: 320px;
|
|
|
|
@include themed {
|
|
background: t($modal-secondaryColour);
|
|
}
|
|
|
|
.resetFooter {
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: flex-end;
|
|
gap: 20px;
|
|
|
|
button {
|
|
gap: 20px;
|
|
display: flex;
|
|
flex-flow: row;
|
|
}
|
|
}
|
|
|
|
.textButton {
|
|
@include basicIconButton(11px, 1.3rem, modal-text);
|
|
|
|
border: none !important;
|
|
}
|
|
|
|
.tooltipTitle {
|
|
@include themed {
|
|
background: t($modal-sidebar);
|
|
box-shadow: 0 0 0 1px t($modal-sidebarActive);
|
|
color: t($color);
|
|
}
|
|
}
|
|
|
|
.shareButtons {
|
|
justify-content: space-between;
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
button {
|
|
place-items: center;
|
|
display: grid;
|
|
|
|
@include basicIconButton(11px, 1.3rem, modal);
|
|
}
|
|
|
|
.copy {
|
|
display: flex;
|
|
flex-flow: row;
|
|
gap: 15px;
|
|
|
|
input[type='text'] {
|
|
@include themed {
|
|
background: t($modal-sidebar);
|
|
border-radius: t($borderRadius);
|
|
box-shadow: 0 0 0 1px t($modal-sidebarActive);
|
|
padding: 11px;
|
|
flex: 1;
|
|
color: t($color);
|
|
}
|
|
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
input[type='text'] {
|
|
@include themed {
|
|
background: t($modal-sidebar);
|
|
border-radius: t($borderRadius);
|
|
box-shadow: 0 0 0 1px t($modal-sidebarActive);
|
|
padding: 11px;
|
|
flex: 1;
|
|
color: t($color);
|
|
}
|
|
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.close {
|
|
padding: 15px;
|
|
place-items: center;
|
|
display: grid;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
@include themed {
|
|
background: t($modal-sidebar);
|
|
border-radius: t($borderRadius);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.shareHeader {
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|