mirror of https://github.com/zulip/zulip.git
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:
parent
d708bc338c
commit
6de03c415c
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue