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:
Sahil Batra 2023-05-22 22:08:02 +05:30 committed by Tim Abbott
parent a62a863f67
commit 96eaadda71
1 changed files with 17 additions and 0 deletions

View File

@ -92,6 +92,23 @@ tr.admin td:first-child {
.support-discount-form { .support-discount-form {
position: relative; position: relative;
top: -50px; 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 { .support-plan-type-form {