[Common] Fix window title

This commit is contained in:
Julia Radzhabova 2019-07-31 11:16:58 +03:00
parent 66ba422e05
commit bd1d3af79f
2 changed files with 7 additions and 1 deletions

View file

@ -164,7 +164,7 @@ define([
'<% if (closable!==false) %>' +
'<div class="tool close img-commonctrl"></div>' +
'<% %>' +
'<span class="title"><%= title %></span> ' +
'<div class="title"><%= title %></div> ' +
'</div>' +
'<% } %>' +
'<div class="body"><%= tpl %></div>' +

View file

@ -85,6 +85,12 @@
&.resizing {
cursor: inherit !important;
}
.title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
> .body {