Merge pull request #480 from pdehaan/issue-443

Increase font weight to 500 on <button>s and <label>s
This commit is contained in:
Danny Coates 2017-08-08 19:43:46 -07:00 committed by GitHub
commit c13839a522
3 changed files with 8 additions and 5 deletions

View File

@ -138,6 +138,10 @@ a {
text-decoration: none; text-decoration: none;
} }
.btn {
font-weight: 500;
}
/** page-one **/ /** page-one **/
.title { .title {
@ -644,7 +648,6 @@ tbody {
background: #0297f8; background: #0297f8;
border: 1px solid #0297f8; border: 1px solid #0297f8;
border-radius: 5px; border-radius: 5px;
font-weight: 300;
cursor: pointer; cursor: pointer;
} }

View File

@ -13,7 +13,7 @@
<div class="description" data-l10n-id="downloadMessage"></div> <div class="description" data-l10n-id="downloadMessage"></div>
<img src="/resources/illustration_download.svg" id="download-img" data-l10n-id="downloadAltText"/> <img src="/resources/illustration_download.svg" id="download-img" data-l10n-id="downloadAltText"/>
<div> <div>
<button id="download-btn" data-l10n-id="downloadButtonLabel"></button> <button id="download-btn" class="btn" data-l10n-id="downloadButtonLabel"></button>
</div> </div>
</div> </div>

View File

@ -11,7 +11,7 @@
<span id="file-size-msg"><em data-l10n-id="uploadPageSizeMessage"></em></span> <span id="file-size-msg"><em data-l10n-id="uploadPageSizeMessage"></em></span>
<form method="post" action="upload" enctype="multipart/form-data"> <form method="post" action="upload" enctype="multipart/form-data">
<label for="file-upload" id="browse" <label for="file-upload" id="browse"
data-l10n-id="uploadPageBrowseButton"></label> data-l10n-id="uploadPageBrowseButton" class="btn"></label>
<input id="file-upload" type="file" name="fileUploaded" /> <input id="file-upload" type="file" name="fileUploaded" />
</form> </form>
</div> </div>
@ -58,9 +58,9 @@
<div id="copy-text"></div> <div id="copy-text"></div>
<div id="copy"> <div id="copy">
<input id="link" type="url" value="" readonly/> <input id="link" type="url" value="" readonly/>
<button id="copy-btn" data-l10n-id="copyUrlFormButton"></button> <button id="copy-btn" class="btn" data-l10n-id="copyUrlFormButton"></button>
</div> </div>
<button id="delete-file" data-l10n-id="deleteFileButton"></button> <button id="delete-file" class="btn" data-l10n-id="deleteFileButton"></button>
<a class="send-new" data-state="completed" data-l10n-id="sendAnotherFileLink" href="/"></a> <a class="send-new" data-state="completed" data-l10n-id="sendAnotherFileLink" href="/"></a>
</div> </div>
</div> </div>