Skip to content
Snippets Groups Projects
Unverified Commit 410aacae authored by Christoph Wurst's avatar Christoph Wurst
Browse files

Improve the share link password error feedback with a red border

parent a8064fdd
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -73,6 +73,12 @@ ...@@ -73,6 +73,12 @@
} }
.popovermenu { .popovermenu {
.linkPassMenu { .linkPassMenu {
input.error {
border-color: var(--color-error) !important;
&[type="submit"] {
border-left: none;
}
}
.share-pass-submit { .share-pass-submit {
width: auto !important; width: auto !important;
} }
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -352,6 +352,7 @@ ...@@ -352,6 +352,7 @@
} }
var $input = $li.find('.linkPassText'); var $input = $li.find('.linkPassText');
$input.removeClass('error'); $input.removeClass('error');
$input.parent().find('input').removeClass('error');
var password = $input.val(); var password = $input.val();
if ($li.find('.linkPassText').attr('placeholder') === PASSWORD_PLACEHOLDER_MESSAGE_OPTIONAL) { if ($li.find('.linkPassText').attr('placeholder') === PASSWORD_PLACEHOLDER_MESSAGE_OPTIONAL) {
...@@ -380,6 +381,9 @@ ...@@ -380,6 +381,9 @@
$loading.removeClass('inlineblock').addClass('hidden'); $loading.removeClass('inlineblock').addClass('hidden');
}, },
error: function(model, msg) { error: function(model, msg) {
// Add visual feedback to both the input and the submit button
$input.parent().find('input').addClass('error');
// destroy old tooltips // destroy old tooltips
var $container = $input.parent(); var $container = $input.parent();
$container.tooltip('destroy'); $container.tooltip('destroy');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment