Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/viewer-init.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* extracted by css-entry-points-plugin */
@import './init-BedwYrti.chunk.css';
@import './init-DmEQdDLc.chunk.css';
@import './previewUtils-6cpbKhU6.chunk.css';
@import './NcActionButton-DyH89PpO.chunk.css';
@import './NcActionLink-Cay-IPuV.chunk.css';
2 changes: 1 addition & 1 deletion js/viewer-init.mjs

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions src/components/ImageEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ export default {
label,
button {
color: var(--color-main-text);
line-height: var(--default-line-height, 1.5) !important;
> span {
font-size: var(--default-font-size) !important;
}
Expand All @@ -410,8 +411,8 @@ export default {
display: flex;
align-items: center;
justify-content: center;
min-width: 44px;
min-height: 44px;
min-width: var(--default-clickable-area);
min-height: var(--default-clickable-area);
padding: 6px 12px;
}
}
Expand All @@ -432,7 +433,7 @@ export default {

// Global buttons
.SfxButton-root {
min-height: 44px !important;
min-height: var(--default-clickable-area) !important;
margin: 0 !important;
border: transparent !important;
&[color='error'] {
Expand All @@ -456,7 +457,7 @@ export default {

// Menu items
.SfxMenuItem-root {
height: 44px;
height: var(--default-clickable-area);
padding-left: 8px !important;
// Center the menu entry icon and fix width
> div {
Expand Down Expand Up @@ -568,8 +569,8 @@ export default {
display: flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
min-width: var(--default-clickable-area);
height: var(--default-clickable-area);
padding: 6px 16px;
border-radius: var(--border-radius-pill);
}
Expand Down
Loading