mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-02-10 18:05:32 +08:00
Merge pull request 'feature/add-padding-left-in-more-menu' (#910) from feature/add-padding-left-in-more-menu into develop
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/web-apps/pulls/910
This commit is contained in:
@ -90,10 +90,10 @@ define([
|
||||
'<div class="group">' +
|
||||
'<span id="btn-review-on" class="btn-slot text x-huge"></span>' +
|
||||
'</div>' +
|
||||
'<div class="group no-group-mask review" style="padding-left: 0;padding-right:0;">' +
|
||||
'<div class="group no-group-mask review padding-hor-zerro">' +
|
||||
'<span id="btn-review-view" class="btn-slot text x-huge"></span>' +
|
||||
'</div>' +
|
||||
'<div class="group move-changes" style="padding-left: 0;padding-right:0;">' +
|
||||
'<div class="group move-changes padding-hor-zerro">' +
|
||||
'<span id="btn-change-prev" class="btn-slot text x-huge"></span>' +
|
||||
'<span id="btn-change-next" class="btn-slot text x-huge"></span>' +
|
||||
'<span id="btn-change-accept" class="btn-slot text x-huge"></span>' +
|
||||
|
||||
@ -775,3 +775,8 @@ body {
|
||||
fill: var(--icon-success, #78b588);
|
||||
stroke: transparent;
|
||||
}
|
||||
|
||||
.padding-hor-zerro {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
@ -460,6 +460,18 @@
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
}
|
||||
&[data-tab=plugins] {
|
||||
padding: 12px 10px 7px 6px;
|
||||
.rtl & {
|
||||
padding: 12px 6px 7px 10px;
|
||||
}
|
||||
div .group:first-child {
|
||||
.padding-left(0);
|
||||
}
|
||||
div .separator:first-child + .group {
|
||||
.padding-left(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.more-box {
|
||||
@ -506,6 +518,12 @@
|
||||
// position: relative;
|
||||
// }
|
||||
//}
|
||||
|
||||
&.padding-hor-zerro {
|
||||
&:not(:first-child) {
|
||||
.padding-hor-zerro();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.elset {
|
||||
|
||||
Reference in New Issue
Block a user