mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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:
committed by
Tim Abbott
parent
454400605b
commit
cf55e66c74
@@ -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 -->
|
||||
|
@@ -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%;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user