mirror of https://github.com/zulip/zulip.git
development: Add bootstrap CSS rules for select in dev login form.
This commit adds bootstrap CSS rules used for select element in dev login form in portico_signin.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
e14b1f03fa
commit
72b528e22b
|
@ -99,6 +99,20 @@ html {
|
|||
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
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%);
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
}
|
||||
|
||||
&.forgot-password-container {
|
||||
|
|
Loading…
Reference in New Issue