Merge pull request #755 from ONLYOFFICE/feature/pr3-fixed-status-bar-tab

Feature/pr3 fixed status bar tab
This commit is contained in:
maxkadushkin 2021-03-23 22:36:47 +03:00 committed by GitHub
commit e576fef9ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 10 deletions

View file

@ -456,13 +456,13 @@
> .btn { > .btn {
+ .dropdown-toggle { + .dropdown-toggle {
padding: 0 2px; padding: 0 4px 0 3px;
} }
} }
> .dropdown-toggle:first-child { > .dropdown-toggle:first-child {
.inner-box-caret { .inner-box-caret {
padding: 0 2px; padding: 0 4px 0 3px;
} }
} }

View file

@ -174,6 +174,13 @@
} }
} }
&:not(.active) {
> span {
color: @text-secondary-ie;
color: @text-secondary;
}
}
> span { > span {
display: inline-block; display: inline-block;
.border-radius(0); .border-radius(0);
@ -195,8 +202,8 @@
border-top-color: @border-toolbar; border-top-color: @border-toolbar;
border-bottom-color: @border-toolbar-ie; border-bottom-color: @border-toolbar-ie;
border-bottom-color: @border-toolbar; border-bottom-color: @border-toolbar;
color: @text-normal-ie !important; color: @text-normal-ie;
color: @text-normal !important; color: @text-normal;
} }
} }
@ -265,15 +272,10 @@
} }
&.disabled { &.disabled {
opacity: 0.5; opacity: @component-disabled-opacity;
> span { > span {
cursor: default; cursor: default;
}
}
&:not(.active) {
> span {
color: @text-secondary-ie; color: @text-secondary-ie;
color: @text-secondary; color: @text-secondary;
} }