Skip to content

Commit

Permalink
Merge branch 'master' into fix/width_full_is-layout-flex
Browse files Browse the repository at this point in the history
  • Loading branch information
goutetsuguma authored Jan 7, 2025
2 parents 1bdbf6b + 776ff2c commit a6715a1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
11 changes: 11 additions & 0 deletions _g3/assets/_scss/block/_block_width_editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,19 @@ body{
body:where(:not(.is-fullscreen-mode)) {
--vk-width-editor-leftmenu:160px;
&.folded {
// 手動で畳まれば場合
// manual folded
// 単位を指定しないと calc が計算できないので注意
--vk-width-editor-leftmenu:36px;
}
&.auto-fold {
@media ( max-width: 960px ) {
--vk-width-editor-leftmenu:36px;
}
@media ( max-width: 782px ) {
--vk-width-editor-leftmenu:0px;
}
}
}

// In case the right sidebar is open
Expand Down
2 changes: 1 addition & 1 deletion _g3/assets/css/editor.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ [email protected]
== Changelog ==

[ G3 ][ Design Bug Fix ] Excluded child elements from expanding to full content width when the parent has the `.is-layout-flex` class by adding a `:not` selector.
[ G3 ][ Bug fix ] Fix block width on editor with narrow screen.

v15.29.3
[ Bug fix ][ G3 ] Fix prev next design on post page.


v15.29.2
[ Specification Change ] Load vk-component from composer.

Expand Down

0 comments on commit a6715a1

Please sign in to comment.