Skip to content

Commit

Permalink
Fix broadcasting grid-layout (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonidoo authored May 24, 2024
1 parent 61709d4 commit 743c9b8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion app/styles/grids/_grid-layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,6 @@ $planningEditor-width: 53rem;
grid-template-columns: [slideInLeft] auto [mainContent] 1fr [slideInRight] auto [overlayContainer] 0;
grid-template-rows: [headerToolbar] auto [contentBlock] 1fr;
overflow: auto;
height: 100%;
}

.sd-main-content-grid__header {
Expand Down
10 changes: 5 additions & 5 deletions app/styles/layout/_editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -383,17 +383,17 @@
}

.sd-editor__container-wrapper {
grid-column: 1 / 2;
display: grid;
grid-template-rows: 1fr;
grid-auto-columns: auto;
width: 0;
min-width: 0;
max-width: 0;
transition: all ease-in-out 0.2s;
}

.sd-editor__container {
grid-column: 1 / 2;
display: grid;
grid-template-rows: 1fr;
grid-auto-columns: auto;
overflow-y: auto;
overflow: hidden;
opacity: 0;
Expand Down Expand Up @@ -422,7 +422,7 @@
}
}

.sd-content-wrapper--editor-full .open-editor .sd-editor__container {
.sd-content-wrapper--editor-full .open-editor .sd-editor__container-wrapper {
min-width: auto;
max-width: none;
}
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "superdesk-ui-framework",
"version": "3.1.8",
"version": "3.1.9",
"license": "AGPL-3.0",
"repository": {
"type": "git",
Expand Down

0 comments on commit 743c9b8

Please sign in to comment.