Adjust Ctrl-e New pad modals

pull/1/head
David Benqué 2021-03-12 14:30:57 +00:00
parent 35591d363d
commit 37a76ee60b
3 changed files with 3 additions and 2 deletions

View File

@ -278,6 +278,7 @@
cursor: pointer;
}
&> p {
text-align: center;
margin: 20px;
}
&> div {

View File

@ -1936,7 +1936,7 @@ define([
$body: $('body')
});
var $modal = modal.$modal;
var $title = $('<h3>').text(Messages.fm_newFile);
var $title = $('<h3>').html("<i class='fa fa-plus'></i> " + Messages.fm_newButton);
var $description = $('<p>').html(Messages.creation_newPadModalDescription);
$modal.find('.cp-modal').append($title);
$modal.find('.cp-modal').append($description);

View File

@ -3074,7 +3074,7 @@ define([
$body: $('body')
});
var $modal = modal.$modal;
var $title = $('<h3>').text(Messages.fm_newFile);
var $title = $('<h3>').html("<i class='fa fa-plus'></i> " + Messages.fm_newButton);
var $description = $('<p>').text(Messages.fm_newButtonTitle);
$modal.find('.cp-modal').append($title);
$modal.find('.cp-modal').append($description);