mirror of https://github.com/zulip/zulip.git
activity: Add bootstrap CSS styles for number type inputs.
This commit adds bootstrap CSS rules for number type inputs in activity page to activity.css as we will be removing them from bootstrap.css in further commits.
This commit is contained in:
parent
a62a863f67
commit
96eaadda71
|
@ -92,6 +92,23 @@ tr.admin td:first-child {
|
|||
.support-discount-form {
|
||||
position: relative;
|
||||
top: -50px;
|
||||
|
||||
& input {
|
||||
padding: 4px 6px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid hsl(0deg 0% 80%);
|
||||
color: hsl(0deg 0% 33%);
|
||||
margin-bottom: 10px;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
box-shadow: inset 0 1px 1px hsla(0deg 0 0 / 7.5%);
|
||||
|
||||
&: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(206.494deg 80% 62% / 60%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.support-plan-type-form {
|
||||
|
|
Loading…
Reference in New Issue