mirror of https://github.com/vector-im/riot-web
62 lines
1.5 KiB
SCSS
62 lines
1.5 KiB
SCSS
/*
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_CreateGroupDialog_inputRow {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mx_CreateGroupDialog_label {
|
|
text-align: left;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
.mx_CreateGroupDialog_input {
|
|
font-size: $font-15px;
|
|
border-radius: 3px;
|
|
border: 1px solid $input-border-color;
|
|
padding: 9px;
|
|
color: $primary-fg-color;
|
|
background-color: $primary-bg-color;
|
|
}
|
|
|
|
.mx_CreateGroupDialog_input_hasPrefixAndSuffix {
|
|
border-radius: 0px;
|
|
}
|
|
|
|
.mx_CreateGroupDialog_input_group {
|
|
display: flex;
|
|
}
|
|
|
|
.mx_CreateGroupDialog_prefix,
|
|
.mx_CreateGroupDialog_suffix {
|
|
padding: 0px 5px;
|
|
line-height: $font-37px;
|
|
background-color: $input-darker-bg-color;
|
|
border: 1px solid $input-border-color;
|
|
text-align: center;
|
|
}
|
|
|
|
.mx_CreateGroupDialog_prefix {
|
|
border-right: 0px;
|
|
border-radius: 3px 0px 0px 3px;
|
|
}
|
|
|
|
.mx_CreateGroupDialog_suffix {
|
|
border-left: 0px;
|
|
border-radius: 0px 3px 3px 0px;
|
|
}
|