159 lines
2.9 KiB
SCSS
159 lines
2.9 KiB
SCSS
@import "/imports/ui/stylesheets/variables/_all";
|
|
@import "/imports/ui/stylesheets/mixins/_scrollable";
|
|
|
|
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
}
|
|
.subTitle {
|
|
font-size: var(--font-size-base);
|
|
text-align: justify;
|
|
color: var(--color-gray-light);
|
|
}
|
|
|
|
.breakoutSettings {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
grid-template-rows: 1fr;
|
|
grid-gap: 1rem;
|
|
margin-bottom: 1rem;
|
|
@include mq($small-only) {
|
|
grid-template-columns: 1fr ;
|
|
grid-template-rows: 1fr 1fr 1fr;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.labelText {
|
|
color: var(--color-gray);
|
|
white-space: nowrap;
|
|
margin-bottom: .5rem;
|
|
}
|
|
.duration,
|
|
.inputRooms {
|
|
background-color: var(--color-white);
|
|
color: var(--color-gray);
|
|
border: 1px solid var(--color-gray-lighter);
|
|
border-radius: var(--border-radius);
|
|
width: 100%;
|
|
padding-top: .25rem;
|
|
padding-bottom: .25rem;
|
|
padding: .25rem 0 .25rem .25rem;
|
|
}
|
|
|
|
.duration {
|
|
width: 50%;
|
|
text-align: center;
|
|
padding: .25rem;
|
|
&::placeholder {
|
|
color: var(--color-gray);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.iconsColor {
|
|
cursor: pointer;
|
|
color: var(--color-gray-light);
|
|
font-size: var(--font-size-large);
|
|
@include mq($small-only) {
|
|
font-size: 2rem;
|
|
margin-left: .5rem;
|
|
}
|
|
}
|
|
|
|
.durationArea {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.randomText {
|
|
color: var(--color-primary);
|
|
font-size: var(--font-size-small);
|
|
white-space: nowrap;
|
|
margin-bottom: .5rem;
|
|
align-self: flex-end;
|
|
}
|
|
|
|
.freeJoinCheckbox {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
}
|
|
|
|
.freeJoinLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: var(--font-size-small);
|
|
& > * {
|
|
margin-right: .5rem;
|
|
}
|
|
}
|
|
|
|
.boxContainer {
|
|
height: 50vh;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
grid-template-rows: 33% 33% 33%;
|
|
grid-gap: 1.5rem 1rem;
|
|
}
|
|
|
|
.changeToWarn {
|
|
position: relative;
|
|
& > .breakoutBox {
|
|
border-color: var(--color-danger) !important;
|
|
}
|
|
|
|
& > .freeJoinLabel {
|
|
color: var(--color-danger);
|
|
}
|
|
}
|
|
|
|
.breakoutBox {
|
|
@include scrollbox-vertical();
|
|
width: 100%;
|
|
height: 80%;
|
|
min-height: 4rem;
|
|
max-height: 8rem;
|
|
border: 1px solid var(--color-gray-lighter);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.freeJoinLabel {
|
|
font-size: var(--font-size-small);
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.leastOneWarn {
|
|
margin: .25rem;
|
|
position: absolute;
|
|
font-size: var(--font-size-small);
|
|
color: var(--color-danger);
|
|
font-weight: 200;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.roomUserItem {
|
|
width: 11rem;
|
|
margin: 0;
|
|
padding-top: .25rem;
|
|
padding-bottom: .25rem;
|
|
padding-left: .25rem;
|
|
margin-right: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.selectedItem {
|
|
background-color: var(--color-primary);
|
|
color: var(--color-white)
|
|
}
|
|
|
|
.dontShow {
|
|
display: none;
|
|
} |