[all] fix markup for win xp

This commit is contained in:
Maxim Kadushkin 2022-02-24 22:40:22 +03:00
parent 4ba266c6c7
commit 2241438fc7
2 changed files with 21 additions and 6 deletions

View file

@ -104,9 +104,11 @@ define([
'</div>' +
'<div class="hedset">' +
'<div class="btn-slot" id="slot-btn-user-name"></div>' +
'<div class="btn-current-user btn-header hidden">' +
'<i class="icon toolbar__icon icon--inverse btn-user"></i>' +
'</div>' +
'<div class="btn-slot">' +
'<div class="btn-current-user btn-header hidden">' +
'<i class="icon toolbar__icon icon--inverse btn-user"></i>' +
'</div>' +
'</div>'
'</div>' +
'</section>' +
'</section>';

View file

@ -1,6 +1,19 @@
.winxp {
.toolbar .tabs>ul,
.toolbar .extra .btn-slot,#box-document-title .btn-slot {
height:28px;
@toolbar-editor-height: 28px;
@toolbar-viewer-height: 32px;
.toolbar {
.tabs > ul, .extra .btn-slot {
height: @toolbar-editor-height;
}
&.toolbar-view {
.tabs > ul, .extra .btn-slot {
height: @toolbar-viewer-height;
}
}
}
#box-document-title .btn-slot {
height: @toolbar-editor-height;
}
}