Skip to content
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
6 changes: 0 additions & 6 deletions app/ui/archiveTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ function password(state) {

return html`
<div class="mb-2 px-1">
<input
id="autocomplete-decoy"
class="hidden"
type="password"
value="lol"
/>
<div class="checkbox inline-block mr-3">
<input
id="add-password"
Expand Down
1 change: 0 additions & 1 deletion app/ui/downloadPassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ module.exports = function(state, emit) {

<form class="snd-password-form ${invalid ? 'is-invalid' : ''}"
onsubmit="${checkPassword}" data-no-csrf>
<input id="autocomplete-decoy" type="password" value="lol" style="display:none"/>
<input id="password-input"
class="snd-input snd-input--mask"
maxlength="4096"
Expand Down
2 changes: 1 addition & 1 deletion app/ui/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Footer extends Component {
} else {
links.push(html`
<li class="snd-footer-item">
<a href="https://github.com/tarnover/send" target="_blank">
<a href="https://github.com/tarnover/snd" target="_blank">
${translate('footerLinkSource')}
</a>
</li>
Expand Down
12 changes: 12 additions & 0 deletions app/ui/tokens.css
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,18 @@ send-upload-area {
border-bottom-color: var(--snd-danger);
}

/* stylelint-disable no-descending-specificity */
.snd-input:-webkit-autofill,
.snd-input:-webkit-autofill:hover,
.snd-input:-webkit-autofill:focus,
.snd-input:-webkit-autofill:active {
-webkit-text-fill-color: var(--snd-text);
caret-color: var(--snd-text);
box-shadow: 0 0 0 1000px var(--snd-bg) inset;
transition: background-color 9999s ease-in-out 0s;
}
/* stylelint-enable no-descending-specificity */

.is-hidden {
visibility: hidden;
}
Expand Down
Binary file modified assets/send-fb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/send-twitter.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion server/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const conf = convict({
},
footer_source_url: {
format: String,
default: 'https://github.com/tarnover/send',
default: 'https://github.com/tarnover/snd',
env: 'SEND_FOOTER_SOURCE_URL'
},
custom_footer_text: {
Expand Down
2 changes: 1 addition & 1 deletion server/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ module.exports = function(state, body = '') {
<p>
<a
class="link"
href="https://github.com/tarnover/send/blob/master/docs/faq.md#why-does-send-require-javascript"
href="https://github.com/tarnover/snd/blob/master/docs/faq.md#why-does-send-require-javascript"
>
${state.translate('whyJavascript')}
</a>
Expand Down
Loading