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:
Sahil Batra 2023-06-22 20:13:42 +05:30 committed by Tim Abbott
parent aef557054e
commit f5208a7db6
1 changed files with 14 additions and 0 deletions

View File

@ -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 {