!extend:checked:vvvvv:1000:512
次スレを立てる方は↑を二行重ねて書いてください
●※前スレ
userChrome.css・userContent.cssスレ Part11
https://egg.5ch.net/test/read.cgi/software/1584753386/
●拡張機能
Stylish
https://addons.mozilla.org/ja/firefox/addon/stylish/
Stylus
https://addons.mozilla.org/ja/firefox/addon/styl-us/
User Style Manager (レガシーアドオン・要Classic Add-ons Archive)
https://addons.mozilla.org/ja/firefox/addon/user-style-manager/
●スクリプト
userChromeJS/UserCSSLoader at master ・ Griever/userChromeJS
https://github.com/Griever/userChromeJS/tree/master/UserCSSLoader
UserCSSManager (要userChromeES)
https://greasyfork.org/scripts/35880
●CSS(ユーザースタイルを記入するべきファイル)
userChrome.css(UI) / userContent.css(Web Site)
●関連サイト
Userstyles.org
https://userstyles.org/
CSS: カスケーディングスタイルシート | MDN
https://developer.mozilla.org/ja/docs/Web/CSS
とほほのスタイルシート入門
http://www.tohoho-web.com/css/
VIPQ2_EXTDAT: checked:vvvvv:1000:512:: EXT was configured
探検
userChrome.css・userContent.cssスレ Part12
■ このスレッドは過去ログ倉庫に格納されています
1名無しさん@お腹いっぱい。 (ワッチョイ eb6e-X/6k)
2022/04/21(木) 23:24:46.59ID:h1cG3tIy0528名無しさん@お腹いっぱい。 (ワッチョイ 8676-pPKE)
2023/09/28(木) 17:07:56.67ID:DH/NwX0+0 検索バーの 検索 のフォントサイズ
どこなのか不明
どこなのか不明
529名無しさん@お腹いっぱい。 (ワッチョイ bb8b-UFWh)
2023/09/28(木) 18:17:23.82ID:YdB6/Yin0 ttps://qiita.com/tomoki1207/items/001af8e01a392cfc22fd
ここを参考にマウスオーバーでラベルを表示出来るようにしていたんだけどアップデートでesr115になったら出来なくなりました
良い方法があれば教えてください
ここを参考にマウスオーバーでラベルを表示出来るようにしていたんだけどアップデートでesr115になったら出来なくなりました
良い方法があれば教えてください
530名無しさん@お腹いっぱい。 (アウアウウーT Sacf-CSnM)
2023/09/28(木) 19:45:48.21ID:psHg24vPa >>529
Group Speed Dial利用してないなら下記
/*#nav-bar {
background-color:transparent !important;
}
#PersonalToolbar {
position: absolute;
top: 63px;
left: 0;
width: 100%;
height: 33px;
z-index: 9999;
visibility: collapse !important;
-moz-transition-duration: .15s !important;
-moz-transition-timing-function: ease-in-out !important;
}
#navigator-toolbox:hover > #PersonalToolbar {
visibility: visible !important;
-moz-transition: .15s ease-in-out;
Group Speed Dial利用してないなら下記
/*#nav-bar {
background-color:transparent !important;
}
#PersonalToolbar {
position: absolute;
top: 63px;
left: 0;
width: 100%;
height: 33px;
z-index: 9999;
visibility: collapse !important;
-moz-transition-duration: .15s !important;
-moz-transition-timing-function: ease-in-out !important;
}
#navigator-toolbox:hover > #PersonalToolbar {
visibility: visible !important;
-moz-transition: .15s ease-in-out;
531名無しさん@お腹いっぱい。 (アウアウウーT Sacf-CSnM)
2023/09/28(木) 19:48:36.11ID:psHg24vPa いまは下記を利用
#PersonalToolbar{
--uc-bm-height: 20px;
--uc-bm-padding: 4px;
--uc-autohide-toolbar-delay: 300ms;
--uc-autohide-toolbar-focus-rotation: 0deg;
--uc-autohide-toolbar-hover-rotation: 0deg;
}
:root[uidensity="compact"] #PersonalToolbar{ --uc-bm-padding: 1px }
:root[uidensity="touch"] #PersonalToolbar{ --uc-bm-padding: 7px }
#PersonalToolbar:not([customizing]){
position: relative;
margin-bottom: calc(0px - var(--uc-bm-height) - 3.5 * var(--uc-bm-padding));
transform: rotateX(90deg);
transform-origin: top;
transition: transform 160ms linear var(--uc-autohide-toolbar-delay) !important;
z-index: 1;
}
#PlacesToolbarItems > .bookmark-item{ padding-block: var(--uc-bm-padding) !important; }
#nav-bar:focus-within + #PersonalToolbar{
transition-delay: 300ms !important;
transform: rotateX(var(--uc-autohide-toolbar-focus-rotation,0));
}
#navigator-toolbox:hover > #PersonalToolbar{
transition-delay: 300ms !important;
transform: rotateX(var(--uc-autohide-toolbar-hover-rotation,0));
}
#navigator-toolbox:hover > #nav-bar:focus-within + #PersonalToolbar {
transform: rotateX(0);
}
#PersonalToolbar{
--uc-bm-height: 20px;
--uc-bm-padding: 4px;
--uc-autohide-toolbar-delay: 300ms;
--uc-autohide-toolbar-focus-rotation: 0deg;
--uc-autohide-toolbar-hover-rotation: 0deg;
}
:root[uidensity="compact"] #PersonalToolbar{ --uc-bm-padding: 1px }
:root[uidensity="touch"] #PersonalToolbar{ --uc-bm-padding: 7px }
#PersonalToolbar:not([customizing]){
position: relative;
margin-bottom: calc(0px - var(--uc-bm-height) - 3.5 * var(--uc-bm-padding));
transform: rotateX(90deg);
transform-origin: top;
transition: transform 160ms linear var(--uc-autohide-toolbar-delay) !important;
z-index: 1;
}
#PlacesToolbarItems > .bookmark-item{ padding-block: var(--uc-bm-padding) !important; }
#nav-bar:focus-within + #PersonalToolbar{
transition-delay: 300ms !important;
transform: rotateX(var(--uc-autohide-toolbar-focus-rotation,0));
}
#navigator-toolbox:hover > #PersonalToolbar{
transition-delay: 300ms !important;
transform: rotateX(var(--uc-autohide-toolbar-hover-rotation,0));
}
#navigator-toolbox:hover > #nav-bar:focus-within + #PersonalToolbar {
transform: rotateX(0);
}
532名無しさん@お腹いっぱい。 (アウアウウーT Sacf-CSnM)
2023/09/28(木) 19:50:20.77ID:psHg24vPa 表示したとき、下ねズレても良いなら
/*#nav-bar {
background-color:transparent !important;
}
#PersonalToolbar:not(:hover) {
visibility: collapse !important;
background-color:transparent !important;
-moz-transition-duration: .15s !important;
-mozt-ransition-timing-function: ease-in-out !important;
}
#navigator-toolbox:hover > #PersonalToolbar {
visibility: visible !important;
-moz-transition: .15s ease-in-out;
}
/*#nav-bar {
background-color:transparent !important;
}
#PersonalToolbar:not(:hover) {
visibility: collapse !important;
background-color:transparent !important;
-moz-transition-duration: .15s !important;
-mozt-ransition-timing-function: ease-in-out !important;
}
#navigator-toolbox:hover > #PersonalToolbar {
visibility: visible !important;
-moz-transition: .15s ease-in-out;
}
533名無しさん@お腹いっぱい。 (ニククエ d34f-3hLy)
2023/09/29(金) 23:47:09.01ID:AoXvNtgi0NIKU >>527
/* URLバー,検索バー */
#urlbar-input-container,
#searchbar,#urlbar,
#navigator-toolbox .searchbar-textbox
{
background-color: #252525!important;
color: #ffffff!important;
font-size: 11px !important;
border-radius: 5px;
Outline: none !important;
}
/* URLバー,検索バー */
#urlbar-input-container,
#searchbar,#urlbar,
#navigator-toolbox .searchbar-textbox
{
background-color: #252525!important;
color: #ffffff!important;
font-size: 11px !important;
border-radius: 5px;
Outline: none !important;
}
534名無しさん@お腹いっぱい。 (ニククエ d34f-3hLy)
2023/09/29(金) 23:54:57.50ID:AoXvNtgi0NIKU /* 検索バー・URLバー・サイドバーのグレイテキストを非表示 */
#searchbar *|input::placeholder,
#urlbar *|input::placeholder,
#sidebar-search-container *|input::placeholder,
.findbar-textbox *|input::placeholder {
color: transparent !important;
}
#searchbar *|input::placeholder,
#urlbar *|input::placeholder,
#sidebar-search-container *|input::placeholder,
.findbar-textbox *|input::placeholder {
color: transparent !important;
}
535名無しさん@お腹いっぱい。 (ワッチョイ abff-siUq)
2023/10/03(火) 13:55:03.07ID:glxmpd8/0 メールの背景色をストライプにして、選択行のフォントをサイズアップする事まではできたんですが、
選択行の背景色を変える事ができません。開発ツールで見たところ、選択行の background-color が
取り消し線+グレーアウトで無効化されているようです。うまく背景色も変える方法はありませんか?
/* 今現在、こんな感じです、、、orz */
#threadTree tr:nth-of-type(even) {
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
[is="tree-view-table-body"]:focus tr[is="thread-row"].selected, [is="tree-view-table-body"]:focus-within tr[is="thread-row"].selected, [is="tree-view-table-body"] tr[is="thread-row"].selected:focus-within {
font-weight: bold;
font-size: 16px;
color: #000000 !important;
background-color: #ff0000 !important;
}
選択行の背景色を変える事ができません。開発ツールで見たところ、選択行の background-color が
取り消し線+グレーアウトで無効化されているようです。うまく背景色も変える方法はありませんか?
/* 今現在、こんな感じです、、、orz */
#threadTree tr:nth-of-type(even) {
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
[is="tree-view-table-body"]:focus tr[is="thread-row"].selected, [is="tree-view-table-body"]:focus-within tr[is="thread-row"].selected, [is="tree-view-table-body"] tr[is="thread-row"].selected:focus-within {
font-weight: bold;
font-size: 16px;
color: #000000 !important;
background-color: #ff0000 !important;
}
536名無しさん@お腹いっぱい。 (ワッチョイ abff-siUq)
2023/10/03(火) 13:55:22.93ID:glxmpd8/0 メールの背景色をストライプにして、選択行のフォントをサイズアップする事まではできたんですが、
選択行の背景色を変える事ができません。開発ツールで見たところ、選択行の background-color が
取り消し線+グレーアウトで無効化されているようです。うまく背景色も変える方法はありませんか?
/* 今現在、こんな感じです、、、orz */
#threadTree tr:nth-of-type(even) {
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
[is="tree-view-table-body"]:focus tr[is="thread-row"].selected, [is="tree-view-table-body"]:focus-within tr[is="thread-row"].selected, [is="tree-view-table-body"] tr[is="thread-row"].selected:focus-within {
font-weight: bold;
font-size: 16px;
color: #000000 !important;
background-color: #ff0000 !important;
}
選択行の背景色を変える事ができません。開発ツールで見たところ、選択行の background-color が
取り消し線+グレーアウトで無効化されているようです。うまく背景色も変える方法はありませんか?
/* 今現在、こんな感じです、、、orz */
#threadTree tr:nth-of-type(even) {
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
[is="tree-view-table-body"]:focus tr[is="thread-row"].selected, [is="tree-view-table-body"]:focus-within tr[is="thread-row"].selected, [is="tree-view-table-body"] tr[is="thread-row"].selected:focus-within {
font-weight: bold;
font-size: 16px;
color: #000000 !important;
background-color: #ff0000 !important;
}
537名無しさん@お腹いっぱい。 (ワッチョイ abff-siUq)
2023/10/03(火) 13:55:41.66ID:glxmpd8/0 メールの背景色をストライプにして、選択行のフォントをサイズアップする事まではできたんですが、
選択行の背景色を変える事ができません。開発ツールで見たところ、選択行の background-color が
取り消し線+グレーアウトで無効化されているようです。うまく背景色も変える方法はありませんか?
/* 今現在、こんな感じです、、、orz */
#threadTree tr:nth-of-type(even) {
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
[is="tree-view-table-body"]:focus tr[is="thread-row"].selected, [is="tree-view-table-body"]:focus-within tr[is="thread-row"].selected, [is="tree-view-table-body"] tr[is="thread-row"].selected:focus-within {
font-weight: bold;
font-size: 16px;
color: #000000 !important;
background-color: #ff0000 !important;
}
選択行の背景色を変える事ができません。開発ツールで見たところ、選択行の background-color が
取り消し線+グレーアウトで無効化されているようです。うまく背景色も変える方法はありませんか?
/* 今現在、こんな感じです、、、orz */
#threadTree tr:nth-of-type(even) {
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
[is="tree-view-table-body"]:focus tr[is="thread-row"].selected, [is="tree-view-table-body"]:focus-within tr[is="thread-row"].selected, [is="tree-view-table-body"] tr[is="thread-row"].selected:focus-within {
font-weight: bold;
font-size: 16px;
color: #000000 !important;
background-color: #ff0000 !important;
}
538名無しさん@お腹いっぱい。 (テテンテンテン MMcb-N/UI)
2023/10/04(水) 07:38:29.93ID:CD/qDaPUM メールって何の話だ?
539名無しさん@お腹いっぱい。 (ワッチョイ 25be-wXmr)
2023/10/04(水) 10:39:17.09ID:b6Ry5t2R0540名無しさん@お腹いっぱい。 (ワッチョイW ab5b-gcGo)
2023/10/04(水) 15:02:24.11ID:toq88rwo0 スレッドツリーって要素名出てるじゃん。
試しに537の適用してみたら空色系のストライプになるのな。
が、俺じゃ537のやりたい事は解決できんかったわ。
試しに537の適用してみたら空色系のストライプになるのな。
が、俺じゃ537のやりたい事は解決できんかったわ。
541名無しさん@お腹いっぱい。 (ワッチョイ 9d58-Hwqz)
2023/10/07(土) 17:06:54.98ID:gMquilR20 age厨に構うなよ
基地外が感染るぞ
基地外が感染るぞ
542名無しさん@お腹いっぱい。 (ワッチョイ 4681-GYY9)
2023/10/07(土) 19:38:44.76ID:9JpcC6Gl0 #threadTree tr:nth-of-type(even) {
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
の!important外したら良いんじゃ無いか?
background-color: #c8c8ff !important;
}
#threadTree tr:nth-of-type(odd) {
background-color: #e0e0ff !important;
}
の!important外したら良いんじゃ無いか?
543名無しさん@お腹いっぱい。 (ワッチョイW c9b1-+36z)
2023/10/14(土) 03:47:46.43ID:p9c68WWW0 はーい。○○(なんか名前)ちゃん。至急、1階理科室に来てねー♪」(校内放送風)
544名無しさん@お腹いっぱい。 (ワッチョイ 2b83-f0fU)
2023/10/15(日) 01:52:19.51ID:wH/HU4v80 536です。542で提示された方法で上手くいきました。感謝!
545名無しさん@お腹いっぱい。 (ワッチョイ 2b83-f0fU)
2023/10/15(日) 01:52:33.12ID:wH/HU4v80 536です。542で提示された方法で上手くいきました。感謝!
546名無しさん@お腹いっぱい。 (ワッチョイ 49c2-Def0)
2023/10/15(日) 19:04:37.00ID:t8mjpJIG0 久しぶりにfirefox入れたらタブとタブの境目がなくなって難儀してます
/* タブ間のセパレータ表示 */
#tabbrowser-arrowscrollbox .tabbrowser-tab {
border-right: 1px solid color-mix(in srgb, -moz-accent-color-foreground 30%, transparent) !important;
padding-inline: 0px !important;
}
前に使ってたcssはこれっぽかったんですが、今は使えないみたいなのでよければ教えてくれるとうれしいです
/* タブ間のセパレータ表示 */
#tabbrowser-arrowscrollbox .tabbrowser-tab {
border-right: 1px solid color-mix(in srgb, -moz-accent-color-foreground 30%, transparent) !important;
padding-inline: 0px !important;
}
前に使ってたcssはこれっぽかったんですが、今は使えないみたいなのでよければ教えてくれるとうれしいです
547名無しさん@お腹いっぱい。 (ワッチョイ d371-T9H3)
2023/10/15(日) 19:39:22.72ID:7JMt6y890 Firefox 103以降
以下の変更があるので注意
-moz-accent-color-foreground は AccentColorText に変更
-moz-accent-color は AccentColor に変更
以下の変更があるので注意
-moz-accent-color-foreground は AccentColorText に変更
-moz-accent-color は AccentColor に変更
548名無しさん@お腹いっぱい。 (ワッチョイ 865d-1API)
2023/10/22(日) 09:35:55.31ID:NgoL7Nu20 >>547
あ、なるほど。ありがとうございます。そりゃだめなわけだ 書き直しですね・・・
あ、なるほど。ありがとうございます。そりゃだめなわけだ 書き直しですね・・・
549名無しさん@お腹いっぱい。 (ワッチョイ aa12-s3V2)
2023/10/24(火) 13:02:13.78ID:audtL+8s0 皆この馬鹿みたいに無駄で長いコンテキストメニュー使ってんの?
やっぱChromeに戻るわ
やっぱChromeに戻るわ
550sage (ワッチョイ 4a83-C1SI)
2023/10/25(水) 03:15:54.66ID:H2iQZaNw0 119.0にしたら
/* タブの上部のライン */
.tab-background[multiselected],
.tab-background[selected="true"] {
background: linear-gradient(to bottom, #0A84FF 2px, var(--toolbar-bgcolor) 0px) !important;
outline: none !important;
}
が効かなくなってしまった。もうアクティブタブのラインって無理ですか?
/* タブの上部のライン */
.tab-background[multiselected],
.tab-background[selected="true"] {
background: linear-gradient(to bottom, #0A84FF 2px, var(--toolbar-bgcolor) 0px) !important;
outline: none !important;
}
が効かなくなってしまった。もうアクティブタブのラインって無理ですか?
551sage (ワッチョイ 4a83-C1SI)
2023/10/25(水) 03:16:07.22ID:H2iQZaNw0 119.0にしたら
/* タブの上部のライン */
.tab-background[multiselected],
.tab-background[selected="true"] {
background: linear-gradient(to bottom, #0A84FF 2px, var(--toolbar-bgcolor) 0px) !important;
outline: none !important;
}
が効かなくなってしまった。もうアクティブタブのラインって無理ですか?
/* タブの上部のライン */
.tab-background[multiselected],
.tab-background[selected="true"] {
background: linear-gradient(to bottom, #0A84FF 2px, var(--toolbar-bgcolor) 0px) !important;
outline: none !important;
}
が効かなくなってしまった。もうアクティブタブのラインって無理ですか?
552名無しさん@お腹いっぱい。 (ワッチョイ fa97-JD/u)
2023/10/25(水) 03:45:13.02ID:nbkLrjdD0 >>550
.tab-background[selected]
.tab-background[selected]
553名無しさん@お腹いっぱい。 (ワッチョイW 1685-RqDz)
2023/10/25(水) 04:13:13.12ID:ngceVmoy0 >>552
出来ました。ありがとうございます♪
出来ました。ありがとうございます♪
554名無しさん@お腹いっぱい。 (ワッチョイ d5cf-ANn9)
2023/10/25(水) 08:58:47.66ID:eUF47XP20 >>549
なんの話?w
なんの話?w
555名無しさん@お腹いっぱい。 (CA 0Hb1-6fVo)
2023/10/25(水) 09:03:45.28ID:3+PMKa0tH >>549
( ´,_ゝ`)プッ
( ´,_ゝ`)プッ
556名無しさん@お腹いっぱい。 (ワッチョイ 1676-s3V2)
2023/10/25(水) 10:32:45.07ID:+AeJOHd60 >>551
これって118.0.2の新規プロファイルで試してみたんですがタブの見た目に変化はありませんでした
どのような感じになるのか画像をお願いできませんでしょうか
もし有用そうなら私も使用しようかなと思いまして
これって118.0.2の新規プロファイルで試してみたんですがタブの見た目に変化はありませんでした
どのような感じになるのか画像をお願いできませんでしょうか
もし有用そうなら私も使用しようかなと思いまして
557名無しさん@お腹いっぱい。 (ワッチョイ 16cf-JD/u)
2023/10/25(水) 14:51:47.05ID:bPHWPtVe0 http://egg.5ch.net/test/read.cgi/software/1622565390/238
/* 選択中のタブの色をツールバーと同一化 */
.tab-background[selected="true"] {
color: var(--toolbar-color) !important;
background-color: var(--toolbar-bgcolor) !important;
}
119.0で効かなくなりました
修正箇所ありましたら教えてください
/* 選択中のタブの色をツールバーと同一化 */
.tab-background[selected="true"] {
color: var(--toolbar-color) !important;
background-color: var(--toolbar-bgcolor) !important;
}
119.0で効かなくなりました
修正箇所ありましたら教えてください
558名無しさん@お腹いっぱい。 (ワッチョイ 8e13-ptOG)
2023/10/25(水) 15:39:59.51ID:B2VqDQqQ0 >>552
横からありがとー
横からありがとー
559名無しさん@お腹いっぱい。 (ワッチョイ 16cf-JD/u)
2023/10/25(水) 17:24:24.10ID:bPHWPtVe0560名無しさん@お腹いっぱい。 (ワッチョイ d676-GRDq)
2023/10/25(水) 20:31:07.85ID:y2JWOoIL0 >>557
selected="true"を selected
selected="true"を selected
561名無しさん@お腹いっぱい。 (ワッチョイ 1a78-iKuA)
2023/10/25(水) 21:25:46.63ID:V2Ry5K2m0 ええ…今迄のCSSそのまま使えるんなら、.tab-context-lineまで馬鹿正直に指定し直したのは無駄だったんか
/* 選択タブ上部のラインを強調 */
.tabbrowser-tab:is([multiselected],[selected="true"]):not(:-moz-lwtheme) .tab-stack .tab-background {
background: rgb(255,255,255) !important;
}
.tabbrowser-tab:is([multiselected],[selected="true"]) .tab-stack .tab-background .tab-context-line {
border-top: 2px solid rgb(64,128,251) !important;
}
/* 非選択タブ上部の枠線 */
.tabbrowser-tab:not([multiselected],[selected="true"]) .tab-stack .tab-background {
background: linear-gradient(to bottom, rgba(100, 100, 100, 1.0) 1px, rgba(77, 77, 77, .20) 0%, rgba(77, 77, 77, .20) 100%) !important;
}
/* 選択タブ上部のラインを強調 */
.tabbrowser-tab:is([multiselected],[selected="true"]):not(:-moz-lwtheme) .tab-stack .tab-background {
background: rgb(255,255,255) !important;
}
.tabbrowser-tab:is([multiselected],[selected="true"]) .tab-stack .tab-background .tab-context-line {
border-top: 2px solid rgb(64,128,251) !important;
}
/* 非選択タブ上部の枠線 */
.tabbrowser-tab:not([multiselected],[selected="true"]) .tab-stack .tab-background {
background: linear-gradient(to bottom, rgba(100, 100, 100, 1.0) 1px, rgba(77, 77, 77, .20) 0%, rgba(77, 77, 77, .20) 100%) !important;
}
562名無しさん@お腹いっぱい。 (ワッチョイ 1676-s3V2)
2023/10/26(木) 00:29:42.90ID:nvDVNtCg0 タブバーの背景色をメニューバーから引き継ぎたいんですが、
--toolbar-bgcolorみたいなのありますか?
#tabbrowser-tabs {
background-color: var(--menubar-bgcolor) !important;
}
--toolbar-bgcolorみたいなのありますか?
#tabbrowser-tabs {
background-color: var(--menubar-bgcolor) !important;
}
563名無しさん@お腹いっぱい。 (ワッチョイ ce73-dClG)
2023/10/26(木) 00:50:54.58ID:rV+4BsPt0 その上の方でroot で色指定してるんじゃね
564名無しさん@お腹いっぱい。 (ワッチョイ bd6c-ptOG)
2023/10/26(木) 07:39:17.71ID:0BAp8JMp0565名無しさん@お腹いっぱい。 (ワッチョイ bd6c-ptOG)
2023/10/26(木) 07:39:25.81ID:0BAp8JMp0566名無しさん@お腹いっぱい。 (ワッチョイ f5b8-s3V2)
2023/10/26(木) 08:10:57.31ID:V+pbOwTC0 >>563
上の方ではメニューバーの色を指定してるんですが(rootでは指定していません)、この色が--menubar-bgcolorに反映されません
そもそも--menubar-bgcolorなんてものは無くて、適切な文字列があるのでしょうか?
/* メニューバーの背景色 */
#toolbar-menubar, menubar#main-menubar > menu {
background-color: #E3E4E6 !important;
}
/* タブバーの背景色 */
#tabbrowser-tabs {
background-color: var(--menubar-bgcolor) !important; /* 反映されない? */
}
上の方ではメニューバーの色を指定してるんですが(rootでは指定していません)、この色が--menubar-bgcolorに反映されません
そもそも--menubar-bgcolorなんてものは無くて、適切な文字列があるのでしょうか?
/* メニューバーの背景色 */
#toolbar-menubar, menubar#main-menubar > menu {
background-color: #E3E4E6 !important;
}
/* タブバーの背景色 */
#tabbrowser-tabs {
background-color: var(--menubar-bgcolor) !important; /* 反映されない? */
}
567名無しさん@お腹いっぱい。 (ワッチョイ f5b8-s3V2)
2023/10/26(木) 08:56:11.14ID:V+pbOwTC0 あー、もしかして--toolbar-bgcolor変数なんてものもなくて
cssの上の方で--toolbar-bgcolorをユーザ定義してるってことですかね
でも--toolbar-bgcolorはユーザ定義してないですがちゃんと色入ってますね
cssの上の方で--toolbar-bgcolorをユーザ定義してるってことですかね
でも--toolbar-bgcolorはユーザ定義してないですがちゃんと色入ってますね
568名無しさん@お腹いっぱい。 (ワッチョイ 7a97-JD/u)
2023/10/26(木) 12:16:41.38ID:kv1Lk2og0 >>567
--toolbar-bgcolorは:rootでブラウザが定義してる
スタイル当てたらそれらしい変数に勝手に割り当ててくれるなんて機能はない
値を使いまわしたいなら:rootでなくてもいいから共通の親で自分でcss変数定義すればいい
--toolbar-bgcolorは:rootでブラウザが定義してる
スタイル当てたらそれらしい変数に勝手に割り当ててくれるなんて機能はない
値を使いまわしたいなら:rootでなくてもいいから共通の親で自分でcss変数定義すればいい
569名無しさん@お腹いっぱい。 (ワッチョイ f5b8-s3V2)
2023/10/26(木) 13:27:59.67ID:V+pbOwTC0570名無しさん@お腹いっぱい。 (ワッチョイ 41cf-iKuA)
2023/10/26(木) 13:46:30.08ID:ZvDnGjaS0 このへんじゃね?
chrome://browser/skin/browser-shared.css
chrome://browser/skin/browser-shared.css
571名無しさん@お腹いっぱい。 (ワッチョイ 16cf-JD/u)
2023/10/26(木) 14:28:50.61ID:h6pHxydk0572名無しさん@お腹いっぱい。 (ワッチョイ f5b8-s3V2)
2023/10/26(木) 15:49:39.80ID:V+pbOwTC0 >>570
ありがとうございます!
ありがとうございます!
573名無しさん@お腹いっぱい。 (ワッチョイ 4e72-s3V2)
2023/10/27(金) 00:03:37.40ID:LduYCR+R0 ブックマークアイテムを右クリックするとコンテキストメニューが出るけど
選択したブックマークアイテムの背景色が選択されてない状態に戻ってしまいます
選択したブックマークアイテムの背景色を残したままコンテキストメニューを開いて選択できるような挙動にするには
どのようなcssになりますか?お願いします
選択したブックマークアイテムの背景色が選択されてない状態に戻ってしまいます
選択したブックマークアイテムの背景色を残したままコンテキストメニューを開いて選択できるような挙動にするには
どのようなcssになりますか?お願いします
574名無しさん@お腹いっぱい。 (ワッチョイ dd5d-ptOG)
2023/10/27(金) 18:08:13.21ID:r9Ml0IYI0 /* サイドバーの背景色 */
#historyTree,
#bookmarks-view treechildren,
#bookmarksPanel/* 検索ボックスの周囲の色 */ {
background-color: #3C444B!important;
border: solid 1px #3C444B !important;
}
/* クリック中選択状態のボーダーを消す */
treechildren::-moz-tree-row(current, focus) {
border: 1px dotted #F3D982 !important;
outline: none !important;
}
/* クリック中選択状態のアイテム */
#bookmarksPanel treechildren::-moz-tree-row(selected,current,focus) {
background-color: #6a788a !important;
border: solid 1px #495361 !important;
}
#historyTree,
#bookmarks-view treechildren,
#bookmarksPanel/* 検索ボックスの周囲の色 */ {
background-color: #3C444B!important;
border: solid 1px #3C444B !important;
}
/* クリック中選択状態のボーダーを消す */
treechildren::-moz-tree-row(current, focus) {
border: 1px dotted #F3D982 !important;
outline: none !important;
}
/* クリック中選択状態のアイテム */
#bookmarksPanel treechildren::-moz-tree-row(selected,current,focus) {
background-color: #6a788a !important;
border: solid 1px #495361 !important;
}
575名無しさん@お腹いっぱい。 (ワッチョイ dd5d-ptOG)
2023/10/27(金) 18:08:46.58ID:r9Ml0IYI0 /* 非アクティブ状態で選択状態のテキスト */
#bookmarksPanel treechildren::-moz-tree-cell-text(selected) {
color: #ffffff !important;
background-color: #6a788a !important;
}
/* 背景色 */
#bookmarksPanel treechildren::-moz-tree-row(selected) {
background-color: #6a788a !important;
border: solid 1px #495361 !important;
}
/* アクティブ状態で、選択状態のテキスト */
about:stylish-edit?id=15#bookmarksPanel treechildren::-moz-tree-cell-text(selected,focus) {
color: #ffffff !important;/*白抜き文字*/
background-color: #6a788a !important;
}
#bookmarksPanel treechildren::-moz-tree-cell-text(selected) {
color: #ffffff !important;
background-color: #6a788a !important;
}
/* 背景色 */
#bookmarksPanel treechildren::-moz-tree-row(selected) {
background-color: #6a788a !important;
border: solid 1px #495361 !important;
}
/* アクティブ状態で、選択状態のテキスト */
about:stylish-edit?id=15#bookmarksPanel treechildren::-moz-tree-cell-text(selected,focus) {
color: #ffffff !important;/*白抜き文字*/
background-color: #6a788a !important;
}
576名無しさん@お腹いっぱい。 (ワッチョイ dd5d-ptOG)
2023/10/27(金) 18:09:56.96ID:r9Ml0IYI0 /* セパレーター */
#bookmarksPanel treechildren::-moz-tree-separator {
border: 1px dotted #c7c7c7 !important;
margin-bottom: 1px !important;
margin-right: 10px !important;
}
#bookmarksPanel treechildren::-moz-tree-separator {
border: 1px dotted #c7c7c7 !important;
margin-bottom: 1px !important;
margin-right: 10px !important;
}
577名無しさん@お腹いっぱい。 (ワッチョイ cd97-ptOG)
2023/10/27(金) 19:59:41.11ID:0ytDqati0578名無しさん@お腹いっぱい。 (ワッチョイ 4e1b-ptOG)
2023/10/27(金) 20:27:12.12ID:LQ21L+jl0 >>574
こうですか?うまく緑になりませんがどこか違うんでしょうね…
#bookmarksMenu menupopup > menuitem treechildren::-moz-tree-row(selected)
{ background-color: green !important; }
こうですか?うまく緑になりませんがどこか違うんでしょうね…
#bookmarksMenu menupopup > menuitem treechildren::-moz-tree-row(selected)
{ background-color: green !important; }
579名無しさん@お腹いっぱい。 (ワッチョイ 4a56-JD/u)
2023/10/27(金) 22:40:40.30ID:Yu37zTfi0 ツイキャスの配信開始時に出るクリックしないと消えないダイアログ?を出ないようにする方法ありますか?
580名無しさん@お腹いっぱい。 (ワッチョイ 814f-Q0z2)
2023/10/29(日) 11:14:49.21ID:q6Jtw/pd0 >>577
/* 選択中の点線を消す */
:root {
--default-focusring-width : 0px !important;
}
上記消えない場合か不都合があれば↓で。
/* 選択中の点線を消す */
treechildren::-moz-tree-row(current, focus) {
border: 1px dotted #F3D982 !important; /* 周囲と同じ色を指定する */
outline: none !important;
}
/* 選択中の点線を消す */
:root {
--default-focusring-width : 0px !important;
}
上記消えない場合か不都合があれば↓で。
/* 選択中の点線を消す */
treechildren::-moz-tree-row(current, focus) {
border: 1px dotted #F3D982 !important; /* 周囲と同じ色を指定する */
outline: none !important;
}
581名無しさん@お腹いっぱい。 (ニククエ eb6c-Q0z2)
2023/10/29(日) 14:06:26.62ID:WwYD5jxO0NIKU582名無しさん@お腹いっぱい。 (スッップ Sd33-ZQZw)
2023/10/30(月) 00:19:05.47ID:hKMZydOnd んー上のやってみたがタブの色戻らんなぁ
583名無しさん@お腹いっぱい。 (スッップ Sd33-ZQZw)
2023/10/30(月) 00:39:04.32ID:hKMZydOnd ホバーのときはもとので出来るのに
584名無しさん@お腹いっぱい。 (スッップ Sd33-ZQZw)
2023/10/30(月) 01:15:04.63ID:hKMZydOnd .tabbrowser-tab[selected] > .tab-stack > .tab-background{
できたわ
できたわ
585名無しさん@お腹いっぱい。 (ワッチョイ d3ad-Q0z2)
2023/10/30(月) 08:07:53.73ID:JtHnNYR10 描画速度としてはCSSセレクタは子セレクタ(>でつなげる)よりも、小孫セレクタ(スペースでつなげる)の方が速いらしいって聞いて
子セレクタで書いてたやつをほとんど小孫セレクタに書き換えたわ、体感的には分からんけど
ブラウザで取得できるCSSセレクタも小孫セレクタだしな
子セレクタで書いてたやつをほとんど小孫セレクタに書き換えたわ、体感的には分からんけど
ブラウザで取得できるCSSセレクタも小孫セレクタだしな
586名無しさん@お腹いっぱい。 (ワッチョイ d3ad-Q0z2)
2023/10/30(月) 09:27:01.83ID:JtHnNYR10 タブが1つの時はタブバーを非表示にしたいんですが、以下ではうまくいきませんでした
どのようなセレクタが適切でしょうか?教えて頂ければ幸いです
tab:only-of-type:has(#TabsToolbar)
{
display: none !important;
}
どのようなセレクタが適切でしょうか?教えて頂ければ幸いです
tab:only-of-type:has(#TabsToolbar)
{
display: none !important;
}
587名無しさん@お腹いっぱい。 (ワッチョイ 1397-H9h+)
2023/10/30(月) 10:45:47.94ID:r6GkuSgf0588名無しさん@お腹いっぱい。 (ワッチョイ d3ad-Q0z2)
2023/10/30(月) 13:54:38.64ID:JtHnNYR10 >>587
ありがとうございます、でもhas使いこなせず結局うまくいかなかったので
以下を参考にしてタブバー隠せました
https://support.mozilla.org/en-US/questions/1394300
tab:only-of-type, tab:only-of-type + #tabbrowser-arrowscrollbox-periphery
{ display: none !important; }
ありがとうございます、でもhas使いこなせず結局うまくいかなかったので
以下を参考にしてタブバー隠せました
https://support.mozilla.org/en-US/questions/1394300
tab:only-of-type, tab:only-of-type + #tabbrowser-arrowscrollbox-periphery
{ display: none !important; }
589名無しさん@お腹いっぱい。 (ワッチョイ 29cf-n4SB)
2023/10/30(月) 20:37:26.66ID:RGZ6UolO0 つべの投稿が何日前とかじゃなく投稿日で見えるようにするやつ
前は後者だけだったのだがhoverするまでの位置が安定しなかった
背景はダーク用な
/* 次のの直前:最初からサイズ0なのだが次のの位置決定に悪さする対策 */
tp-yt-paper-tooltip.style-scope.ytd-watch-info-text
{left: 0px !important; top: 0px !important;}
/* 有効になったときに動くと鬱陶しいので元の位置も変えておく */
div#description div#tooltip.style-scope.tp-yt-paper-tooltip,
div#description div#tooltip.style-scope.tp-yt-paper-tooltip.hidden
{display:block !important; width:621px; height:13px;
position:absolute; top:-3px; left:-5px;
background:#282828; font-size:13px !important;}
前は後者だけだったのだがhoverするまでの位置が安定しなかった
背景はダーク用な
/* 次のの直前:最初からサイズ0なのだが次のの位置決定に悪さする対策 */
tp-yt-paper-tooltip.style-scope.ytd-watch-info-text
{left: 0px !important; top: 0px !important;}
/* 有効になったときに動くと鬱陶しいので元の位置も変えておく */
div#description div#tooltip.style-scope.tp-yt-paper-tooltip,
div#description div#tooltip.style-scope.tp-yt-paper-tooltip.hidden
{display:block !important; width:621px; height:13px;
position:absolute; top:-3px; left:-5px;
background:#282828; font-size:13px !important;}
590名無しさん@お腹いっぱい。 (中止 13f4-XVKo)
2023/10/31(火) 00:32:26.75ID:iqpOrJ4W0HLWN 119、visuallyselected使えなくなってる?
591名無しさん@お腹いっぱい。 (ワッチョイ 094a-Q0z2)
2023/11/01(水) 15:34:22.06ID:KThtrPBO0 >>0588
横から Many thanks!
横から Many thanks!
592名無しさん@お腹いっぱい。 (ワッチョイ d335-Q0z2)
2023/11/01(水) 15:53:27.22ID:AjY8Q9D10 アドレスバーの候補表示設定を全てチェックを外すとポップアップで候補が表示されなくなりますが
URLをクリックすると青い枠が表示されます
目障りなので青い枠を表示させないようにするcssを教えてください
以下はだめでした
#urlbar:-moz-focusring {
outline: none !important;
}
URLをクリックすると青い枠が表示されます
目障りなので青い枠を表示させないようにするcssを教えてください
以下はだめでした
#urlbar:-moz-focusring {
outline: none !important;
}
593名無しさん@お腹いっぱい。 (ワッチョイ 2158-9BPk)
2023/11/01(水) 16:26:18.91ID:8JmZmfoZ0 以下が効かなくなったのですが修正方法を教えてください
img:-moz-loading{visibility:hidden!important;}
img:-moz-loading{visibility:hidden!important;}
594名無しさん@お腹いっぱい。 (ワッチョイ d335-Q0z2)
2023/11/01(水) 20:23:59.23ID:AjY8Q9D10 ブラウザツールボックス内のコンテキストメニューの縦幅サイズが大きいのですが
ここはuserChrome.cssでのカスタムはムリでしょうか?
以下は効きませんでした
menuitem, menu
{ padding: 2px 5px 2px 5px !important; }
ここはuserChrome.cssでのカスタムはムリでしょうか?
以下は効きませんでした
menuitem, menu
{ padding: 2px 5px 2px 5px !important; }
595名無しさん@お腹いっぱい。 (ワッチョイ 1397-c8RC)
2023/11/01(水) 21:48:46.01ID:wAXBWz1U0 >>594
ブラウザツールボックス用のcssはchrome_debugger_profile\chromeの中に置く
ブラウザツールボックス用のcssはchrome_debugger_profile\chromeの中に置く
596名無しさん@お腹いっぱい。 (ワッチョイ d335-Q0z2)
2023/11/01(水) 22:01:33.38ID:AjY8Q9D10 >>595
できました!ありがとうございます
できました!ありがとうございます
597名無しさん@お腹いっぱい。 (ワッチョイ d3ba-Q0z2)
2023/11/02(木) 14:09:26.40ID:m2u+gzLF0 >>592のやつですが以下で青色が出ないようにはできました
ただ、枠外のボーダーかシャドウがまだ出てしまうので、それも出ないようにしたいです
(つまりURLバーをクリックしても見た目が変わらないようにしたい)
現状以下です、よろしくお願いします
/* アドレスバーにフォーカスしても見た目を変えない */
#urlbar {
--toolbar-field-focus-border-color: var(--toolbar-field-border-color) !important;
--toolbar-field-focus-background-color: var(--toolbar-field-background-color) !important;
box-shadow: 0px !important;
border: 0px !important;
}
ただ、枠外のボーダーかシャドウがまだ出てしまうので、それも出ないようにしたいです
(つまりURLバーをクリックしても見た目が変わらないようにしたい)
現状以下です、よろしくお願いします
/* アドレスバーにフォーカスしても見た目を変えない */
#urlbar {
--toolbar-field-focus-border-color: var(--toolbar-field-border-color) !important;
--toolbar-field-focus-background-color: var(--toolbar-field-background-color) !important;
box-shadow: 0px !important;
border: 0px !important;
}
598名無しさん@お腹いっぱい。 (ワッチョイ b1be-QCFe)
2023/11/02(木) 17:28:01.25ID:D5QlkTpH0599名無しさん@お腹いっぱい。 (ワッチョイ d3ba-Q0z2)
2023/11/02(木) 19:16:48.26ID:m2u+gzLF0 >>598
ありがとうございます!
ありがとうございます!
600名無しさん@お腹いっぱい。 (ワッチョイ 22f5-jfG6)
2023/11/07(火) 21:42:22.00ID:c+tTtFER0 UIのポップアップメニューのマウスオーバー色は変えたいけど
コンテンツ内のプルダウンメニューのマウスオーバー色はデフォルトにしたいです
以下ではblueにはなりませんでしたが、デフォルトのマウスオーバー色にもなりませんでした
ご教示のほどお願いします
/* ポップアップメニューアイテムのマウスオーバー色 */
menuitem:hover {
background-color: blue !important;
}
/* コンテンツ内プルダウンメニューアイテムのマウスオーバー色 */
.ContentSelectDropdown-item-0:hover {
background-color: initial !important;
}
コンテンツ内のプルダウンメニューのマウスオーバー色はデフォルトにしたいです
以下ではblueにはなりませんでしたが、デフォルトのマウスオーバー色にもなりませんでした
ご教示のほどお願いします
/* ポップアップメニューアイテムのマウスオーバー色 */
menuitem:hover {
background-color: blue !important;
}
/* コンテンツ内プルダウンメニューアイテムのマウスオーバー色 */
.ContentSelectDropdown-item-0:hover {
background-color: initial !important;
}
601名無しさん@お腹いっぱい。 (ワッチョイ 31be-Zzzn)
2023/11/08(水) 07:06:08.77ID:+nsDVE5s0 >>600
menupopup:not(#ContentSelectDropdownPopup) :is(menu, menuitem):not([disabled])[_moz-menuactive] {
background-color: blue !important;
}
menupopup:not(#ContentSelectDropdownPopup) :is(menu, menuitem):not([disabled])[_moz-menuactive] {
background-color: blue !important;
}
602名無しさん@お腹いっぱい。 (ワッチョイ 22d3-jfG6)
2023/11/08(水) 10:11:01.21ID:oaEIXEKj0 >>601
menuitem:not(.ContentSelectDropdown-item-0):hover
で除外できました。ありがとうございます。
後方でinitial等で初期値を上書きできればと思ったんですが、うまくいかないものですね。
menuitem:not(.ContentSelectDropdown-item-0):hover
で除外できました。ありがとうございます。
後方でinitial等で初期値を上書きできればと思ったんですが、うまくいかないものですね。
603名無しさん@お腹いっぱい。 (ワッチョイ 9d11-9NWm)
2023/11/09(木) 14:55:57.94ID:mKBsKUDr0 >>560
557じゃないけどありがとうございます
557じゃないけどありがとうございます
604名無しさん@お腹いっぱい。 (ワッチョイ c64a-jfG6)
2023/11/09(木) 16:55:27.65ID:xJjECzt90 :where(.aaa, .bbb)
がなんとなく調子悪いので
:is(.aaa, .bbb)
を使ってる
:whereって複数選択できないのかな?
がなんとなく調子悪いので
:is(.aaa, .bbb)
を使ってる
:whereって複数選択できないのかな?
605名無しさん@お腹いっぱい。 (ワッチョイ 4297-sdYh)
2023/11/09(木) 17:17:51.52ID:lYn3aIN50 :whereは詳細度上がらないから有無を言わさずルール上書きしたい場合に向かない
606名無しさん@お腹いっぱい。 (ワッチョイ c64a-jfG6)
2023/11/09(木) 19:02:11.37ID:xJjECzt90 なるほど、やっぱり:isを使うべきか
607名無しさん@お腹いっぱい。 (スップーT Sdc2-jfG6)
2023/11/10(金) 15:40:27.75ID:voYkgPVmd Chromeだったらアドオンでいくつかあるのだけど、Firefoxには見当たらないので、
YouTubeのコントロールバーをプレイヤーの下に表示するCSSを作りました。
標準プレイヤーのみの対応ですが、よければ使ってください。
/* 標準プレイヤーの高さをコントロールバーの分増やす */
ytd-watch-flexy:not([theater]) #player-container-inner {
height: 51px !important
}
/* プレイヤーバックの色変更 */
ytd-watch-flexy:not([theater]) #movie_player {
background-color: #000000 !important
}
なお、コントロールバーは一定時間経てば消えますが、
常時表示したい場合は、次のスクリプトをインストールしてください。
YouTube Permanent ProgressBar
https://greasyfork.org/ja/scripts/426283-youtube-permanent-progressbar
このCSS、シネマモードでも使えるようにしたいのですが、どうもうまく行きません。
もしいい方法があれば、助言お願いします。
YouTubeのコントロールバーをプレイヤーの下に表示するCSSを作りました。
標準プレイヤーのみの対応ですが、よければ使ってください。
/* 標準プレイヤーの高さをコントロールバーの分増やす */
ytd-watch-flexy:not([theater]) #player-container-inner {
height: 51px !important
}
/* プレイヤーバックの色変更 */
ytd-watch-flexy:not([theater]) #movie_player {
background-color: #000000 !important
}
なお、コントロールバーは一定時間経てば消えますが、
常時表示したい場合は、次のスクリプトをインストールしてください。
YouTube Permanent ProgressBar
https://greasyfork.org/ja/scripts/426283-youtube-permanent-progressbar
このCSS、シネマモードでも使えるようにしたいのですが、どうもうまく行きません。
もしいい方法があれば、助言お願いします。
608名無しさん@お腹いっぱい。 (ワッチョイ 194f-jfG6)
2023/11/10(金) 20:24:32.44ID:f3pKcrn20 Firefoxのポップアップの背景色だけ有効にしたいでのですが
どのようにすれば良いですか
/* ポップアップ */
.menupopup-arrowscrollbox{
background-color: Pink !important;
}
どのようにすれば良いですか
/* ポップアップ */
.menupopup-arrowscrollbox{
background-color: Pink !important;
}
609名無しさん@お腹いっぱい。 (ワッチョイ 22f5-jfG6)
2023/11/10(金) 21:03:58.18ID:WOCSS5Dk0 Pinkじゃなくてとりあえずredで試してみたら?
俺は以下で変えられてる
/* ポップアップメニューの背景色 */
.menupopup-arrowscrollbox {
background-color: #F2F2F2 !important;
}
俺は以下で変えられてる
/* ポップアップメニューの背景色 */
.menupopup-arrowscrollbox {
background-color: #F2F2F2 !important;
}
610名無しさん@お腹いっぱい。 (ワッチョイ 194f-jfG6)
2023/11/10(金) 23:08:12.50ID:f3pKcrn20 FirefoxのUI以外はどのように除外すればよいのでしょう?
一部のサイトで色が変わってしまいます
一部のサイトで色が変わってしまいます
611名無しさん@お腹いっぱい。 (ワッチョイ 1f5e-gzdM)
2023/11/11(土) 06:02:19.50ID:DRpcqQZc0 >>607
:root {
--controller-height: 51px;
}
#full-bleed-container {
margin-bottom: var(--controller-height) !important;
}
ytd-watch-flexy[theater] {
z-index: 0 !important;
}
ytd-watch-flexy[theater] .html5-video-player {
overflow: visible !important;
}
ytd-watch-flexy[theater] .ytp-chrome-bottom {
margin-bottom: calc(var(--controller-height) * -1) !important;
}
ytd-watch-flexy[theater] #player-container::after {
content: '';
position: absolute;
width: 100%;
height: var(--controller-height);
margin-bottom: calc(var(--controller-height) * -1);
background: #000;
z-index: -1;
}
--controller-heightでコントローラー位置を調節できる
:root {
--controller-height: 51px;
}
#full-bleed-container {
margin-bottom: var(--controller-height) !important;
}
ytd-watch-flexy[theater] {
z-index: 0 !important;
}
ytd-watch-flexy[theater] .html5-video-player {
overflow: visible !important;
}
ytd-watch-flexy[theater] .ytp-chrome-bottom {
margin-bottom: calc(var(--controller-height) * -1) !important;
}
ytd-watch-flexy[theater] #player-container::after {
content: '';
position: absolute;
width: 100%;
height: var(--controller-height);
margin-bottom: calc(var(--controller-height) * -1);
background: #000;
z-index: -1;
}
--controller-heightでコントローラー位置を調節できる
612名無しさん@お腹いっぱい。 (ワッチョイ 1f5e-gzdM)
2023/11/11(土) 08:01:50.19ID:DRpcqQZc0 >>611
横着したら普通の方のデザインが崩れてたので訂正
:root {
--controller-height: 51px;
}
ytd-watch-flexy[theater] #full-bleed-container {
margin-bottom: var(--controller-height) !important;
}
ytd-watch-flexy[theater] {
z-index: 0 !important;
}
ytd-watch-flexy[theater] .html5-video-player {
overflow: visible !important;
}
ytd-watch-flexy[theater] .ytp-chrome-bottom {
margin-bottom: calc(var(--controller-height) * -1) !important;
}
ytd-watch-flexy[theater] #player-container::after {
content: '';
position: absolute;
width: 100%;
height: var(--controller-height);
margin-bottom: calc(var(--controller-height) * -1);
background: #000;
z-index: -1;
}
ついでにツールチップの位置を下げるやつ
.ytp-tooltip {
margin-top: var(--controller-height) !important;
}
横着したら普通の方のデザインが崩れてたので訂正
:root {
--controller-height: 51px;
}
ytd-watch-flexy[theater] #full-bleed-container {
margin-bottom: var(--controller-height) !important;
}
ytd-watch-flexy[theater] {
z-index: 0 !important;
}
ytd-watch-flexy[theater] .html5-video-player {
overflow: visible !important;
}
ytd-watch-flexy[theater] .ytp-chrome-bottom {
margin-bottom: calc(var(--controller-height) * -1) !important;
}
ytd-watch-flexy[theater] #player-container::after {
content: '';
position: absolute;
width: 100%;
height: var(--controller-height);
margin-bottom: calc(var(--controller-height) * -1);
background: #000;
z-index: -1;
}
ついでにツールチップの位置を下げるやつ
.ytp-tooltip {
margin-top: var(--controller-height) !important;
}
613607 (ポキッーT Sd1f-gzdM)
2023/11/11(土) 21:50:24.44ID:iFV/7D8Nd1111 >>612
うまく行きました。
本当にありがとうございます。
このCSSを見ると、自分のスキルではまだまだ無理だと実感しましたw
個人的に、コントロールバーを下にずらしたので、
バーを覆っていた影が気になるため、非表示にしました。
/* プレイヤー下部の影の非表示 */
ytd-watch-flexy .ytp-gradient-bottom {
display: none !important
}
うまく行きました。
本当にありがとうございます。
このCSSを見ると、自分のスキルではまだまだ無理だと実感しましたw
個人的に、コントロールバーを下にずらしたので、
バーを覆っていた影が気になるため、非表示にしました。
/* プレイヤー下部の影の非表示 */
ytd-watch-flexy .ytp-gradient-bottom {
display: none !important
}
614名無しさん@お腹いっぱい。 (ワッチョイ 1f58-kIyz)
2023/11/15(水) 00:03:48.32ID:6c0l3urr0 >>593
削除されてました
1850342 - Remove :-moz-loading, and avoid exposing :-moz-broken pseudo-class to content.
ttps://bugzilla.mozilla.org/show_bug.cgi?id=1850342
削除されてました
1850342 - Remove :-moz-loading, and avoid exposing :-moz-broken pseudo-class to content.
ttps://bugzilla.mozilla.org/show_bug.cgi?id=1850342
615名無しさん@お腹いっぱい。 (ワッチョイ 7f76-Zoup)
2023/11/16(木) 15:55:02.31ID:GAfZis5L0 ここにある
https://www.userchrome.org/firefox-89-styling-proton-ui.html
↓のように、アクティブタブの上部に青線、だけほしいので書式お願いします。
Container/Active Tab color line:
+Blue Line on active tab
https://www.userchrome.org/firefox-89-styling-proton-ui.html
↓のように、アクティブタブの上部に青線、だけほしいので書式お願いします。
Container/Active Tab color line:
+Blue Line on active tab
616名無しさん@お腹いっぱい。 (ワッチョイ 7f09-gzdM)
2023/11/16(木) 16:39:40.94ID:dwMVWCtr0 /* タブの上部のライン */
.tab-background[multiselected],
.tab-background[selected] {
background: linear-gradient(to bottom, #0A84FF 2px, var(--toolbar-bgcolor) 0px) !important;
outline: none !important;
}
.tab-background[multiselected],
.tab-background[selected] {
background: linear-gradient(to bottom, #0A84FF 2px, var(--toolbar-bgcolor) 0px) !important;
outline: none !important;
}
617名無しさん@お腹いっぱい。 (ワッチョイ 7f76-Zoup)
2023/11/16(木) 20:15:35.11ID:GAfZis5L0618名無しさん@お腹いっぱい。 (ワッチョイ 1f66-gzdM)
2023/11/16(木) 21:16:15.52ID:9vD6Cyf/0 /* アクティブタブの上に青い線 */
.tab-background:is([selected], [multiselected]) {
border-top: 1px solid Blue !important;
}
.tab-background:is([selected], [multiselected]) {
border-top: 1px solid Blue !important;
}
619名無しさん@お腹いっぱい。 (ワッチョイ 7f76-Zoup)
2023/11/16(木) 21:48:31.17ID:GAfZis5L0 >>618
ありがとうございます。出来ました。
ありがとうございます。出来ました。
620名無しさん@お腹いっぱい。 (ワッチョイ 9f58-Zoup)
2023/11/17(金) 19:08:03.92ID:OXKGruvy0 /* アクティブタブの文字色 */
label.tab-text.tab-label[selected="true"]{font-weight: bold !important;}
これが119で動かないんだけどどこを修正すれば動きますか?
label.tab-text.tab-label[selected="true"]{font-weight: bold !important;}
これが119で動かないんだけどどこを修正すれば動きますか?
621名無しさん@お腹いっぱい。 (ワッチョイ ffb8-gzdM)
2023/11/17(金) 19:33:17.61ID:xX6UYbsC0 ="true"
を削除
を削除
622名無しさん@お腹いっぱい。 (ワッチョイ 1f4f-gzdM)
2023/11/17(金) 20:32:00.21ID:UwG7SfoR0 /* アクティブタブの背景色 */
.tab-background:is([selected], [multiselected])
/* アクティブタブの文字色 */
.tabbrowser-tab:is([visuallyselected], [multiselected])
/* 非アクティブタブの背景色 */
.tab-background:not([selected], [multiselected])
/* 非アクティブタブの文字色 */
.tabbrowser-tab:not([visuallyselected], [multiselected])
/* アクティブにマウスオンしたときの背景色 */
.tabbrowser-tab:hover > .tab-stack > .tab-background:is([selected], [multiselected])
/* アクティブにマウスオンしたときの文字色 */
.tabbrowser-tab:hover > .tab-stack >:is([selected], [multiselected])
/* 非アクティブにマウスオンしたときの背景色 */
.tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected], [multiselected])
/* 非アクティブにマウスオンしたときの文字色 */
.tabbrowser-tab:hover > .tab-stack >:not([selected], [multiselected])
.tab-background:is([selected], [multiselected])
/* アクティブタブの文字色 */
.tabbrowser-tab:is([visuallyselected], [multiselected])
/* 非アクティブタブの背景色 */
.tab-background:not([selected], [multiselected])
/* 非アクティブタブの文字色 */
.tabbrowser-tab:not([visuallyselected], [multiselected])
/* アクティブにマウスオンしたときの背景色 */
.tabbrowser-tab:hover > .tab-stack > .tab-background:is([selected], [multiselected])
/* アクティブにマウスオンしたときの文字色 */
.tabbrowser-tab:hover > .tab-stack >:is([selected], [multiselected])
/* 非アクティブにマウスオンしたときの背景色 */
.tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected], [multiselected])
/* 非アクティブにマウスオンしたときの文字色 */
.tabbrowser-tab:hover > .tab-stack >:not([selected], [multiselected])
623名無しさん@お腹いっぱい。 (ワッチョイ c176-hO6y)
2023/11/18(土) 19:17:35.84ID:cgw9DvTW0 firefoxでstylus更新したらCSS効かなくなったんだけどなんで?
624名無しさん@お腹いっぱい。 (ワッチョイ a503-hO6y)
2023/11/18(土) 22:56:43.75ID:XB8apQtC0625名無しさん@お腹いっぱい。 (HappyBirthday! 520c-hO6y)
2023/11/20(月) 23:52:25.21ID:9MiWme6b0HAPPY 現バージョンでの音が出ているタブの色を変える方法が判明したら教えていただけますか
626名無しさん@お腹いっぱい。 (ワッチョイ e92d-rrr/)
2023/11/21(火) 02:53:40.34ID:PceYQi9w0 >>625
.tabbrowser-tab:is([soundplaying], [muted]) .tab-background {
background-color: #f00 !important;
}
.tabbrowser-tab:is([soundplaying], [muted]) .tab-background {
background-color: #f00 !important;
}
627名無しさん@お腹いっぱい。 (ワッチョイ 520c-hO6y)
2023/11/21(火) 04:15:33.59ID:MY2f9Xb80 >>626
ほんと助かります、どうもありがとう
ほんと助かります、どうもありがとう
■ このスレッドは過去ログ倉庫に格納されています
ニュース
- 橋下徹氏 外務省幹部の訪中受け「口だけ番長」へ痛烈指摘 「喧嘩は日本の完敗…なんとかっこ悪い日本か」 [冬月記者★]
- 【外国人問題】小野田紀美担当相「不法就労や不法滞在は許さない」 [シャチ★]
- 【野球】井端監督 大谷翔平、山本由伸らのWBCへの参加 「1日も早く返事ほしい」「待っててといっても、国内組が遅くなってしまう」★3 [冬月記者★]
- 経団連会長、日中は建設的対話を 経済3団体が高市首相と初会談も日中関係は話題に登らず… [BFU★]
- 中国で「クレしん」公開延期 対日報復、エンタメに波及 [蚤の市★]
- 東京株式市場 インバウンド関連株が下落 中国政府の渡航自粛要請で [バイト歴50年★]
- そういや米倉涼子はどうなったんんや?
- 有識者「高市総理が発言を撤回したり、辞職するしかないと言っている人は、それで日中関係が今まで通りになると思ってる?」 [834922174]
- 戦争は無くならないし殺人は起きるし女はレイプされるし子供は餓死するし
- ( -᷄ὢ-᷅ )💤
- 女性検診なんでオナニーしてグチョグチョで行ってやる
- 日経時間外、5万円割れ 垂直落下始まる [402859164]
