Merge pull request #1602 from ONLYOFFICE/feature/fix-header-markup-for-xp
[all] fix markup for win xp
This commit is contained in:
commit
9ced8e6376
|
@ -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>';
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue