Skip to content

Commit

Permalink
Merge pull request #1393 from nextcloud/backport/1392/stable25
Browse files Browse the repository at this point in the history
[stable25] Fix editor tabs ellipsis and scrolling
  • Loading branch information
szaimen authored Sep 29, 2022
2 parents 7650a9a + 31c8919 commit d2528fa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/viewer-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer-main.js.map

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion src/components/ImageEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,8 @@ export default {
// Tabs
.FIE_tabs {
padding: 6px !important;
overflow: hidden;
overflow-y: auto;
}
.FIE_tab {
Expand All @@ -409,7 +411,12 @@ export default {
height: 16px;
}
&-label {
margin-top: 8px;
margin-top: 8px !important;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
white-space: nowrap;
display: block !important;
}
&:hover,
Expand Down

0 comments on commit d2528fa

Please sign in to comment.