Skip to content

Commit

Permalink
Revert "非推奨のプロパティを使用していたのを修正"
Browse files Browse the repository at this point in the history
  • Loading branch information
NanasuNANA authored Mar 4, 2024
1 parent 1d40fe8 commit d6e88fa
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/app/component/context-menu/context-menu.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ ul > li.hasHighlight:hover {
background-color: rgba(30, 30, 30, 0.8);
}
ul > li.has-color.hasHighlight:hover {
text-shadow:
text-shadow:
1px 0px 1px #ffffff,
0px 1px 1px #ffffff,
-1px 0px 1px #ffffff,
0px -1px 1px #ffffff;
0px -1px 1px #ffffff;
}

.menu-title:not(.icon-menu) {
Expand All @@ -109,8 +109,10 @@ td.altitude {
}

input.altitude {
writing-mode: vertical-lr;
writing-mode: bt-lr;
appearance: slider-vertical;
width: 8px;
height: 100%;
padding: 3px;
}

Expand Down Expand Up @@ -175,7 +177,7 @@ input.altitude {

.color-indicator {
font-size: larger;
text-shadow:
text-shadow:
1px 1px 0px #ffffff,
-1px 1px 0px #ffffff,
1px -1px 0px #ffffff,
Expand All @@ -194,4 +196,4 @@ input.altitude {
.hotkey {
float: right;
font-size: smaller;
}
}

3 comments on commit d6e88fa

@mrrlll
Copy link
Contributor

@mrrlll mrrlll commented on d6e88fa Mar 6, 2024

Choose a reason for hiding this comment

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

先日のPR、何か問題がありましたでしょうか?

@NanasuNANA
Copy link
Owner Author

Choose a reason for hiding this comment

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

Firefox 123で高度スライダーの天地が逆になっていたため戻しました、申し訳ない

@mrrlll
Copy link
Contributor

@mrrlll mrrlll commented on d6e88fa Mar 7, 2024

Choose a reason for hiding this comment

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

失礼しました。
FireFox環境での確認を忘れておりました。

教えていただきありがとうございました!

追記

input.altitude {
  writing-mode: bt-lr;
   -webkit-writing-mode: vertical-rl;
  width: 8px;
  padding: 3px;
}

-webkit-writing-mode: vertical-rl;でChromeやsafariを対象に適応すればよさそうですね。

Please sign in to comment.