mirror of https://github.com/zulip/zulip.git
settings: Re-add bootstrap CSS to custom time limit inputs.
This commit re-adds bootstrap CSS for custom time limit inputs used by various settings by using more specific selector in settings.css. This is a prep commit for removing bootstrap CSS for text type inputs.
This commit is contained in:
parent
aef557054e
commit
f5208a7db6
|
@ -1441,6 +1441,20 @@ $option_title_width: 180px;
|
|||
}
|
||||
}
|
||||
|
||||
.time-limit-custom-input {
|
||||
padding: 4px 6px;
|
||||
color: hsl(0deg 0% 33%);
|
||||
border: 1px solid hsl(0deg 0% 80%);
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
|
||||
&:focus {
|
||||
border-color: hsl(206deg 80% 62% / 80%);
|
||||
outline: 0;
|
||||
box-shadow: inset 0 1px 1px hsl(0deg 0% 0% / 7.5%),
|
||||
0 0 8px hsl(206deg 80% 62% / 60%);
|
||||
}
|
||||
}
|
||||
|
||||
#profile-settings,
|
||||
#edit-user-form {
|
||||
.custom_user_field {
|
||||
|
|
Loading…
Reference in New Issue