Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ 固定表示 ] 固定位置「上」「下」の時にmax-widthを追加 #2100

Merged
merged 6 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: Gutenberg,FAQ,alert
Requires at least: 6.3
Tested up to: 6.5
Stable tag: 1.77.0.1
Requires PHP: 7.4
Requires PHP: 7.De
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mtdkei この変更はなんでしょうか?

Copy link
Contributor Author

@mtdkei mtdkei Jul 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

お手数をおかけしてすみません、こちらのミスです。ただいま修正しました。

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

↑メンション失念してました
@mthaichi

License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -106,6 +106,7 @@ e.g.

== Changelog ==

[ Design Bug Fix ][ Fixed Display (Pro) ] Add max-width for position top and bottom.
[ Add function ][ Tab (Pro) ] Add settings for when there are many labels or the screen width is narrow.
[ Bug fix ] Fixed an error in the component link toolbar in WordPress version 6.6.
[ Fix ][ Table of Contents (Pro) ] Improved pseudo elements for frontend page accessibility.
Expand Down
4 changes: 3 additions & 1 deletion src/blocks/_pro/fixed-display/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
right: 0;
place-self: center;
width: 100%;
max-width: 100% !important;
}
&-right {
top: 50%;
Expand All @@ -57,6 +58,7 @@
bottom: 0;
place-self: center;
width: 100%;
max-width: 100% !important;
}
&-left {
top: 50%;
Expand Down Expand Up @@ -122,4 +124,4 @@
top: calc(50svh + var(--admin-bar-offset));
}
}
}
}
Loading