Skip to content
This repository was archived by the owner on May 22, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Increase font weight to 500 on <button>s and <label>s
  • Loading branch information
pdehaan committed Aug 8, 2017
commit 77b6fb138f0aa7544e9e56dc3a40f3c586245015
5 changes: 4 additions & 1 deletion frontend/src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ a {
text-decoration: none;
}

.btn {
font-weight: 500;
}

/** page-one **/

.title {
Expand Down Expand Up @@ -644,7 +648,6 @@ tbody {
background: #0297f8;
border: 1px solid #0297f8;
border-radius: 5px;
font-weight: 300;
cursor: pointer;
}

Expand Down
2 changes: 1 addition & 1 deletion views/download.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="description" data-l10n-id="downloadMessage"></div>
<img src="/resources/illustration_download.svg" id="download-img" data-l10n-id="downloadAltText"/>
<div>
<button id="download-btn" data-l10n-id="downloadButtonLabel"></button>
<button id="download-btn" class="btn" data-l10n-id="downloadButtonLabel"></button>
</div>
</div>

Expand Down
6 changes: 3 additions & 3 deletions views/index.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<span id="file-size-msg"><em data-l10n-id="uploadPageSizeMessage"></em></span>
<form method="post" action="upload" enctype="multipart/form-data">
<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" />
</form>
</div>
Expand Down Expand Up @@ -58,9 +58,9 @@
<div id="copy-text"></div>
<div id="copy">
<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>
<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>
</div>
</div>
Expand Down