This commit is contained in:
OVSharova 2022-04-27 13:44:44 +03:00
parent f046177e53
commit c6ef192dea
2 changed files with 7 additions and 5 deletions

View file

@ -345,7 +345,6 @@ define([
me.setDocTile(name); me.setDocTile(name);
me.labelDocName.select(); me.labelDocName.select();
},100); },100);
me.labelDocName.addClass('active-title');
} }
function onDocNameKeyDown(e) { function onDocNameKeyDown(e) {
@ -729,7 +728,6 @@ define([
me.withoutExt = false; me.withoutExt = false;
me.setDocTile(me.documentCaption); me.setDocTile(me.documentCaption);
} }
me.labelDocName.removeClass('active-title');
}, },
'paste': function (e) { 'paste': function (e) {
setTimeout(function() { setTimeout(function() {

View file

@ -495,13 +495,17 @@
overflow: hidden; overflow: hidden;
text-align: center; text-align: center;
font-size: 12px; font-size: 12px;
line-height: 28px; line-height: 22px;
margin: 2px 0;
background-color: transparent; background-color: transparent;
border: 0 none; border: 0 none;
cursor: default; cursor: default;
&:hover,&.active-title{ &:hover,&:focus{
border: @highlight-header-button-hover solid 2px; box-shadow: 0 0 0 1px @highlight-header-button-hover-ie;
box-shadow: 0 0 0 1px @highlight-header-button-hover;
/*border:@highlight-header-button-hover-ie solid 1px;
border:@highlight-header-button-hover solid 1px;*/
border-radius: 3px; border-radius: 3px;
cursor: text; cursor: text;
} }