mirror of https://github.com/zulip/zulip.git
integrations_dev_panel: Re-add bootstrap CSS for text inputs.
This commit re-adds bootstrap CSS for text inputs in devtools integrations page using a more specific selector in integrations_dev_panel.css. This is a prep commit for removing bootstrap CSS for text type inputs.
This commit is contained in:
parent
8ae71c8f90
commit
ec2826188b
|
@ -57,6 +57,23 @@
|
|||
background-color: hsl(0deg 0% 100%);
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
& input {
|
||||
padding: 4px 6px;
|
||||
color: hsl(0deg 0% 33%);
|
||||
border-radius: 4px;
|
||||
border: 1px solid hsl(0deg 0% 80%);
|
||||
box-shadow: inset 0 1px 1px hsl(0deg 0% 0% / 7.5%);
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
margin-bottom: 10px;
|
||||
|
||||
&: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%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#fixture_body {
|
||||
|
|
Loading…
Reference in New Issue