mirror of https://github.com/xwiki-labs/cryptpad
Fix edit title font size issue
This commit is contained in:
parent
daa4675a44
commit
baa35a2a02
|
@ -713,8 +713,8 @@
|
|||
box-sizing: border-box;
|
||||
cursor: auto;
|
||||
width: 300px;
|
||||
font-size: 30px;
|
||||
padding: 0 5px;
|
||||
font-size: 30px !important;
|
||||
padding: 0 5px !important;
|
||||
height: 43px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -717,7 +717,7 @@ MessengerUI, Messages) {
|
|||
|
||||
var displayInput = function () {
|
||||
if (toolbar.connected === false) { return; }
|
||||
$input.width(Math.max($text.width(), 300)+'px');
|
||||
$input.width(Math.max(($text.width() + 10), 300)+'px');
|
||||
$text.hide();
|
||||
//$pencilIcon.css('display', 'none');
|
||||
var inputVal = suggestName() || "";
|
||||
|
|
Loading…
Reference in New Issue