色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

如何使用CSS改變Youtube Like按鈕的顏色

我已經(jīng)閱讀了這個(gè)帖子中的信息,但它似乎已經(jīng)過時(shí)了,因?yàn)樗鼘?duì)我不起作用!

我使用的是Arc瀏覽器和一個(gè)叫做Boost的新功能,通過這個(gè)功能,用戶可以使用自定義CSS規(guī)則自定義網(wǎng)頁的外觀。

到目前為止,我的自定義CSS規(guī)則如下:

.iron-selected {
  background-color: antiquewhite !important;
}

.iron-selected > #text {
  color: #000 !important;
}

.style-scope, .yt-spec-button-shape-next--mono.yt-spec-button-shape-next--tonal {
  color: #898989 !important;
}

ytd-app, .ytd-app, div#background, div#chips-wrapper {
  background-color: #0f0f0f !important;
}

.ytd-channel-name {
  color: #444 !important;
}

第三個(gè)CSS規(guī)則正確地將拇指向下(不喜歡)按鈕的顏色改為淺灰色,但是拇指向上(喜歡)按鈕仍然是黑色的,如下面的屏幕截圖所示:

YouTube buttons below the video player

我研究了下面的HTML代碼,但我不明白like按鈕的黑色是從哪里來的,也不知道如何改變它:(我嘗試過設(shè)置各種選擇器的顏色,但都無濟(jì)于事!)

HTML code for the like button

明白了!

#segmented-like-button
    > ytd-toggle-button-renderer
    > yt-button-shape
    > button
    > div.yt-spec-button-shape-next__icon
    > yt-icon
    > yt-animated-icon
    > ytd-lottie-player
    > lottie-component
    > svg
    > g
    > g:nth-child(2)
    > g:nth-child(4)
    > path,
#segmented-like-button
    > ytd-toggle-button-renderer
    > yt-button-shape
    > button
    > div.yt-spec-button-shape-next__icon
    > yt-icon
    > yt-animated-icon
    > ytd-lottie-player
    > lottie-component
    > svg
    > g
    > g:nth-child(2)
    > g:nth-child(2)
    > path {
    stroke: #898989 !important; /* Set the desired color */
}