css: Move "style" from upgrade.html sponsorship form to billing.css.

Our linters demand "style" to not be used in .html and will complain
when trying to move this chunk of html to another .html file.
This commit is contained in:
Mateusz Mandera
2023-02-12 23:58:59 +01:00
committed by Tim Abbott
parent 454400605b
commit cf55e66c74
2 changed files with 10 additions and 2 deletions

View File

@@ -263,11 +263,11 @@
<label>
<h4>Organization website</h4>
</label>
<input name="website" style="width: 100%;" type="text" class="input-large" placeholder="{{ _('Leave blank if your organization does not have a website.') }}"/>
<input name="website" type="text" class="input-large" placeholder="{{ _('Leave blank if your organization does not have a website.') }}"/>
<label>
<h4>Describe your organization briefly</h4>
</label>
<textarea name="description" style="width: 100%;" cols="100" rows="5" required></textarea>
<textarea name="description" cols="100" rows="5" required></textarea>
<br />
<p id="sponsorship-discount-details"></p>
<!-- Disabled buttons do not fire any events, so we need a container div that isn't disabled for tippyjs to work -->

View File

@@ -374,4 +374,12 @@ input[name="licenses"] {
cursor: pointer;
background-color: hsl(0deg 0% 100%);
}
& input[name="website"] {
width: 100%;
}
& textarea[name="description"] {
width: 100%;
}
}