2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 07:23:35 +08:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 07:23:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_SetEmailDialog_email_input {
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid $input-border-color;
|
|
|
|
padding: 9px;
|
|
|
|
color: $input-fg-color;
|
2021-08-12 17:10:47 +08:00
|
|
|
background-color: $background;
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-15px;
|
2018-04-12 07:23:35 +08:00
|
|
|
width: 100%;
|
|
|
|
max-width: 280px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SetEmailDialog_email_input:focus {
|
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
2021-11-11 21:37:29 +08:00
|
|
|
border: 1px solid $accent;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|