Skip to content

Commit df592c8

Browse files
committed
v6.0.3
Fix incorrect shadow side when rounded web content is enabled.
1 parent d6c969a commit df592c8

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ https://github.com/user-attachments/assets/23d73b36-d2d4-4660-af5b-cde686d0934a
2323
2424
## 🆕 What's New
2525

26+
**🦊 v6.0.3**
27+
* Fixed an issue where the shadow was rendered on the wrong side when `uc.flex.enable-rounded-web-content` was enabled.
28+
2629
## 🦊 v6.0.2
2730

2831
### ⚠️ Breaking Changes

README_日本語版.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ https://github.com/user-attachments/assets/23d73b36-d2d4-4660-af5b-cde686d0934a
2323
2424
## 🆕 最新情報
2525

26+
**🦊 v6.0.3**
27+
* `uc.flex.enable-rounded-web-content` を有効にした際、シャドウが誤った側に表示される問題を修正しました。
28+
2629
## 🦊 v6.0.2
2730

2831
### ⚠️ 互換性のない変更

README_简体中文.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ https://github.com/user-attachments/assets/23d73b36-d2d4-4660-af5b-cde686d0934a
2323
2424
## 🆕 更新内容
2525

26+
**🦊 v6.0.3**
27+
* 修复启用 `uc.flex.enable-rounded-web-content` 时,阴影显示在错误一侧的问题。
28+
2629
## 🦊 v6.0.2
2730

2831
### ⚠️ 不兼容变更

chrome/components/uc-variables.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@
11781178
--uc-web-content-margin-outset-clip-mica: calc(-1 * var(--uc-web-content-margin));
11791179
/* Card-style shadow for web content */
11801180
--uc-web-content-box-shadow-depth: 1.5px 1.5px 5px -1px;
1181-
@media -moz-pref("sidebar.position_start") {
1181+
@media not -moz-pref("sidebar.position_start") {
11821182
--uc-web-content-box-shadow-depth: -1.5px 1.5px 5px -1px;
11831183
}
11841184
--uc-web-content-box-shadow-color: light-dark(rgba(12, 12, 16, 0.15), rgba(12, 12, 16, 0.25));

chrome/content/uc-aboutconfig.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
@media not -moz-pref("uc.flex.show-flexfox-version-info-in-about-config", false) {
44
body:lang(ja) {
55
&::before {
6-
content: "🎉 FlexFox v6.0.2 のインストールが完了しました。 \A 📝 オプションを調整するには、検索バーに `uc.flex` と入力してください。";
6+
content: "🎉 FlexFox v6.0.3 のインストールが完了しました。 \A 📝 オプションを調整するには、検索バーに `uc.flex` と入力してください。";
77
}
88
}
99
body:lang(zh-CN) {
1010
&::before {
11-
content: "🎉 FlexFox v6.0.2 已成功安装。 \A 📝 如需调整选项,请在搜索栏中输入 `uc.flex`。";
11+
content: "🎉 FlexFox v6.0.3 已成功安装。 \A 📝 如需调整选项,请在搜索栏中输入 `uc.flex`。";
1212
}
1313
}
1414
body:lang(zh-tw) {
1515
&::before {
16-
content: "🎉 FlexFox v6.0.2 已成功安裝。 \A 📝 若需要調整選項,請在搜尋欄中輸入 `uc.flex`。";
16+
content: "🎉 FlexFox v6.0.3 已成功安裝。 \A 📝 若需要調整選項,請在搜尋欄中輸入 `uc.flex`。";
1717
}
1818
}
1919

2020
body::before {
21-
content: "🎉 FlexFox v6.0.2 has been successfully installed. \A 📝 To adjust options, type `uc.flex` in the search bar.";
21+
content: "🎉 FlexFox v6.0.3 has been successfully installed. \A 📝 To adjust options, type `uc.flex` in the search bar.";
2222
/* !-- End of version info -- */
2323
display: block;
2424
margin: 10px 10px 0px 10px;

chrome/userChrome.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* FlexFox v6.0.2 */
1+
/* FlexFox v6.0.3 */
22
/* ____ _ ____ */
33
/* / __/ /__ _ __/ __/___ _ __ */
44
/* / /_/ / _ \| |/_/ /_/ __ \| |/_/ */

0 commit comments

Comments
 (0)