scratch-gui
Version:
GraphicaL User Interface for creating and running Scratch 3.0 projects
120 lines (97 loc) • 2.15 kB
CSS
@import "../../css/colors.css";
@import "../../css/units.css";
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
background-color: $ui-modal-overlay;
}
.modal-content * {
box-sizing: border-box;
}
.modal-content {
margin: 100px auto;
outline: none;
border: 4px solid $ui-white-transparent;
padding: 0;
border-radius: $space;
user-select: none;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: $text-primary;
overflow: hidden;
}
.modal-content.full-screen {
position: absolute;
display: flex;
height: 100%;
width: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: 'touch';
user-select: none;
background-color: $ui-secondary;
/* Default modal resets */
margin: 0;
border: none;
border-radius: 0;
}
/*
Modal header has 3 items:
|filter title x|
Use the same width for both side item containers,
so that title remains centered
*/
$sides: 20rem;
.header {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
height: $library-header-height;
box-sizing: border-box;
width: 100%;
background-color: $motion-primary;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
font-weight: normal;
}
.header-item {
display: flex;
align-items: center;
padding: 1rem;
text-decoration: none;
color: $ui-white;
user-select: none;
}
.header-item-filter {
display: flex;
flex-basis: $sides;
justify-content: flex-start;
}
.header-item-title {
flex-grow: 1;
flex-shrink: 0;
justify-content: center;
user-select: none;
letter-spacing: 0.4px;
cursor: default;
margin: 0 -$sides 0 0;
}
.full-screen .header-item-title {
margin: 0 0 0 -$sides;
}
.header-item-close {
flex-basis: $sides;
justify-content: flex-end;
z-index: 1;
}
.full-screen .header-item-close {
order: -1;
justify-content: flex-start;
}
.back-button {
font-weight: normal;
padding-left: 0;
}