css: Re-add bootstrap CSS for inline topic edit input.

This commit re-adds the required bootstrap CSS rules for inline
topic edit input to the specific selector in zulip.css.

This is a prep commit for removing bootstrap CSS for text type
inputs.
This commit is contained in:
Sahil Batra 2023-06-20 12:48:35 +05:30 committed by Tim Abbott
parent 918d00c2d4
commit 924879a049
1 changed files with 11 additions and 0 deletions

View File

@ -1786,6 +1786,17 @@ div.focused_table {
vertical-align: baseline;
line-height: 0px;
box-shadow: none;
color: hsl(0deg 0% 33%);
border-radius: 4px;
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%);
}
}
}