billing: Use same font-family for inputs as for rest of the page.

Rest of the page uses "Source sans 3" font and also most of
input and select elements in rest of the app use the same font.

This commit updates the select, input and textarea elements in
"/upgrade" page to use "Source sans 3" font and not the one set
by Bootstrap.
This commit is contained in:
Sahil Batra
2022-12-26 23:24:03 +05:30
committed by Tim Abbott
parent 541076ca68
commit 1cfded7e6f

View File

@@ -309,6 +309,12 @@
#license-manual-section { #license-manual-section {
display: none; display: none;
} }
select,
input,
textarea {
font-family: inherit;
}
} }
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-outer-spin-button,
@@ -341,8 +347,6 @@ input[name="licenses"] {
box-shadow: inset 0 1px 1px hsla(0, 0%, 0%, 0.075); box-shadow: inset 0 1px 1px hsla(0, 0%, 0%, 0.075);
transition: border linear 0.2s, box-shadow linear 0.2s; transition: border linear 0.2s, box-shadow linear 0.2s;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
&:focus { &:focus {
border-color: hsla(206.5, 80%, 62%, 0.8); border-color: hsla(206.5, 80%, 62%, 0.8);
outline: 0; outline: 0;