integrations_dev_panel: Add bootstrap CSS rules for select elements.

This commit adds bootstrap CSS rules used for select elements in
devtools integrations panel in integerations_dev_panel.css.

This change is done so we can safely remove select CSS rules from
bootstrap.css as a part of our process to remove bootstrap.
This commit is contained in:
Sahil Batra 2022-12-21 20:05:15 +05:30 committed by Tim Abbott
parent d708bc338c
commit 6de03c415c
1 changed files with 14 additions and 0 deletions

View File

@ -43,6 +43,20 @@
input {
font-family: inherit;
}
select {
height: 30px;
padding: 4px 6px;
width: 220px;
font-size: 14px;
color: hsl(0, 0%, 33%);
border-radius: 4px;
border: 1px solid hsl(0, 0%, 80%);
margin-bottom: 10px;
cursor: pointer;
background-color: hsl(0, 0%, 100%);
vertical-align: middle;
}
}
#fixture_body {