TeaWeb/shared/css/static/modal-invite.scss

73 lines
1,011 B
SCSS
Raw Normal View History

2019-10-13 21:33:07 +02:00
@import "mixin";
@import "properties";
2019-05-25 17:54:26 +02:00
.modal-invite {
2019-10-13 21:33:07 +02:00
padding: .5em!important;
@include user-select(none);
2019-05-25 17:54:26 +02:00
.general-properties {
2019-10-13 21:33:07 +02:00
flex: 0;
2019-05-25 17:54:26 +02:00
display: flex;
2019-10-13 21:33:07 +02:00
flex-direction: column;
2019-05-25 17:54:26 +02:00
justify-content: stretch;
2019-10-13 21:33:07 +02:00
.form-group {
flex: 0;
}
.container-settings {
flex: 0;
margin-bottom: .5em;
display: flex;
flex-direction: row;
justify-content: space-between;
label {
display: flex;
flex-direction: row;
justify-content: flex-start;
> * {
align-self: center;
}
a {
margin-left: .5em;
}
}
2019-05-25 17:54:26 +02:00
}
}
.text-output {
2019-10-13 21:33:07 +02:00
background-color: $color_list_background;
border: 1px $color_list_border solid;
border-radius: $border_radius_large;
padding: .5em;
min-height: 5em;
2019-05-25 17:54:26 +02:00
width: 100%;
resize: none;
2019-10-13 21:33:07 +02:00
color: #999999;
@include user-select(text);
2019-05-25 17:54:26 +02:00
}
.buttons {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 5px;
.icon {
vertical-align: middle;
margin-right: 5px;
}
}
}