mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Add CSS for CreateGroupDialog to give group ID input suffix and prefix style
This commit is contained in:
parent
04c866ce9c
commit
67bc346ebb
@ -33,3 +33,30 @@ limitations under the License.
|
|||||||
background-color: $primary-bg-color;
|
background-color: $primary-bg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_CreateGroupDialog_input.has_prefix.has_suffix {
|
||||||
|
border-radius: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_CreateGroupDialog_input_group {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_CreateGroupDialog_input_prefix,
|
||||||
|
.mx_CreateGroupDialog_input_suffix {
|
||||||
|
height: 35px;
|
||||||
|
padding: 0px 5px;
|
||||||
|
line-height: 37px;
|
||||||
|
background-color: $input-border-color;
|
||||||
|
border: 1px solid $input-border-color;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_CreateGroupDialog_input_prefix {
|
||||||
|
border-right: 0px;
|
||||||
|
border-radius: 3px 0px 0px 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_CreateGroupDialog_input_suffix {
|
||||||
|
border-left: 0px;
|
||||||
|
border-radius: 0px 3px 3px 0px;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user