Last active
January 1, 2017 18:21
-
-
Save hinaloe/148794f645b5d5dd5d38061254ea5edf to your computer and use it in GitHub Desktop.
Abemaでコメント背景を透過するCSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
.styles__container___1NCBk.styles__item___g1QVu { | |
background: transparent !important; | |
} | |
.styles__container___N94GK { | |
background-color: rgba(255, 255, 255, 0.8); | |
} | |
.styles__right-comment-area___1Mun-.styles__right-slide-base___2DeT6.styles__right-slide--shown___6J2yq { | |
background-color: transparent; | |
} | |
.styles__container___1V5Lc.styles__resize-screen___3s7AX { | |
width: 100vw !important; | |
height: 100vh !important; | |
} | |
*/ | |
div[class^="styles__comment-list-wrapper___"] div[class*="styles__container___"][class*="styles__item___"] { | |
background-color: transparent !important; | |
} | |
div[class*="styles__right-comment-area___"][class*="styles__right-slide-base___"] > div[class^="styles__container___"] { | |
background-color: rgba(255, 255, 255, 0.8); | |
} | |
div[class*="styles__right-comment-area___"][class*="styles__right-slide-base___"] { | |
background-color: transparent; | |
} | |
[class*="styles__container___"][class*="styles__resize-screen___"] { | |
width: 100vw !important; | |
height: 100vh !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment