New
Jun 6, 2021 5:13 AM
#301
Where is the section to change the banner images and to make the background an image? |
Jun 6, 2021 9:36 PM
#302
Glowacreep said: Where is the section to change the banner images and to make the background an image? It looks like you may have already figured this out, but you can change them with MyAnimeList's built-in cover image and background image uploaders on the same page you input the CSS: https://myanimelist.net/ownlist/style |
Jun 8, 2021 7:18 PM
#303
LEGENDS_OF_ANIME said: Amethyst_Ero said: Hi, it's me again. So I would like to know. How to change this: https://i.imgur.com/8lRT2Mf.png To this: https://i.imgur.com/NmSnZpS.png Because it bothers my eyes and it gets blurry to see properly. add this code to to the bottom of your list: /*Quick search dark mode fix*/ body[data-owner="1"] #fancybox-frame { filter: none; } Thank you so muuuuch! |
Jun 12, 2021 7:08 PM
#304
Valerio_Lyndon said: ChipChippy said: I love the layout, had clarity before this, but wanted one with big covers and i find out you made this. Never used any other layouts. I modiefied it quite a bit, but don't have much CSS knowledge so I'm unsure how it all works together so I have one question, is it possible to create Top Rated banners but they only show up when a specific tag is added? It probably is but i can't figure it out. If you can help that would be lovely Did you mean something like this? It is possibe, but does require some modifications of how the tags work. This means that the scrollbar on tags no longer works, so some vertical overflow may occur when you are using a lot of tags. It also removes the little tag icon next to the tag. This first code affects only the B-Tier tag. It can easily be applied to other tags by changing the selectors if you know how to do that. The second spoiler shows an example of that. Use only one of these. /*------------------------------*\ |* Banner Tag *| \* - - - - - - - - - - - - - - -*/ /* Modify how Tags Work */ .data.tags { overflow: initial; opacity: 1; z-index: 10; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a { opacity: 1; } /* Tag-Specific Changes */ .data.tags a[href$="=B-Tier"] { position: static; opacity: 1; } .data.tags a[href$="=B-Tier"]::before { content: ""; position: absolute; right: -12px; top: -52px; z-index: -1; width: 210px; height: 6px; border-top: 2px solid hsl(var(--text)); border-radius: 6px 6px 0 0; pointer-events: none; } .data.tags a[href$="=B-Tier"]::after { content: "B-Tier"; position: absolute; right: 93px; top: -60px; z-index: -1; min-width: 100px; height: 21px; padding: 3px 5px 0; border-radius: 3px; background: hsl(var(--text)); color: hsl(var(--bg)); font: bold 15px/15px var(--font); text-align: center; letter-spacing: 1px; text-shadow: none; transform: translateX(50%); pointer-events: none; } /*------------------------------*\ |* Banner Tag *| \* - - - - - - - - - - - - - - -*/ /* Modify how Tags Work */ .data.tags { overflow: initial; opacity: 1; z-index: 10; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a { opacity: 1; } /* Tag-Specific Changes */ .data.tags a[href$="=A-Tier"], .data.tags a[href$="=B-Tier"] { position: static; opacity: 1; } .data.tags a[href$="=A-Tier"]::before, .data.tags a[href$="=B-Tier"]::before { content: ""; position: absolute; right: -12px; top: -52px; z-index: -1; width: 210px; height: 6px; border-top: 2px solid hsl(var(--text)); border-radius: 6px 6px 0 0; pointer-events: none; } .data.tags a[href$="=B-Tier"]::before { border-top-color: hsl(0, 0%, 50%); } .data.tags a[href$="=A-Tier"]::after, .data.tags a[href$="=B-Tier"]::after { content: "A-Tier"; position: absolute; right: 93px; top: -60px; z-index: -1; min-width: 100px; height: 21px; padding: 3px 5px 0; border-radius: 3px; background: hsl(var(--text)); color: hsl(var(--bg)); font: bold 15px/15px var(--font); text-align: center; letter-spacing: 1px; text-shadow: none; transform: translateX(50%); pointer-events: none; } .data.tags a[href$="=B-Tier"]::after { content: "B-Tier"; background: hsl(0, 0%, 50%); } Yeah that's how I imagined it, except the customized tags are always displayed when not hovering. If i change the opacities, the banner and the tag change together picture: |
Jun 12, 2021 7:53 PM
#305
ChipChippy said: Ah yeah, that definitely needs fixing. It's a bit of a weird fix but by finnangling the color and text shadow properties a bit we can have the text hidden while keeping the banner visible. Here's some new code which should fix that:Valerio_Lyndon said: ChipChippy said: I love the layout, had clarity before this, but wanted one with big covers and i find out you made this. Never used any other layouts. I modiefied it quite a bit, but don't have much CSS knowledge so I'm unsure how it all works together so I have one question, is it possible to create Top Rated banners but they only show up when a specific tag is added? It probably is but i can't figure it out. If you can help that would be lovely Did you mean something like this? It is possibe, but does require some modifications of how the tags work. This means that the scrollbar on tags no longer works, so some vertical overflow may occur when you are using a lot of tags. It also removes the little tag icon next to the tag. This first code affects only the B-Tier tag. It can easily be applied to other tags by changing the selectors if you know how to do that. The second spoiler shows an example of that. Use only one of these. /*------------------------------*\ |* Banner Tag *| \* - - - - - - - - - - - - - - -*/ /* Modify how Tags Work */ .data.tags { overflow: initial; opacity: 1; z-index: 10; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a { opacity: 1; } /* Tag-Specific Changes */ .data.tags a[href$="=B-Tier"] { position: static; opacity: 1; } .data.tags a[href$="=B-Tier"]::before { content: ""; position: absolute; right: -12px; top: -52px; z-index: -1; width: 210px; height: 6px; border-top: 2px solid hsl(var(--text)); border-radius: 6px 6px 0 0; pointer-events: none; } .data.tags a[href$="=B-Tier"]::after { content: "B-Tier"; position: absolute; right: 93px; top: -60px; z-index: -1; min-width: 100px; height: 21px; padding: 3px 5px 0; border-radius: 3px; background: hsl(var(--text)); color: hsl(var(--bg)); font: bold 15px/15px var(--font); text-align: center; letter-spacing: 1px; text-shadow: none; transform: translateX(50%); pointer-events: none; } /*------------------------------*\ |* Banner Tag *| \* - - - - - - - - - - - - - - -*/ /* Modify how Tags Work */ .data.tags { overflow: initial; opacity: 1; z-index: 10; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a { opacity: 1; } /* Tag-Specific Changes */ .data.tags a[href$="=A-Tier"], .data.tags a[href$="=B-Tier"] { position: static; opacity: 1; } .data.tags a[href$="=A-Tier"]::before, .data.tags a[href$="=B-Tier"]::before { content: ""; position: absolute; right: -12px; top: -52px; z-index: -1; width: 210px; height: 6px; border-top: 2px solid hsl(var(--text)); border-radius: 6px 6px 0 0; pointer-events: none; } .data.tags a[href$="=B-Tier"]::before { border-top-color: hsl(0, 0%, 50%); } .data.tags a[href$="=A-Tier"]::after, .data.tags a[href$="=B-Tier"]::after { content: "A-Tier"; position: absolute; right: 93px; top: -60px; z-index: -1; min-width: 100px; height: 21px; padding: 3px 5px 0; border-radius: 3px; background: hsl(var(--text)); color: hsl(var(--bg)); font: bold 15px/15px var(--font); text-align: center; letter-spacing: 1px; text-shadow: none; transform: translateX(50%); pointer-events: none; } .data.tags a[href$="=B-Tier"]::after { content: "B-Tier"; background: hsl(0, 0%, 50%); } Yeah that's how I imagined it, except the customized tags are always displayed when not hovering. If i change the opacities, the banner and the tag change together picture: /*------------------------------*\ |* Banner Tag *| \* - - - - - - - - - - - - - - -*/ /* Modify how Tags Work */ .data.tags { overflow: initial; opacity: 1; z-index: 10; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a { opacity: 1; } /* Tag-Specific Changes */ .data.tags a[href$="=B-Tier"] { position: static; opacity: 1; color: hsla(var(--text), 0%) !important; text-shadow: none; } .list-item:hover .data.tags a[href$="=B-Tier"] { color: hsl(var(--text)) !important; text-shadow: -0.6px 0.84px 1.68px #000; } .list-item .data.tags a[href$="=B-Tier"]:hover { color: hsl(var(--textLinkHov)) !important; } .data.tags a[href$="=B-Tier"]::before { content: ""; position: absolute; right: -12px; top: -52px; z-index: -1; width: 210px; height: 6px; border-top: 2px solid hsl(var(--text)); border-radius: 6px 6px 0 0; pointer-events: none; } .data.tags a[href$="=B-Tier"]::after { content: "B-Tier"; position: absolute; right: 93px; top: -60px; z-index: -1; min-width: 100px; height: 21px; padding: 3px 5px 0; border-radius: 3px; background: hsl(var(--text)); color: hsl(var(--bg)); font: bold 15px/15px var(--font); text-align: center; letter-spacing: 1px; text-shadow: none; transform: translateX(50%); pointer-events: none; } Edit for other people who might use this code: To make this fit a different tag, you need to find all instances of this text: [href$="=B-Tier"] And replace the "B-Tier" text with your preferred tag, in URL format. URL format can be viewed by mousing over or clicking on your tag to check the URL address. Here's an example replacement that would target the "Testing 123" tag: [href$="=Testing%20123"]. |
Valerio_LyndonMar 7, 2022 10:40 PM
Jun 13, 2021 11:23 AM
#306
Gotta say this is a great layout. I used Clarity at first but then thought I'd try one with large pics and their both Amazing. I've been trying to add back a couple things from Clarity and was having a little trouble
Edited: The All Anime page stops at #300 for some reason and doesn't seem to be loading is there a way to fix this? Nevermind this one, found this in the forum [https://myanimelist.net/forum/?topicid=1847882]. |
LeosparsJun 13, 2021 5:25 PM
Jun 13, 2021 11:25 AM
#307
I see this layout and Clarity on so many non-club member's lists O_O |
Jun 16, 2021 12:47 AM
#308
Leospars said: I've been trying to add back a couple things from Clarity and was having a little trouble • Getting the header text colour based on category [CatCol Header Text R0.0] Yeah, if you're using mods from Clarity they will probably need a lot of tweaking to work on Brink, if they work at all. They are coded very differently. On Brink, there are some different selectors used as well as some different variables. /*------------------------------*\ |* Category Colour Header Text *| \* - - - - - - - - - - - - - - -*/ #status-menu .status-button:nth-of-type(1)::before { color: hsl(var(--accent)) !important; } #status-menu .status-button:nth-of-type(2)::before { color: hsl(var(--current)) !important; } #status-menu .status-button:nth-of-type(3)::before { color: hsl(var(--completed)) !important; } #status-menu .status-button:nth-of-type(4)::before { color: hsl(var(--paused)) !important; } #status-menu .status-button:nth-of-type(5)::before { color: hsl(var(--dropped)) !important; } #status-menu .status-button:nth-of-type(6)::before { color: hsl(var(--planned)) !important; } /*------------------------------*\ |* Category Colour Header Text *| \* - - - - - - - - - - - - - - -*/ #status-menu .status-button:nth-of-type(1)::before { color: hsla(var(--accent), 48%) !important; } #status-menu .status-button:nth-of-type(1):hover::before { color: hsl(var(--accent)) !important; } #status-menu .status-button:nth-of-type(2)::before { color: hsla(var(--current), 48%) !important; } #status-menu .status-button:nth-of-type(2):hover::before { color: hsl(var(--current)) !important; } #status-menu .status-button:nth-of-type(3)::before { color: hsla(var(--completed), 48%) !important; } #status-menu .status-button:nth-of-type(3):hover::before { color: hsl(var(--completed)) !important; } #status-menu .status-button:nth-of-type(4)::before { color: hsla(var(--paused), 48%) !important; } #status-menu .status-button:nth-of-type(4):hover::before { color: hsl(var(--paused)) !important; } #status-menu .status-button:nth-of-type(5)::before { color: hsla(var(--dropped), 48%) !important; } #status-menu .status-button:nth-of-type(5):hover::before { color: hsl(var(--dropped)) !important; } #status-menu .status-button:nth-of-type(6)::before { color: hsla(var(--planned), 48%) !important; } #status-menu .status-button:nth-of-type(6):hover::before { color: hsl(var(--planned)) !important; } Leospars said: • The text at the top in the banner I tried to use the Frankenstein you made before [https://myanimelist.net/forum/?topicid=1772180&show=50#msg57814011] but it broke the header layout :P. It's mostly a case of finding a different selector to apply the ::after element to. /*------------------------------*\ |* Cover Text *| \* - - - - - - - - - - - - - - -*/ .cover-block::after { content: "Leospars"; position: absolute; top: 5vw; left: calc(50% - 475px); color: #fff; font: bold 60px/60px Oswald; text-align: left; letter-spacing: 15px; text-shadow: 1px 4px 7px rgba(0,0,0,0.7); text-transform: uppercase; white-space: pre; transform: scale(.9) perspective(350px) rotateY(8deg) rotateZ(-3deg); } Leospars said: I also used the Hide Hentai Cover Mod to try this: -snip- It doesn't show in the preview on [https://myanimelist.net/ownlist/style/theme/3] however it does work but it also changes the opacity of all tags to 0. I thought this line was to bring them back .list-item:hover, .list-item:focus-within .data.tags a { opacity: 1 !important; } Ah no, that's a fuck-up on my part. It should be: .list-item:hover .data.tags a, .list-item:focus-within .data.tags a { opacity: 1; } /*------------------------------*\ |* Blur Top TIER Covers v1.0.1 *| \* - - - - - - - - - - - - - - -*/ .data.tags { overflow: initial; opacity: 1; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a, .list-item:focus-within .data.tags a { opacity: 1; } .data.tags a[href$="tag=Top%20tier"] { position: absolute; z-index: 5; top: -51px; right: -12px; width: 210px; height: 300px; padding: 120px 0 0 0; background: hsla(0, 0%, 0%, 50%); border-radius: 6px; color: hsl(var(--goldRating)) !important; font: 22px/24px var(--font) !important; text-align: center; text-transform: uppercase; opacity: 1; backdrop-filter: blur(4px); transition: opacity calc(var(--timeItem) * 1.5) var(--bezierFast); pointer-events: none; } .list-item:hover .data.tags a[href$="tag=Top%20tier"], .list-item:focus-within .data.tags a[href$="tag=Top%20tier"] { opacity: 0; } .data.tags a[href$="tag=Top%20tier"]::before{ content: "ANIME:"; display: block; height: 57px; padding: 3px 0 30px; background: hsla(var(--btn), var(--infoBGOpacity)); box-shadow: -1.2px 1.68px 3.36px hsla(0,0%,0%,35%); margin-bottom: -30px; font-size: 15px; } @supports not (backdrop-filter: blur(4px)) { .data.tags a[href$="tag=Top%20tier"] { background: hsla(0, 0%, 0%, 80%); } } .data.tags a[href$="tag=Top%20tier"]::after { content: none; } |
Jun 16, 2021 12:52 AM
#309
Shishio-kun said: I see this layout and Clarity on so many non-club member's lists O_O It's a bit weird to think about sometimes! |
Jun 16, 2021 2:08 PM
#310
Valerio_Lyndon said: Yeah, if you're using mods from Clarity they will probably need a lot of tweaking to work on Brink, if they work at all. They are coded very differently. On Brink, there are some different selectors used as well as some different variables. /*------------------------------*\ |* Category Colour Header Text *| \* - - - - - - - - - - - - - - -*/ #status-menu .status-button:nth-of-type(1)::before { color: hsl(var(--accent)) !important; } #status-menu .status-button:nth-of-type(2)::before { color: hsl(var(--current)) !important; } #status-menu .status-button:nth-of-type(3)::before { color: hsl(var(--completed)) !important; } #status-menu .status-button:nth-of-type(4)::before { color: hsl(var(--paused)) !important; } #status-menu .status-button:nth-of-type(5)::before { color: hsl(var(--dropped)) !important; } #status-menu .status-button:nth-of-type(6)::before { color: hsl(var(--planned)) !important; } /*------------------------------*\ |* Category Colour Header Text *| \* - - - - - - - - - - - - - - -*/ #status-menu .status-button:nth-of-type(1)::before { color: hsla(var(--accent), 48%) !important; } #status-menu .status-button:nth-of-type(1):hover::before { color: hsl(var(--accent)) !important; } #status-menu .status-button:nth-of-type(2)::before { color: hsla(var(--current), 48%) !important; } #status-menu .status-button:nth-of-type(2):hover::before { color: hsl(var(--current)) !important; } #status-menu .status-button:nth-of-type(3)::before { color: hsla(var(--completed), 48%) !important; } #status-menu .status-button:nth-of-type(3):hover::before { color: hsl(var(--completed)) !important; } #status-menu .status-button:nth-of-type(4)::before { color: hsla(var(--paused), 48%) !important; } #status-menu .status-button:nth-of-type(4):hover::before { color: hsl(var(--paused)) !important; } #status-menu .status-button:nth-of-type(5)::before { color: hsla(var(--dropped), 48%) !important; } #status-menu .status-button:nth-of-type(5):hover::before { color: hsl(var(--dropped)) !important; } #status-menu .status-button:nth-of-type(6)::before { color: hsla(var(--planned), 48%) !important; } #status-menu .status-button:nth-of-type(6):hover::before { color: hsl(var(--planned)) !important; } It's mostly a case of finding a different selector to apply the ::after element to. /*------------------------------*\ |* Cover Text *| \* - - - - - - - - - - - - - - -*/ .cover-block::after { content: "Leospars"; position: absolute; top: 5vw; left: calc(50% - 475px); color: #fff; font: bold 60px/60px Oswald; text-align: left; letter-spacing: 15px; text-shadow: 1px 4px 7px rgba(0,0,0,0.7); text-transform: uppercase; white-space: pre; transform: scale(.9) perspective(350px) rotateY(8deg) rotateZ(-3deg); } Ah no, that's a fuck-up on my part. It should be: .list-item:hover .data.tags a, .list-item:focus-within .data.tags a { opacity: 1; } /*------------------------------*\ |* Blur Top TIER Covers v1.0.1 *| \* - - - - - - - - - - - - - - -*/ .data.tags { overflow: initial; opacity: 1; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a, .list-item:focus-within .data.tags a { opacity: 1; } .data.tags a[href$="tag=Top%20tier"] { position: absolute; z-index: 5; top: -51px; right: -12px; width: 210px; height: 300px; padding: 120px 0 0 0; background: hsla(0, 0%, 0%, 50%); border-radius: 6px; color: hsl(var(--goldRating)) !important; font: 22px/24px var(--font) !important; text-align: center; text-transform: uppercase; opacity: 1; backdrop-filter: blur(4px); transition: opacity calc(var(--timeItem) * 1.5) var(--bezierFast); pointer-events: none; } .list-item:hover .data.tags a[href$="tag=Top%20tier"], .list-item:focus-within .data.tags a[href$="tag=Top%20tier"] { opacity: 0; } .data.tags a[href$="tag=Top%20tier"]::before{ content: "ANIME:"; display: block; height: 57px; padding: 3px 0 30px; background: hsla(var(--btn), var(--infoBGOpacity)); box-shadow: -1.2px 1.68px 3.36px hsla(0,0%,0%,35%); margin-bottom: -30px; font-size: 15px; } @supports not (backdrop-filter: blur(4px)) { .data.tags a[href$="tag=Top%20tier"] { background: hsla(0, 0%, 0%, 80%); } } .data.tags a[href$="tag=Top%20tier"]::after { content: none; } Oh I see. I added them now and they work nicely. I am trying to add an indicator for Favourite like what I had on the last layout. So I used the code you gave me the last time and changed it up a bit. /*FAVOURITE TAGS .DATA.STATUS*/ .data.tags span a[href*="=Favourite"] { opacity: 1; position: static; } .list-item .data.tags span a[href*="=Favourite"]::after { content: ""; position: absolute; left: -105px; top: 190px; height: 60px; width: 210px; border: 2px solid #ff1cae; background: hsla(321, 80%, 55%, 0.5); border-radius: 0 0px 8px 8px; transform: none !important; overwrite some horizontal tag code pointer-events: none !important; opacity: 1 !important; } .data.tags { overflow: initial; z-index: 9; } To resolve the first issue I tried this instead /*------------------------------*\ |* Banner Tag *| \* - - - - - - - - - - - - - - -*/ /* Modify how Tags Work */ .data.tags { overflow: initial; opacity: 1; z-index: 10; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a { opacity: 1; } /* Tag-Specific Changes */ .data.tags a[href$="=Favourite"] { position: static; opacity: 1; } .data.tags a[href$="=Favourite"]::before { content: ""; position: absolute; right: -12px; top: -51px; z-index: -1; width: 210px; height: 300px; border: 2px solid #ff1cae; box-shadow: 0 0 6px #ff1cae; border-radius: 6px; pointer-events: none; } .data.tags a[href$="=Favourite"]::after { content: "Favourite"; position: absolute; right: 93px; top: -60px; z-index: -1; min-width: 100px; height: 21px; padding: 3px 5px 0; border-radius: 3px; background: #ff1cae; color: hsl(var(--bg)); font: bold 15px/15px var(--font); text-align: center; letter-spacing: 1px; text-shadow: none; transform: translateX(50%); pointer-events: none; } With the code you gave ChipChippy [https://myanimelist.net/forum/?topicid=1772180&show=300#msg63392710] earlier. The top :before was off by one, so I changed that. However the tag itself was still showing. Added: .data.tags span a[href*="=Favourite"] {color: transparent !important; --btn-text-h: #bc1681!important; } .list-item:hover .data.tags span a[href*="=Favourite"]{ color: #ff1cae !important; } |
LeosparsJun 16, 2021 5:17 PM
Jun 20, 2021 9:44 PM
#311
Leospars said: However, I couldn't find a way to get it below the text and above the category colour at the same time, and when I try to show without hover the text shows too. The category background is intrinsically linked with the anime title, and due to how limiting z-index functions are, I don't think it's possible to have the favourite tag go below the title while keeping it above the background colour. I could be wrong, but I tested it out and couldn't see a way. Leospars said: To resolve the first issue I tried this instead … However the tag itself was still showing. Looking on your list currently, it seems to be working alright. Were you still having issues with this solution? If you need a fix for the tag showing, I posted a revised version of that code in response to the other user: https://myanimelist.net/forum/?topicid=1772180&show=300#msg63467614 And if you want the Favourite banner to display above the Top Tier tag, you can modify the z-index of the Favourite tag code. For example, changing the ".data.tags a[href$="=Favourite"]::after" z-index from -1 to 6: |
Jun 21, 2021 7:50 AM
#312
Leospars said: Shishio-kun said: Leospars said: Shishio-kun said: Leospars said: Shishio-kun said: Leospars said: /*------------------------------*\ |* Fixed Height Titles *| \* - - - - - - - - - - - - - - -*/ .data.title .link{ /* change the number after the -webkit-line-clamp: _ to adjust the amount of lines*/ display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: height 0.7s ease-in, color var(--bezierFast) linear; } .data.title:hover .link{ -webkit-line-clamp: 4; max-height: 100%; } Is it possible to get the color of the link and height on hover to transition/change at different speeds. see transition: height 0.7s ease-in, color var(--bezierFast) linear; 0.7s might be the speed or time (.7 of a second) so make it 2s for 2 seconds, 1s for one second, .33 for a third of a second, etc I'm not sure what you mean. I already know how that those are the seconds for how long the transitions should be, but the timing is only affecting the color. I might have used the wrong selector for the height but I'm not sure if I did or what it should be so that the title moves up slower on hover. Is it for this layout? https://myanimelist.net/forum/?topicid=1772180 Or this? https://myanimelist.net/forum/?topicid=1723114 If so I'll just move the post over to the right topic so he can handle it he knows these layouts better On anime, the only animation I see is the pop up when you point to an anime, and this is controlled by --timeItem in the root. Is that what you want to change separately? Oh I see. It's for when you hover in the title area or over the link to the anime name but I'll move it over to that one like you suggested. Oh is this a height animation you're trying to change? You want the text color to come in slow and the height fast or..? Yeah that's it. I want the height to move slower and the text color to stay as the original which was fast, var(--Beizerfast) I think. Moved the post over here |
Jun 22, 2021 11:59 PM
#313
Leospars said: Leospars said: /*------------------------------*\ |* Fixed Height Titles *| \* - - - - - - - - - - - - - - -*/ .data.title .link{ /* change the number after the -webkit-line-clamp: _ to adjust the amount of lines*/ display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: height 0.7s ease-in, color var(--bezierFast) linear; } .data.title:hover .link{ -webkit-line-clamp: 4; max-height: 100%; } Is it possible to get the color of the link and height on hover to transition/change at different speeds. Yeah that's it. I want the height to move slower and the text color to stay as the original which was fast, var(--Beizerfast) I think. Unfortunately, there's no way to animate line-clamp from what I can see. I also don't believe there is a way to animate max-heigth or any "auto" value either, so I think it's something to do with values that get automatically generated by the browser and may be different depending on the length of text. The point is, the only way to animate the height would be to set a fixed default and fixed expansion value, for instance 2 lines expanding into 4 lines worth of height. Then, you could add that to the transition property separately from the color property. Here's an example of that, replacing your current "fixed height titles" section: /*------------------------------*\ |* Fixed Height Titles *| \* - - - - - - - - - - - - - - -*/ .data.title .link{ /* change the number after the calc( _ to adjust the amount of lines*/ height: calc( 2 * 18px + 10px ); overflow: hidden; transition: color var(--timeText) var(--bezierFast), height 0.3s ease-in-out !important; } .data.title:hover .link { /* change the number after the calc( _ to adjust the amount of lines*/ height: calc( 4 * 18px + 10px ); max-height: initial; } |
Jun 26, 2021 6:11 PM
#314
Valerio_Lyndon said: I posted a revised version of that code in response to the other user: https://myanimelist.net/forum/?topicid=1772180&show=300#msg63467614 I missed that part I'll add it. Valerio_Lyndon said: Unfortunately, there's no way to animate line-clamp from what I can see. I also don't believe there is a way to animate max-heigth or any "auto" value either, so I think it's something to do with values that get automatically generated by the browser and may be different depending on the length of text. The point is, the only way to animate the height would be to set a fixed default and fixed expansion value, for instance 2 lines expanding into 4 lines worth of height. Then, you could add that to the transition property separately from the color property. Here's an example of that, replacing your current "fixed height titles" section: I understand. Thanks. |
Jul 3, 2021 5:42 PM
#315
I'm having trouble finding the URL to change the banner, heck it's not even showing up any idea on how to fix this thanks |
Jul 3, 2021 5:51 PM
#316
mugen2k20 said: I'm having trouble finding the URL to change the banner, heck it's not even showing up any idea on how to fix this thanks The banner can be changed by using the default MAL cover image uploader, found on the same style editing page as where you input the CSS. I may change this in a later version though. |
Jul 3, 2021 8:10 PM
#317
Every time I put my render in the URL, it never shows up |
Jul 3, 2021 9:31 PM
#318
mugen2k20 said: Every time I put my render in the URL, it never shows up You shouldn't have or need a URL. Download the image to your PC, and when on the MyAnimeList theme customization page select it by using the "Browse" button and uploading it from your PC. If it's still not working, then I need more detail than what you're providing. For instance, what image are you trying to use? What exactly are you doing that isn't working? Are you uploading the image or trying to input the URL into the Browse popup UI? |
Valerio_LyndonJul 3, 2021 9:50 PM
Jul 4, 2021 8:07 PM
#319
I'm just experiment re-modified my list and go to forum to get some ideas and i saw this; Valerio_Lyndon said: Leospars said: Leospars said: /*------------------------------*\ |* Fixed Height Titles *| \* - - - - - - - - - - - - - - -*/ .data.title .link{ /* change the number after the -webkit-line-clamp: _ to adjust the amount of lines*/ display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: height 0.7s ease-in, color var(--bezierFast) linear; } .data.title:hover .link{ -webkit-line-clamp: 4; max-height: 100%; } Is it possible to get the color of the link and height on hover to transition/change at different speeds. Yeah that's it. I want the height to move slower and the text color to stay as the original which was fast, var(--Beizerfast) I think. Unfortunately, there's no way to animate line-clamp from what I can see. I also don't believe there is a way to animate max-heigth or any "auto" value either, so I think it's something to do with values that get automatically generated by the browser and may be different depending on the length of text. The point is, the only way to animate the height would be to set a fixed default and fixed expansion value, for instance 2 lines expanding into 4 lines worth of height. Then, you could add that to the transition property separately from the color property. Here's an example of that, replacing your current "fixed height titles" section: /*------------------------------*\ |* Fixed Height Titles *| \* - - - - - - - - - - - - - - -*/ .data.title .link{ /* change the number after the calc( _ to adjust the amount of lines*/ height: calc( 2 * 18px + 10px ); overflow: hidden; transition: color var(--timeText) var(--bezierFast), height 0.3s ease-in-out !important; } .data.title:hover .link { /* change the number after the calc( _ to adjust the amount of lines*/ height: calc( 4 * 18px + 10px ); max-height: initial; } Then I thought we had pretty much the same problem and I wasn't satisfied with it yet so I thought I’d replace it and here’s what I do /*------------------------------*\ |* Fixed Height Titles *| \* - - - - - - - - - - - - - - -*/ .data.title .link{ /* change the number after the calc( _ to adjust the amount of lines*/ height: calc( 26px ); overflow: hidden; transition: color var(--timeText) var(--bezierFast), height 0.3s ease-in-out !important; } .data.title:hover .link { /* change the number after the calc( _ to adjust the amount of lines*/ height: fit-content ; max-height: initial; } |
Jul 5, 2021 12:51 PM
#320
Thanks for this great layout. Simple yet so neat and very informative. I'm trying the mods right now(adding synopsis mod currently) Valerio_Lyndon said: To add it, you would have to add this to the bottom of your CSS: /* Synopsis Code */ .list-unit .list-status-title, .list-table > tbody:first-of-type { z-index: 0; } .list-table > tbody:first-of-type:hover { z-index: 5; } .progress div::after { position: absolute; right: -12px; bottom: 288px; z-index: 50; width: 210px; max-height: 300px; padding: 8px 12px; background: hsl(var(--bg)); border-radius: 6px; box-shadow: -1.2px 1.68px 3.36px hsla(0,0%,0%,35%); overflow-x: hidden; overflow-y: auto; font-size: .8rem; text-align: left; white-space: normal; opacity: 0; scrollbar-width: thin; transition: opacity var(--timeItem) var(--bezierFast); pointer-events: none; } .list-item:hover .progress div::after { opacity: 1; pointer-events: auto; } And use this preset while generating your code using the tool: /* [TITLE] *[DEL]/ .progress-[ID]:after{content:"[DESC]"} - Where should I put these codes exactly?(especially the last one) - Can I use my generated synopsis from my previous layout? or Generate a new one? |
Jul 6, 2021 6:39 PM
#321
How can i change the banner picture's area size? Sorry my english is bad. I hope you can understand me. |
Jul 6, 2021 8:00 PM
#322
Tunahan_ said: How can i change the banner picture's area size? Sorry my english is bad. I hope you can understand me. Add this to the bottom of your CSS. You can then change the number to the right of the "--banner-height" text to increase or decrease the height of the banner. /*------------------------------*\ |* Change Banner Height *| \* - - - - - - - - - - - - - - -*/ :root { /* Height is based on the screen's width. * This maintains a set width:height ratio across screen sizes. * Set --banner-height as a multiplier of screen width. * Default is 0.3, AKA 30% of the page width. */ --banner-height: 0.3; } .list-block { min-height: calc(100vh - (184px + (100vw * var(--banner-height)))); } #cover-image { height: calc(100vw * var(--banner-height)); min-height: calc(700px * var(--banner-height)); max-height: calc(1920px * var(--banner-height)); } @media (max-width: 700px) { .list-block { min-height: calc(100vh - (184px + (700px * var(--banner-height)))); } } @media (min-width: 1920px) { .list-block { min-height: calc(100vh - (184px + (1920px * var(--banner-height)))); } } |
Jul 6, 2021 8:21 PM
#323
ReinTod said: Thanks for this great layout. Simple yet so neat and very informative. I'm trying the mods right now(adding synopsis mod currently) Valerio_Lyndon said: To add it, you would have to add this to the bottom of your CSS: /* Synopsis Code */ .list-unit .list-status-title, .list-table > tbody:first-of-type { z-index: 0; } .list-table > tbody:first-of-type:hover { z-index: 5; } .progress div::after { position: absolute; right: -12px; bottom: 288px; z-index: 50; width: 210px; max-height: 300px; padding: 8px 12px; background: hsl(var(--bg)); border-radius: 6px; box-shadow: -1.2px 1.68px 3.36px hsla(0,0%,0%,35%); overflow-x: hidden; overflow-y: auto; font-size: .8rem; text-align: left; white-space: normal; opacity: 0; scrollbar-width: thin; transition: opacity var(--timeItem) var(--bezierFast); pointer-events: none; } .list-item:hover .progress div::after { opacity: 1; pointer-events: auto; } And use this preset while generating your code using the tool: /* [TITLE] *[DEL]/ .progress-[ID]:after{content:"[DESC]"} - Where should I put these codes exactly?(especially the last one) - Can I use my generated synopsis from my previous layout? or Generate a new one? The first and largest code goes at the bottom of your MAL Custom CSS. The preset/template is used to generate the CSS while using the linked tool. You can find an updated version of the tool here: https://myanimelist.net/forum/?topicid=1905478 If the synopses are generated with the same tool, you could re-use them by replacing all the relevant parts of code to match the new template. This isn't too hard if you have/get a tool to replace all instances of some text and know what code to overwrite, but generating new synopses shouldn't take too long either (and will make sure they're up-to-date). |
Valerio_LyndonJul 6, 2021 10:31 PM
Jul 8, 2021 4:55 PM
#324
Valerio_Lyndon said: Tunahan_ said: How can i change the banner picture's area size? Sorry my english is bad. I hope you can understand me. Add this to the bottom of your CSS. You can then change the number to the right of the "--banner-height" text to increase or decrease the height of the banner. /*------------------------------*\ |* Change Banner Height *| \* - - - - - - - - - - - - - - -*/ :root { /* Height is based on the screen's width. * This maintains a set width:height ratio across screen sizes. * Set --banner-height as a multiplier of screen width. * Default is 0.3, AKA 30% of the page width. */ --banner-height: 0.3; } .list-block { min-height: calc(100vh - (184px + (100vw * var(--banner-height)))); } #cover-image { height: calc(100vw * var(--banner-height)); min-height: calc(700px * var(--banner-height)); max-height: calc(1920px * var(--banner-height)); } @media (max-width: 700px) { .list-block { min-height: calc(100vh - (184px + (700px * var(--banner-height)))); } } @media (min-width: 1920px) { .list-block { min-height: calc(100vh - (184px + (1920px * var(--banner-height)))); } } Thank you so much! Great theme i liked it |
Jul 16, 2021 4:08 PM
#325
Hello, I used the hentai censor which is working properly, but I would like for the image behind to be blurred a little more and for it to be dimmer. How do I do that? |
Jul 17, 2021 8:29 PM
#326
Reffman said: Hello, I used the hentai censor which is working properly, but I would like for the image behind to be blurred a little more and for it to be dimmer. How do I do that? Within the modification code, find the ".data.tags a[href$="tag=Hentai"]" section. Within that section, you can change the "backdrop-filter: blur(4px);" code to a different number. Here's an image of me doing this: https://i.imgur.com/FJ077kd.gif |
Jul 17, 2021 8:52 PM
#327
Valerio_Lyndon said: Reffman said: Hello, I used the hentai censor which is working properly, but I would like for the image behind to be blurred a little more and for it to be dimmer. How do I do that? Within the modification code, find the ".data.tags a[href$="tag=Hentai"]" section. Within that section, you can change the "backdrop-filter: blur(4px);" code to a different number. Here's an image of me doing this: https://i.imgur.com/FJ077kd.gif Thanks, it worked! Is there any way to keep it blurred after hovering over it? |
ReffmanJul 17, 2021 8:58 PM
Jul 17, 2021 9:37 PM
#328
Reffman said: Valerio_Lyndon said: Reffman said: Hello, I used the hentai censor which is working properly, but I would like for the image behind to be blurred a little more and for it to be dimmer. How do I do that? Within the modification code, find the ".data.tags a[href$="tag=Hentai"]" section. Within that section, you can change the "backdrop-filter: blur(4px);" code to a different number. Here's an image of me doing this: https://i.imgur.com/FJ077kd.gif Thanks, it worked! Is there any way to keep it blurred after hovering over it? That's a bit more complicated. You could give this ago, replacing the entire modification with this new version. I haven't extensively tested this so you'll have to let me know if it's buggy. /*------------------------------*\ |* Hide Hentai Covers Custom *| \* - - - - - - - - - - - - - - -*/ .data.tags { overflow: initial; opacity: 1; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a, .list-item:focus-within .data.tags a { opacity: 1; } .data.tags a[href$="tag=Hentai"] { position: absolute; z-index: 5; top: -51px; right: -12px; width: 210px; height: 300px; padding: 120px 0 0 0; background: hsla(0, 0%, 0%, 50%); border-radius: 6px; color: hsl(var(--textProminent)) !important; font: 22px/24px var(--font) !important; text-align: center; text-transform: uppercase; opacity: 1; backdrop-filter: blur(16px); transition-property: opacity, color, text-shadow; transition-timing-function: var(--bezierFast); transition-duration: calc(var(--timeItem) * 1.5); pointer-events: none; } .list-item:hover .data.tags a[href$="tag=Hentai"], .list-item:focus-within .data.tags a[href$="tag=Hentai"] { color: transparent !important; text-shadow: none; } @supports not (backdrop-filter: blur(4px)) { .data.tags a[href$="tag=Hentai"] { background: hsla(0, 0%, 0%, 80%); } } .data.tags a[href$="tag=Hentai"]::before { content: "EXPLICIT CONTENT"; display: block; height: 57px; padding: 3px 0 30px; background: hsla(var(--btn), var(--infoBGOpacity)); box-shadow: -1.2px 1.68px 3.36px hsla(0,0%,0%,35%); margin-bottom: -30px; font-size: 15px; transition: inherit; } .list-item:hover .data.tags a[href$="tag=Hentai"]::before { opacity: 0; } .data.tags a[href$="tag=Hentai"]::after { content: none; } .data.tags a { position: relative; z-index: 6; } .data.number { position: relative; z-index: 6; } |
Jul 17, 2021 9:58 PM
#329
Valerio_Lyndon said: Reffman said: Valerio_Lyndon said: Reffman said: Hello, I used the hentai censor which is working properly, but I would like for the image behind to be blurred a little more and for it to be dimmer. How do I do that? Within the modification code, find the ".data.tags a[href$="tag=Hentai"]" section. Within that section, you can change the "backdrop-filter: blur(4px);" code to a different number. Here's an image of me doing this: https://i.imgur.com/FJ077kd.gif Thanks, it worked! Is there any way to keep it blurred after hovering over it? That's a bit more complicated. You could give this ago, replacing the entire modification with this new version. I haven't extensively tested this so you'll have to let me know if it's buggy. /*------------------------------*\ |* Hide Hentai Covers Custom *| \* - - - - - - - - - - - - - - -*/ .data.tags { overflow: initial; opacity: 1; } .data.tags span { min-height: initial; margin-bottom: 0; } .data.tags a { min-height: 15px; margin-bottom: 4px; opacity: 0; transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast); } .list-item:hover .data.tags a, .list-item:focus-within .data.tags a { opacity: 1; } .data.tags a[href$="tag=Hentai"] { position: absolute; z-index: 5; top: -51px; right: -12px; width: 210px; height: 300px; padding: 120px 0 0 0; background: hsla(0, 0%, 0%, 50%); border-radius: 6px; color: hsl(var(--textProminent)) !important; font: 22px/24px var(--font) !important; text-align: center; text-transform: uppercase; opacity: 1; backdrop-filter: blur(16px); transition-property: opacity, color, text-shadow; transition-timing-function: var(--bezierFast); transition-duration: calc(var(--timeItem) * 1.5); pointer-events: none; } .list-item:hover .data.tags a[href$="tag=Hentai"], .list-item:focus-within .data.tags a[href$="tag=Hentai"] { color: transparent !important; text-shadow: none; } @supports not (backdrop-filter: blur(4px)) { .data.tags a[href$="tag=Hentai"] { background: hsla(0, 0%, 0%, 80%); } } .data.tags a[href$="tag=Hentai"]::before { content: "EXPLICIT CONTENT"; display: block; height: 57px; padding: 3px 0 30px; background: hsla(var(--btn), var(--infoBGOpacity)); box-shadow: -1.2px 1.68px 3.36px hsla(0,0%,0%,35%); margin-bottom: -30px; font-size: 15px; transition: inherit; } .list-item:hover .data.tags a[href$="tag=Hentai"]::before { opacity: 0; } .data.tags a[href$="tag=Hentai"]::after { content: none; } .data.tags a { position: relative; z-index: 6; } .data.number { position: relative; z-index: 6; } This works perfectly so far! I will let you know if I do see anything buggy going on ;) |
Sep 15, 2021 8:31 AM
#330
Sep 16, 2021 8:29 AM
#331
I made my own patch and wanted to share if anyone's interested..data.genre, .data.demographic { position: relative; max-width: 100%; min-height: 15px; padding-left: 15px !important; margin-bottom: 4px; text-align: left !important; overflow-wrap: break-word; cursor: default; } .data.genre::after, .data.demographic::after { position: absolute; top: 0; left: -3px; width: 16px; height: 15px; color: hsla(var(--text), 83%); text-align: center; } .data.genre::after { content: "\f02c"; } .data.genre { order: 51; } .data.genre:empty::before { content: "Unknown" color: hsla(var(--text), 80%); } .data.demographic::after { content: "\f0c0"; } .data.demographic { order: 53; } .data.demographic:empty::before { content: "None"; color: hsla(var(--text), 80%); } |
Oct 5, 2021 6:55 PM
#332
@Lawliet529 I was away for a time, but I've applied a similar patch to the main theme now. Thank you for sharing your code in the meantime, it's much appreciated. |
Oct 6, 2021 12:13 AM
#333
Valerio_Lyndon said: @Lawliet529 I was away for a time, but I've applied a similar patch to the main theme now. Thank you for sharing your code in the meantime, it's much appreciated. Glad you're finally here. :D |
Oct 15, 2021 11:59 AM
#334
Sorry for spamming, how do I change "Airing" to for example, a red colour? Thanks in advance. |
Oct 15, 2021 4:37 PM
#335
Reg4shi said: Sorry for spamming, how do I change "Airing" to for example, a red colour? Thanks in advance. You should watch Shishio-kun's Inspect Element tutorial https://www.youtube.com/watch?v=cTGbVutdqfc and the code you want is .content-status { color: #FF0000 !important; } https://html-color.codes/red |
ShaggyZEOct 15, 2021 5:00 PM
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Oct 16, 2021 12:05 AM
#336
ShaggyZE said: Reg4shi said: Sorry for spamming, how do I change "Airing" to for example, a red colour? Thanks in advance. You should watch Shishio-kun's Inspect Element tutorial https://www.youtube.com/watch?v=cTGbVutdqfc and the code you want is .content-status { color: #FF0000 !important; } https://html-color.codes/red I'll try that out later, thank you for letting me know, I'll update you if it worked for me or not. |
Oct 16, 2021 1:38 AM
#337
ShaggyZE said: I've tried it and it works, I've got some more questions so I'll put them all right here. It's fine if you can't be bothered to answer them.Reg4shi said: Sorry for spamming, how do I change "Airing" to for example, a red colour? Thanks in advance. You should watch Shishio-kun's Inspect Element tutorial https://www.youtube.com/watch?v=cTGbVutdqfc and the code you want is .content-status { color: #FF0000 !important; } https://html-color.codes/red 1. How do I remove the colours of the status below MAL icon? 2. How do I change the "TOP RATED" to for example "MASTERPIECE"? I've tried the codes that were given by the creator but that didn't work. 3. Is it possible to make the cover images of the animes higher quality? My browser works fine everything works fine for now but I'm wondering if it's possible to do that. 4. How do I make the #number on the anime cover only visible when mouse dragged over it? Basically it only shows the cover unless it's dragged on. Thanks in advance. |
Reg4shiOct 16, 2021 3:02 AM
Oct 16, 2021 8:12 AM
#338
Reg4shi said: ShaggyZE said: I've tried it and it works, I've got some more questions so I'll put them all right here. It's fine if you can't be bothered to answer them.Reg4shi said: Sorry for spamming, how do I change "Airing" to for example, a red colour? Thanks in advance. You should watch Shishio-kun's Inspect Element tutorial https://www.youtube.com/watch?v=cTGbVutdqfc and the code you want is .content-status { color: #FF0000 !important; } https://html-color.codes/red 1. How do I remove the colours of the status below MAL icon? 2. How do I change the "TOP RATED" to for example "MASTERPIECE"? I've tried the codes that were given by the creator but that didn't work. 3. Is it possible to make the cover images of the animes higher quality? My browser works fine everything works fine for now but I'm wondering if it's possible to do that. 4. How do I make the #number on the anime cover only visible when mouse dragged over it? Basically it only shows the cover unless it's dragged on. Thanks in advance. 1.This will remove the slim bar under MAL icon. Is that what you want? .list-block::before, #status-menu::before { background: initial; } 2. You can change "MASTERPIECE" to whatever you want (e.g. "AMAZING"). .data .score-9::after { content: "AMAZING"; } .data .score-10::after { content: "MASTERPIECE"; } 3. Yes, it's possible. But malscraper already generated covers with quality slightly higher than needed, so using even higher quality simply won't change anything but make loading time longer. 4. .data.number { opacity: 0; } Tell me if they work. |
wildcard7638Oct 16, 2021 8:16 AM
Oct 16, 2021 8:38 AM
#339
Lawliet529 said: Holyyyy!!! This is exactly what I wanted, they're working perfectly, again thank you. I know I said those were all of my questions but I've asked the creator of the layout himself and if he doesn't get back to me, would you willing to help me as you did twice already? :) Have a nice day. Reg4shi said: ShaggyZE said: Reg4shi said: Sorry for spamming, how do I change "Airing" to for example, a red colour? Thanks in advance. You should watch Shishio-kun's Inspect Element tutorial https://www.youtube.com/watch?v=cTGbVutdqfc and the code you want is .content-status { color: #FF0000 !important; } https://html-color.codes/red 1. How do I remove the colours of the status below MAL icon? 2. How do I change the "TOP RATED" to for example "MASTERPIECE"? I've tried the codes that were given by the creator but that didn't work. 3. Is it possible to make the cover images of the animes higher quality? My browser works fine everything works fine for now but I'm wondering if it's possible to do that. 4. How do I make the #number on the anime cover only visible when mouse dragged over it? Basically it only shows the cover unless it's dragged on. Thanks in advance. 1.This will remove the slim bar under MAL icon. Is that what you want? .list-block::before, #status-menu::before { background: initial; } 2. You can change "MASTERPIECE" to whatever you want (e.g. "AMAZING"). .data .score-9::after { content: "AMAZING"; } .data .score-10::after { content: "MASTERPIECE"; } 3. Yes, it's possible. But malscraper already generated covers with quality slightly higher than needed, so using even higher quality simply won't change anything but make loading time longer. 4. .data.number { opacity: 0; } Tell me if they work. |
Oct 16, 2021 3:46 PM
#340
@Lawliet529 Thanks for helping them, good job! :D |
Nov 14, 2021 1:59 AM
#341
I love this, it looks so nice and clean, thank you so much! Such a huge upgrade from my previous layout, I'm almost embarrassed that I had been using such an old one for so many years :p Just a quick question though.. Usually all the titles are in Japanese as per their listing in the database, but when I'm viewing my list while logged out they all turn into their English counterparts (eg Shingeki no Kyojin --> Attack on Titan). Is that normal? Anything I can do to make it consistent? If there's nothing that can be done about it then it's quite alright. :) Edit- Oh, one more thing, is it normal for this layout (or modern layouts in general) to load much more slowly compared to a classic layout? I'm completely new to modern layouts so forgive me for my ignorance. My old layout (which was classic but also showed the same number of pictures for all the titles) would load almost immediately, whereas this one takes maybe 30 seconds to fully load). Just a nitpick so if this is typical then no worries |
EncastaNov 14, 2021 2:20 AM
柵の向こうには 本当に狼などおらぬのか |
Nov 14, 2021 2:24 AM
#342
iiKrina said: Just a quick question though.. Usually all the titles are in Japanese as per their listing in the database, but when I'm viewing my list while logged out they all turn into their English counterparts (eg Shingeki no Kyojin --> Attack on Titan). Is that normal? Anything I can do to make it consistent? If there's nothing that can be done about it then it's quite alright. :) This might be related to this new update MAL just rolled out. https://myanimelist.net/forum/?topicid=1971418 Your list looks fine to me though. |
Nov 14, 2021 3:33 AM
#343
Lawliet529 said: iiKrina said: Just a quick question though.. Usually all the titles are in Japanese as per their listing in the database, but when I'm viewing my list while logged out they all turn into their English counterparts (eg Shingeki no Kyojin --> Attack on Titan). Is that normal? Anything I can do to make it consistent? If there's nothing that can be done about it then it's quite alright. :) This might be related to this new update MAL just rolled out. https://myanimelist.net/forum/?topicid=1971418 Your list looks fine to me though. Ahh I see. Thanks for checking for me (: Any reason why it takes so long to load? Just checked yours out and even though we have the same list style and the same amount of entries, yours loaded more than twice as fast as mine |
柵の向こうには 本当に狼などおらぬのか |
Nov 14, 2021 6:03 AM
#344
iiKrina said: Lawliet529 said: iiKrina said: Just a quick question though.. Usually all the titles are in Japanese as per their listing in the database, but when I'm viewing my list while logged out they all turn into their English counterparts (eg Shingeki no Kyojin --> Attack on Titan). Is that normal? Anything I can do to make it consistent? If there's nothing that can be done about it then it's quite alright. :) This might be related to this new update MAL just rolled out. https://myanimelist.net/forum/?topicid=1971418 Your list looks fine to me though. Ahh I see. Thanks for checking for me (: Any reason why it takes so long to load? Just checked yours out and even though we have the same list style and the same amount of entries, yours loaded more than twice as fast as mine Not 100% sure but I think I know what the problem is. Try replacing this line near the top of your css: @\import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelink"; with this: @\import "https://malscraper.azurewebsites.net/covers/anime/iiKrina/presets/dataimagelink"; @\import "https://malscraper.azurewebsites.net/covers/manga/iiKrina/presets/dataimagelink"; |
wildcard7638Nov 14, 2021 10:45 AM
Nov 14, 2021 2:22 PM
#345
Lawliet529 said: iiKrina said: Lawliet529 said: iiKrina said: Just a quick question though.. Usually all the titles are in Japanese as per their listing in the database, but when I'm viewing my list while logged out they all turn into their English counterparts (eg Shingeki no Kyojin --> Attack on Titan). Is that normal? Anything I can do to make it consistent? If there's nothing that can be done about it then it's quite alright. :) This might be related to this new update MAL just rolled out. https://myanimelist.net/forum/?topicid=1971418 Your list looks fine to me though. Ahh I see. Thanks for checking for me (: Any reason why it takes so long to load? Just checked yours out and even though we have the same list style and the same amount of entries, yours loaded more than twice as fast as mine Not 100% sure but I think I know what the problem is. Try replacing this line near the top of your css: @\import "https://malscraper.azurewebsites.net/covers/auto/presets/dataimagelink"; with this: @\import "https://malscraper.azurewebsites.net/covers/anime/iiKrina/presets/dataimagelink"; @\import "https://malscraper.azurewebsites.net/covers/manga/iiKrina/presets/dataimagelink"; Yep that fixed it! Thank you so much <3 |
柵の向こうには 本当に狼などおらぬのか |
Nov 14, 2021 9:10 PM
#346
Hey VAL, I just updated my Brink Layout to the most recent one --- v1.7.0 (5th of Oct, 2021) • Added support for new genre/demographic columns. and I noticed I had a problem with my stats, the stats is showing without me pressing the stats button and its was out of place (before changing width to 100% it seems and, as if the padding isn't working). The compression is pretty large so had some struggle finding the parts that changed for stats. before: after: :root{--listW:100vw;--font:"Sarabun","Segoe UI","Arial","FontAwesome",sans-serif;--timeText:60ms;--timeButton:160ms;--timeButtonLarge:260ms;--timeItem:120ms;--timeMenu:350ms;--bezierFast:cubic-bezier(.38,.32,.25,1);--bezierSmooth:cubic-bezier(.45,.32,.25,1);--bezierItemBounce:cubic-bezier(.6,.48,.7,1.45);--delayMenu:333.4ms;--arrowUp:url(https://files.catbox.moe/uure2q.svg);--arrowRt:url(https://files.catbox.moe/lqi5fy.svg);--arrowDn:url(https://files.catbox.moe/m9ot24.svg);--arrowLt:url(https://files.catbox.moe/68o5bn.svg)}*{scrollbar-color:hsl(var(--accent)) hsl(var(--bgAlt))}.list-item *{scrollbar-color:hsl(var(--accent)) hsl(var(--bg))}.data.tags,textarea{scrollbar-width:thin}::-webkit-scrollbar{background:hsl(var(--bgAlt))}::-webkit-scrollbar-button:vertical{background:center/10px auto no-repeat transparent}::-webkit-scrollbar-button:vertical:start{background-image:var(--arrowUp)}::-webkit-scrollbar-button:vertical:end{background-image:var(--arrowDn)}::-webkit-scrollbar-button:horizontal{background:center/auto 10px no-repeat transparent}::-webkit-scrollbar-button:horizontal:start{background-image:var(--arrowLt)}::-webkit-scrollbar-button:horizontal:end{background-image:var(--arrowRt)}::-webkit-scrollbar-corner{background:hsl(var(--bgAlt))}::-webkit-scrollbar-thumb{background:hsl(var(--accent)) content-box;border:0 solid transparent}::-webkit-scrollbar-thumb:vertical{border-width:0 2px}::-webkit-scrollbar-thumb:horizontal{border-width:2px 0}::-webkit-scrollbar-thumb:hover{background-color:hsla(var(--accent),70%)}::-webkit-scrollbar-track{width:5px}.list-item ::-webkit-scrollbar{background:hsl(var(--bg))}.data.tags::-webkit-scrollbar,textarea::-webkit-scrollbar{width:8px}.data.tags::-webkit-scrollbar-button,textarea::-webkit-scrollbar-button{display:none}.data.tags::-webkit-scrollbar-thumb:vertical,textarea::-webkit-scrollbar-thumb:vertical{border-width:0 1px}.data.tags::-webkit-scrollbar-thumb:horizontal,textarea::-webkit-scrollbar-thumb:horizontal{border-width:1px 0}html{box-sizing:border-box}*,::after,::before{box-sizing:inherit}a{text-decoration:none!important;transition:color var(--timeText) var(--bezierFast)}#advanced-options .advanced-options-button a,#header-menu-dropdown .icon-menu,#status-menu .search-container #search-box,.list-table>tbody:first-of-type::after,.list-unit .list-status-title .stats a,body #fancybox-close,div[style^="width: 300px;"] input{width:96px;height:32px;padding:0;background:linear-gradient(225deg,hsla(var(--btnLight)) 20px,hsl(var(--btn)) 20px) hsl(var(--btn))!important;border:2px solid hsl(var(--btn));border-radius:3px;box-shadow:-.5px .7px 2.1px hsla(0,0%,0%,35%);margin:0;color:hsl(var(--text));font:normal 14px/26px var(--font);text-align:center;white-space:nowrap;transition:all var(--timeButton) var(--bezierFast)}#advanced-options .advanced-options-button a:focus,#advanced-options .advanced-options-button a:hover,#header-menu-dropdown .icon-menu:focus,#header-menu-dropdown .icon-menu:hover,#status-menu .search-container #search-box:focus-within,.list-table>tbody:first-of-type:focus::after,.list-table>tbody:first-of-type:hover::after,.list-unit .list-status-title .stats a:focus,.list-unit .list-status-title .stats a:hover,body #fancybox-close:focus,body #fancybox-close:hover,div[style^="width: 300px;"] input:focus,div[style^="width: 300px;"] input:hover{border-color:hsl(var(--btnAccent));color:hsl(var(--accent));outline:0}@keyframes fade-in{from{opacity:0}to{opacity:1}}html{height:100%}body{background-position:center;background-image:none}body.ownlist{position:relative;min-width:700px;min-height:100%;padding:42px 0 60px;background-color:hsl(var(--bg))!important;background-size:cover;background-attachment:fixed;background-repeat:no-repeat;color:hsla(var(--text),88%)!important;font:12px var(--font)}body::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:hsla(var(--bg),var(--bgDimness))}#list-container{width:100%;background:0 0!important;border:none}.list-block{position:relative;width:100%;min-height:calc(100vh - (164px + 30vw));padding-top:0;margin:0 auto}@media (min-width:1920px){.list-block{min-height:calc(100vh - (164px + (1920px * .3)))}}.list-unit{width:100%}.list-table{display:flex;width:calc(var(--listW) - 16px);border:none;flex-flow:row wrap;justify-content:center}.initialize-tutorial,#recaptcha-terms{display:none!important}.header{position:fixed;top:0;left:0;z-index:100;width:100%;height:42px;background:hsl(var(--bgAlt));box-shadow:0 1.68px 3.36px hsla(0,0%,0%,50%)}.header a{color:hsl(var(--text))}.header a:focus,.header a:hover{color:hsl(var(--textLinkHov))}.header .header-title{top:9px;left:42px;width:44px;height:24px;background:url(https://files.catbox.moe/8q5kjg.svg) left 4px/auto 20px no-repeat;color:hsl(var(--text));opacity:.94;transition:all var(--timeButton) var(--bezierFast)}.header .header-title:focus,.header .header-title:hover{opacity:.6}.header .header-menu{position:static;display:flex;height:32px;margin:5px 12px 0 0;flex-flow:column nowrap;justify-content:center;float:right;line-height:13px}[data-owner=""] .header .header-menu{padding-right:139px}.header .header-menu .btn-menu{height:15px;align-self:flex-end;color:hsl(var(--text));font-size:12px;cursor:text}[data-owner="1"] .header .header-menu .btn-menu{font-size:14px}.header .btn-menu #header-menu-button{font-weight:400;pointer-events:none}#header-menu-button i{display:none}.header .header-menu .header-info{height:15px;margin:0;color:hsla(var(--text),75%)}.header .header-menu .header-info,.header .header-menu .header-info a{color:hsla(var(--text),75%);font-weight:400}.header .header-menu .header-info a:focus,.header .header-menu .header-info a:hover{color:hsl(var(--textLinkHov))}.header-info a[href="/login.php"],.header-info a[href="/register.php"]{font-size:0}.header-info a[href="/login.php"]::before{content:"Login";font-size:12px}.header-info a[href="/register.php"]::before{content:"Register";font-size:12px}#header-menu-dropdown{top:5px;right:12px;display:block!important;background:0 0;border:none;box-shadow:none}#header-menu-dropdown .icon-menu{--btn:var(--btnAlt);width:130px;font-size:0;box-shadow:none}#header-menu-dropdown .icon-menu::before{content:"\f021";font-size:14px;vertical-align:top;transition:inherit}#header-menu-dropdown .icon-menu::after{display:inline-block;font-size:14px;text-indent:5px;transition:inherit}#header-menu-dropdown .icon-menu.manga-list::after{content:"Swap to Manga"}#header-menu-dropdown .icon-menu.anime-list::after{content:"Swap to Anime"}#header-menu-dropdown .icon-menu svg,.header .header-menu .list-menu .icon-menu .text{display:none}.list-menu-float{position:fixed;left:-228px;top:42px;z-index:200;display:flex;width:228px;height:calc(100% - 42px);background:hsl(var(--bg));border:none;box-shadow:-1.2px 1.68px 3.36px hsla(0,0%,0%,50%);border-right:1px solid hsl(var(--bgAlt));margin:0!important;flex-flow:column nowrap;font-size:0!important;line-height:0;transition:all var(--timeMenu) var(--bezierSmooth) var(--delayMenu)}.list-menu-float:focus-within,.list-menu-float:hover{left:0;transition-delay:0s}.list-container::before,.list-menu-float::after{content:"";position:fixed;left:0;top:0;width:42px;height:42px;box-sizing:initial;background:url(https://files.catbox.moe/0tnlh6.svg) center/auto no-repeat;color:hsl(var(--text));font:21px/42px FontAwesome;text-align:center;transition:inherit}.list-container::before{z-index:200;filter:opacity(.35)}.list-menu-float+.list-container::before{content:none}.list-menu-float::before{content:"USER MENU";position:absolute;left:0;top:-42px;width:180px;height:42px;padding-left:47px;border-right:1px solid hsl(var(--bgAlt));background:inherit;box-sizing:initial;color:transparent;font:bold 16px/42px var(--font);text-align:left;transition:color calc(var(--timeMenu) * .3) ease-in-out var(--delayMenu);pointer-events:none}.list-menu-float:focus-within::before,.list-menu-float:hover::before{color:hsl(var(--text));transition:color calc(var(--timeMenu) * .7) ease-in-out calc(var(--timeMenu) * .3)}#list-container::after{content:"";position:fixed;top:0;left:0;z-index:190;width:100%;height:100%;background:hsla(0,0%,0%,0%);transition:all var(--timeMenu) var(--bezierSmooth) var(--delayMenu);pointer-events:none}.list-menu-float:focus-within~#list-container::after,.list-menu-float:hover~#list-container::after{background:hsla(0,0%,0%,78%);transition-delay:0s}.ownlist .list-menu-float .icon-menu{width:100%!important;height:auto;background:0 0!important;text-align:left;transition:all var(--timeButton) var(--bezierFast)}.ownlist .list-menu-float .icon-menu svg{display:none}.ownlist .list-menu-float .icon-menu.setting .text .link-list-setting,.ownlist .list-menu-float .icon-menu.setting .text .link-style-setting,.ownlist .list-menu-float .icon-menu::after,.ownlist .list-menu-float .icon-menu:not(.setting) .text{position:static;width:100%;height:40px;padding:10px 20px 10px 16px;background:0 0;border:none;border-left:4px solid transparent;overflow:visible;color:hsl(var(--text));font:15px/20px var(--font);text-align:left;opacity:1;transition:inherit}.ownlist .list-menu-float .icon-menu.setting .text .link-list-setting:focus,.ownlist .list-menu-float .icon-menu.setting .text .link-list-setting:hover,.ownlist .list-menu-float .icon-menu.setting .text .link-style-setting:focus,.ownlist .list-menu-float .icon-menu.setting .text .link-style-setting:hover,.ownlist .list-menu-float .icon-menu:focus::after,.ownlist .list-menu-float .icon-menu:hover::after,.ownlist .list-menu-float .icon-menu:not(.setting):focus .text,.ownlist .list-menu-float .icon-menu:not(.setting):hover .text{background:hsl(var(--bgAlt));border-color:hsl(var(--accent));line-height:16px}.ownlist .list-menu-float .icon-menu.setting .text{position:static;width:100%;height:auto;opacity:1}.list-menu-float>:not(.quick-add){order:5}.list-menu-float form{order:9!important}.ownlist .list-menu-float .icon-menu.profile::after{content:"Profile";display:block}.ownlist .list-menu-float .icon-menu.export,.ownlist .list-menu-float .icon-menu.logout,.ownlist .list-menu-float .icon-menu.quick-add{margin-top:15px}.ownlist .list-menu-float .icon-menu.export::before,.ownlist .list-menu-float .icon-menu.logout::before,.ownlist .list-menu-float .icon-menu.quick-add::before{content:"";position:absolute;top:-8px;left:10px;width:calc(100% - 20px);height:1px;background:hsla(var(--text),12%);pointer-events:none}.cover-block{position:relative;width:100%}#cover-image-container{display:block;width:100%;height:100%;padding:0}#cover-image-container.hide{display:none}#cover-image{width:100%;max-width:initial;height:30vw;min-height:calc(700px * .3);max-height:calc(1920px * .3);object-fit:cover}#cover-image-container::after{content:"";position:absolute;bottom:0;left:0;width:100%;height:100%;background:radial-gradient(ellipse farthest-corner at center top,transparent 66.6667%,hsla(var(--bg),var(--bannerVignetteOpacity)));box-shadow:inset 0 -12px 8px -8px hsla(0,0%,0%,50%)}.cover-block .image-container .btn-list-setting{display:none!important}#status-menu::before,.list-block::before{content:"";position:absolute;top:-62px;left:0;width:100%;height:2px;background:linear-gradient(to right,hsla(var(--accent),1),hsla(var(--accent),.55)) hsl(var(--bg))}#status-menu::before{position:fixed;top:42px;height:0;transition:inherit}#status-menu.fixed::before{height:2px}[data-query*='status":1'] #status-menu::before,[data-query*='status":1'] .list-block::before{--accent:var(--current)}[data-query*='status":2'] #status-menu::before,[data-query*='status":2'] .list-block::before{--accent:var(--completed)}[data-query*='status":3'] #status-menu::before,[data-query*='status":3'] .list-block::before{--accent:var(--paused)}[data-query*='status":4'] #status-menu::before,[data-query*='status":4'] .list-block::before{--accent:var(--dropped)}[data-query*='status":6'] #status-menu::before,[data-query*='status":6'] .list-block::before{--accent:var(--planned)}#status-menu{position:relative;width:100%;height:42px;background:0 0;border:none;margin:17px 0 3px;pointer-events:none}#status-menu.fixed{position:fixed;z-index:150;width:calc(100% - 86px);padding-right:calc(189px + .07 * (var(--listW) - 980px));background:hsl(var(--bgAlt));margin:0 0 0 86px;animation:var(--timeMenu) var(--bezierFast) fade-in;pointer-events:auto}#status-menu .status-menu{position:static;display:flex;width:calc(var(--listW) - (396px + .14 * (var(--listW) - 980px)));max-width:700px;height:42px;margin:0 auto;justify-content:space-around;align-items:center;pointer-events:auto}#status-menu .status-button{display:block;height:32px;padding:0 9px;border-radius:3px;flex:0 1 auto;font:0/30px var(--font);text-shadow:-.6px .84px 1.68px #000;transform:none}#status-menu .status-button::before{display:block;color:hsla(var(--text),48%);font-size:18px;transition:all var(--timeButtonLarge) var(--bezierSmooth);pointer-events:none}#status-menu .status-button.all_anime::before{content:"ALL"}#status-menu .status-button.reading::before,#status-menu .status-button.watching::before{content:"WATCHING"}#status-menu .status-button.completed::before{content:"COMPLETED"}#status-menu .status-button.onhold::before{content:"PAUSED"}#status-menu .status-button.dropped::before{content:"DROPPED"}#status-menu .status-button.plantoread::before,#status-menu .status-button.plantowatch::before{content:"PLANNED"}#status-menu .status-button.on::before{color:hsl(var(--text));font-weight:700}#status-menu .status-button:focus::before,#status-menu .status-button:hover::before{color:hsl(var(--text));transform:translateY(-2px)}#status-menu .status-button::after{content:none}#status-menu .search-container{position:absolute;top:5px;right:calc(20px + (50% - var(--listW) * .5));width:calc(169px + .07 * (var(--listW) - 980px))}#status-menu.fixed .search-container{right:12px;width:calc(177px + .07 * (var(--listW) - 980px))}#status-menu .search-container #search-box{width:100%;transition:box-shadow var(--timeMenu) var(--bezierFast),border-color var(--timeButton) var(--bezierFast)}#status-menu.fixed .search-container #search-box{--btn:var(--btnAlt);box-shadow:none}#status-menu .search-container #search-box input{background:0 0;padding:2px 6px 2px 30px;border:none;color:hsla(var(--text),80%);line-height:28px}#status-menu .search-container #search-box input:focus{color:hsl(var(--text));outline:0}#status-menu .search-container #search-box::after{content:"\f002";position:absolute;top:0;left:4px;width:24px;color:hsla(var(--text),83%);font-size:16px;line-height:30px;text-align:center}#status-menu .search-container #search-button{display:none}.list-unit .list-status-title{position:absolute;top:-40px;left:calc(20px + (50% - var(--listW) * .5));z-index:30;width:80px;height:32px;background:0 0}.list-unit .list-status-title .text{display:none}.list-unit .list-status-title .stats{position:static;font-size:0;white-space:nowrap}.list-unit .list-status-title .stats a{display:inline-block;width:calc(80px + .035 * (var(--listW) - 980px))}.list-table>tbody:first-of-type{position:absolute;top:-40px;left:calc(109px + (.035 * (var(--listW) - 980px)) + (50% - var(--listW) * .5));z-index:35;width:calc(80px + .035 * (var(--listW) - 980px));height:32px;background:0 0!important;pointer-events:none}.list-table>tbody:first-of-type:hover{pointer-events:auto}.list-table>tbody:first-of-type::after{content:"\f0dc Order";position:absolute;top:0;left:0;z-index:-1;display:block;width:100%;pointer-events:auto}.list-table>tbody:first-of-type::before{content:"";display:block;width:calc(100% + 24px);height:44px;border-radius:12px 12px 0 0/100% 100% 0 0;margin:0 0 -3px -12px}.list-table .list-table-header{position:relative;left:50%;display:inline-flex;min-width:calc(100% + 24px);height:auto;background:hsl(var(--btn));border-radius:3px;box-shadow:-1.2px 1.68px 3.36px hsla(0,0%,0%,50%);flex-flow:column nowrap;overflow:hidden;opacity:0;transform:translateX(-50%);transition:all var(--timeButtonLarge) var(--bezierFast)}.list-table tbody:first-of-type:focus-within .list-table-header,.list-table tbody:first-of-type:hover .list-table-header{opacity:1}.list-table .list-table-header .header-title{display:block;width:auto!important;height:auto;padding:0!important;background:0 0;border:none;font-size:0!important;line-height:0;text-align:center!important}.list-table .list-table-header .header-title a{width:100%;height:32px;padding:0 8px;border-left:2px solid hsl(var(--btn));border-right:2px solid transparent;color:hsl(var(--text))!important;font-size:13px!important;line-height:30px;font-weight:400;text-indent:-1px;transition:all var(--timeButton) var(--bezierFast)!important}.list-table .list-table-header .header-title a:focus,.list-table .list-table-header .header-title a:hover{background:hsla(var(--btnLight));border-left-color:hsl(var(--btnAccent));line-height:28px}.list-table .list-table-header .header-title .sort-icon{margin-left:1px;color:hsl(var(--accent));font:10.5px var(--font);vertical-align:baseline}.list-table .list-table-header .header-title .fa-sort-asc::before{content:"ASC"}.list-table .list-table-header .header-title .fa-sort-desc::before{content:"DESC"}.header-title.days,.header-title.image,.header-title.number,.header-title.status,.header-title.tags{display:none!important}.list-table[data-items="[]"]::after,.list-table[data-items="[]"]::before{content:"";display:block;width:calc(224px * 3);max-width:100%;height:309px;background:url(https://i.imgur.com/5G6hsJk.png) hsl(var(--bg));background-blend-mode:screen;background-position-x:center;padding:48px calc((224px * 1.5) - 90px);margin:0 auto}.list-table[data-items="[]"]::after{content:"No entries found.";background:linear-gradient(to right,hsla(var(--bg),100%),hsla(var(--bg),0) 12.5%,hsla(var(--bg),0) 87.5%,hsla(var(--bg),100%));margin-top:-309px;font-size:18px;text-align:center}[data-owner="1"] .list-table[data-items="[]"]::after{content:"No entries found. Why not add some?"}[data-query*='"s":'] .list-table[data-items="[]"]::after{content:"No entries found. Perhaps your search terms are too restrictive?"}@media (min-width:1150.5px){.list-table[data-items="[]"]::after,.list-table[data-items="[]"]::before{width:calc(224px * 5);padding:48px calc((224px * 2.5) - 90px)}.list-table[data-items="[]"]::after{background:linear-gradient(to right,hsla(var(--bg),100%),hsla(var(--bg),0) 20%,hsla(var(--bg),0) 80%,hsla(var(--bg),100%))}}@media (min-width:1597.5px){.list-table[data-items="[]"]::after,.list-table[data-items="[]"]::before{width:calc(224px * 7);padding:48px calc((224px * 3.5) - 90px)}.list-table[data-items="[]"]::after{background:linear-gradient(to right,hsla(var(--bg),100%),hsla(var(--bg),0) 25%,hsla(var(--bg),0) 85%,hsla(var(--bg),100%))}}.list-item{position:relative;z-index:1;display:block;width:210px;height:300px;background:0 0!important;margin:calc((300px * -.025) + 12px) calc((210px * -.025) + 12px);flex:0 0 auto;color:hsl(var(--text));transform:scale(.95);transition:all var(--timeItem) var(--bezierItemBounce)}.list-item:focus-within,.list-item:hover{transform:scale(1)}.list-table-data{display:flex;width:50%;padding:13px 0 0 12px;flex-flow:column nowrap;align-items:flex-start}.list-table .list-table-data .data{padding:0;border-width:0;border-style:solid}.data:not(.image){z-index:5;text-shadow:-.6px .84px 1.68px #000;line-height:15px;opacity:0;transition:all var(--timeButton) var(--bezierFast),opacity calc(var(--timeItem) * 1.5) var(--bezierFast)}.list-item:focus-within .data:not(.image),.list-item:hover .data:not(.image){opacity:1}.list-table .list-table-data .data a{color:hsl(var(--text))!important;transition-property:all}.list-table .list-table-data .data a:not(.edit-disabled):focus,.list-table .list-table-data .data a:not(.edit-disabled):hover{color:hsl(var(--textLinkHov))!important}.list-table .list-table-data a.edit-disabled{pointer-events:none}.data.airing-finished,.data.airing-started,.data.days,.data.finished,.data.licensor,.data.magazine,.data.priority,.data.rated,.data.retail,.data.season,.data.started,.data.storage,.data.studio,.data.type{position:relative;max-width:100%;min-height:15px;padding-left:15px!important;margin-bottom:4px;text-align:left!important;overflow-wrap:break-word;cursor:default}.data.airing-started::after,.data.days::before,.data.licensor::after,.data.magazine::after,.data.priority::after,.data.rated::after,.data.retail::after,.data.season::after,.data.started::after,.data.storage::after,.data.studio::after,.data.type::after{position:absolute;top:0;left:-3px;width:16px;height:15px;color:hsla(var(--text),83%);text-align:center}.data.image,.data.image .image,.data.image .link,.data.image .link::after{position:absolute;left:0;top:0;width:100%!important;height:100%!important;border:none!important;object-fit:cover}.data.image{z-index:-1;background:hsla(var(--bg),70%);border-radius:6px;box-shadow:-1.2px 1.68px 3.36px hsla(0,0%,0%,35%);overflow:hidden;pointer-events:none}.data.image .link{filter:brightness(var(--imageBrightness)) opacity(var(--imageBrightness));transition:filter var(--timeItem) var(--bezierFast)!important}.list-item:focus-within .data.image .link,.list-item:hover .data.image .link{filter:brightness(var(--imageBrightnessHov)) opacity(var(--imageBrightnessHov)) blur(var(--imageBlurHov))}.data.image .link::after{content:"";background:center/cover no-repeat scroll;background-image:inherit}.data.status{position:absolute;left:0;top:0;z-index:15!important;width:100%!important;height:100%;background:0 0!important;border-bottom-width:4px!important;border-radius:6px;pointer-events:none}.data.status.reading,.data.status.watching{border-color:hsl(var(--current))}.data.status.completed{border-color:hsl(var(--completed))}.data.status.onhold{border-color:hsl(var(--paused))}.data.status.dropped{border-color:hsl(var(--dropped))}.data.status.plantoread,.data.status.plantowatch{border-color:hsl(var(--planned))}.data.title{position:absolute;bottom:0;left:0;z-index:9;width:100%;padding:5px 0 27px!important;background:hsla(var(--btn),var(--infoBGOpacity));border-radius:0 0 6px 6px;order:95;opacity:1}.data.title .link{display:inline-block;max-width:100%;max-height:64px;padding:5px 12px;overflow:hidden;font-size:13px!important;line-height:18px}.title [class^=icon-watch]{position:absolute;bottom:12px;right:7.5px;z-index:1;width:auto;height:15px;background:0 0;margin:0;font-size:0;text-indent:0;text-shadow:.84px .6px 1.68px #000;opacity:1!important;transform:rotate(90deg);transform-origin:right bottom;visibility:var(--togglePV)}[class^=icon-watch]::after{content:"\f144 VIDEOS";color:hsla(var(--text),80%);font-size:12px;line-height:1;letter-spacing:1.5px;transition:color var(--timeText) var(--bezierFast)}.title [class^=icon-watch]:focus::after,.title [class^=icon-watch]:hover::after{color:hsl(var(--textLinkHov))}.content-status,.rereading,.rewatching{position:absolute;bottom:270px;left:7.5px;height:15px;color:hsl(var(--textProminent))!important;font-size:12px!important;font-weight:700;line-height:1;letter-spacing:1.5px;text-transform:uppercase;text-shadow:.84px .6px 1.68px #000;transform:rotate(90deg);transform-origin:left top;pointer-events:none}.add-edit-more{position:absolute;bottom:267px;right:6px;width:auto;margin:0!important;font-size:0!important;opacity:0;transition:inherit}.list-item:focus-within .add-edit-more,.list-item:hover .add-edit-more{opacity:1}.add-edit-more span{float:left}.add-edit-more a{display:block;padding:6px;font-size:12px;text-transform:uppercase;letter-spacing:1px}.add-edit-more span:nth-of-type(1) a{padding-right:4.5px}.add-edit-more .more a{padding-left:4.5px;font-size:0}.add-edit-more .more a::before{content:"NOTES";font-size:12px;vertical-align:top}.data.chapter,.data.progress,.data.score,.data.volume{position:absolute;bottom:12px;z-index:10;height:15px;white-space:nowrap;cursor:default}.data.score{left:12px;max-width:calc(66% - 12px);text-align:left!important;opacity:1}.data.score::before{white-space:pre;vertical-align:top}[data-query*='"status":7'] .reading~.data.score::before,[data-query*='"status":7'] .watching~.data.score::before{content:"Current | "}[data-query*='"status":7'] .completed~.data.score::before{content:"Completed | "}[data-query*='"status":7'] .onhold~.data.score::before{content:"Paused | "}[data-query*='"status":7'] .dropped~.data.score::before{content:"Dropped | "}[data-query*='"status":7'] .plantoread~.data.score::before,[data-query*='"status":7'] .plantowatch~.data.score::before{content:"Planned | "}.data.score .link{display:inline-flex;font-size:14px!important;vertical-align:top;text-transform:capitalize}.data.score .link::before{content:"Scored ";font-size:12px;font-weight:400;white-space:pre}[class*=planto]~.data.score .link{display:none}[class*=planto]~.data.score::before{content:"Planned"!important}.data .score-na{font-size:0;order:-1}.data .score-na::before{content:"Not ";font-size:12px;font-weight:400}.data .score-10::before,.data .score-8::before,.data .score-9::before{content:"";position:absolute;left:-12px;bottom:282px;z-index:-1;width:210px;height:6px;border-top:2px solid hsl(var(--text));border-radius:6px 6px 0 0;pointer-events:none}.data .score-10::before{border-color:hsl(var(--goldRating));visibility:var(--toggleTopRatingGold)}.data .score-9::before{border-color:hsl(var(--silverRating));visibility:var(--toggleTopRatingSilver)}.data .score-8::before{border-color:hsl(var(--bronzeRating));visibility:var(--toggleTopRatingBronze)}.data .score-10::after,.data .score-8::after,.data .score-9::after{ content:"TOP RATED";position:absolute;left:93px;bottom:277px;z-index:6;min-width:100px;height:16px;padding:0 10px;border-radius:3px;background:hsl(var(--text));color:hsl(var(--bg));font:bold 13px/13px var(--font);text-align:center;letter-spacing:1px;text-shadow:none;transform:translateX(-50%);pointer-events:none}.data .score-10::after{background:hsl(var(--goldRating));visibility:var(--toggleTopRatingGold)}.data .score-9::after{background:hsl(var(--silverRating));visibility:var(--toggleTopRatingSilver)}.data .score-8::after{background:hsl(var(--bronzeRating));visibility:var(--toggleTopRatingBronze)}.data.score a:not([style="display: none;"])+select{display:none}.data.chapter,.data.progress,.data.volume{right:12px;text-align:right!important;opacity:.64}.chapter div,.progress div,.volume div{font-size:0}.chapter span:first-of-type:not(:only-of-type) a::after,.progress span:first-of-type:not(:only-of-type) a::after,.volume span:first-of-type:not(:only-of-type) a::after{content:" of "}.data.chapter a,.data.progress a,.data.volume a{font-size:12px}.plantoread~.data.chapter span:first-of-type,.plantoread~.data.volume span:first-of-type,.plantowatch~.data.progress span:first-of-type{opacity:0;transition:all var(--timeItem) var(--bezierFast)}.list-item:focus-within .plantoread~.data.chapter span:first-of-type,.list-item:focus-within .plantoread~.data.volume span:first-of-type,.list-item:focus-within .plantowatch~.data.progress span:first-of-type,.list-item:hover .plantoread~.data.chapter span:first-of-type,.list-item:hover .plantoread~.data.volume span:first-of-type,.list-item:hover .plantowatch~.data.progress span:first-of-type{opacity:1}.chapter span:nth-of-type(2),.progress span:nth-of-type(2),.volume span:nth-of-type(2){font-size:12px;vertical-align:top}.chapter span:only-of-type,.progress span:only-of-type,.volume span:only-of-type{font-size:14px}.progress span:last-of-type::after{content:"ep"}.chapter span:last-of-type::after{content:"ch"}.volume span:last-of-type::after{content:"vol"}span:nth-of-type(2)::after{color:hsl(var(--text));text-shadow:inherit;transition:all var(--timeItem) var(--bezierFast)}[data-owner="1"] .list-item:focus-within span:nth-of-type(2)::after,[data-owner="1"] .list-item:hover span:nth-of-type(2)::after{color:transparent;text-shadow:none}.list-table .list-item .data [class^=icon-add-]{position:absolute;top:3px;right:0;display:inline-block;color:hsla(var(--text),0%)!important;font-size:12px!important;text-shadow:none;transition:all var(--timeItem) var(--bezierFast)}.list-table .list-item:focus-within .data [class^=icon-add-],.list-table .list-item:hover .data [class^=icon-add-]{color:hsla(var(--text),83%)!important;text-shadow:inherit}[class^=icon-add-] .fa::before{content:"\f067"}.data.chapter+.data.volume{display:none!important}.chapter a+input,.progress a+input,.volume a+input{display:none}.data.tags{position:absolute;top:51px;right:6px;width:calc(50% - 6px);padding:0 6px 0 0!important;height:148px;overflow-x:hidden;overflow-y:auto}.data.tags a,.data.tags div{position:relative}.data.tags span{display:block;min-height:15px;margin-bottom:4px;font-size:0;line-height:0;text-align:right}.data.tags a{display:inline-block;padding-right:15px !important;font:12px/15px var(--font)!important;vertical-align:top;overflow-wrap:break-word}.list-table .list-table-data .tags .edit{width:auto;float:right;color:hsl(var(--text))!important}.data.tags a::after{position:absolute;top:1px;right:0;display:inline-block;color:hsla(var(--text),83%)}.data.tags span a::after{content:"\f02b"}.data.tags .edit::after{content:"\f040"}.data.tags textarea{position:absolute;top:0;right:6px;display:block;width:calc(100% - 6px)!important;height:99%!important;border-style:solid;border-radius:3px;overflow:auto;word-break:break-all;resize:none}.data.number{height:15px;margin:-1px 0 24px;font-size:14px;font-weight:700;opacity:.53;cursor:default}.data.number::before{content:"#";font-size:12px}.data.type::after{content:"\f069"}.data.type{order:10}.data.rated::after{content:"\f129"}.data.rated{order:20}.data.rated:empty::before{content:"Unrated"}.data.season::after{content:"\f1bb"}.data.season{order:30}.data.season:empty::before{content:"Unknown"}.data.studio::after{content:"\f0b1"}.data.licensor::after{content:"\f19c"}.data.magazine::after{content:"\f02d"}.data.licensor,.data.magazine,.data.studio{order:50}.data.licensor:empty::before,.data.magazine:empty::before,.data.studio:empty::before{content:"Unknown";color:hsla(var(--text),80%)}.data.started::after{content:"\f073"}.data.airing-started::after{content:"\f073"}.data.days::before{content:"\f017"}.data.days,.data[class*=finished],.data[class*=started]{order:70}.data.airing-started,.data.started{margin:0}.data[class*=started]::before{display:block;color:hsla(var(--text),80%);font-size:12px}.anime .data.started::before{content:"Watched"}.manga .data.started::before{content:"Read"}.anime .data.airing-started::before{content:"Aired"}.manga .data.airing-started::before{content:"Published"}.data.airing-finished::before,.data.finished::before{content:"to ";color:hsla(var(--text),80%)}.data.days::after{content:"Days"}.data.priority::after{content:"\f005"}.data.priority{display:block!important;order:90}.status:not([class*=planto])~.data.priority{display:none!important}.data.retail::after,.data.storage::after{content:"\f1c0"}.data.retail,.data.storage{order:95}.more-info{position:absolute;left:0;bottom:0;z-index:25;width:100%;height:100%;border:none!important;border-radius:5px;overflow:hidden;opacity:0;transition:all calc(var(--timeItem) * 1.5) var(--bezierFast);animation:var(--timeItem) var(--bezierFast) backwards fade-in;pointer-events:none}.list-item:focus-within .more-info,.list-item:hover .more-info{opacity:1}.more-info table,.more-info tbody,.more-info td,.more-info tr{display:block}.more-content{width:100%;height:calc(100% - 37px);padding:0!important;background:hsla(var(--bgAlt),.96);border-radius:6px 6px 0 0;box-shadow:0 0 3.36px 1.68px hsla(0,0%,0%,50%);margin-top:37px;overflow-x:hidden;overflow-y:auto;backdrop-filter:blur(var(--imageBlurHov));pointer-events:auto}.more-content table{padding:9px 15px 12px!important}.list-table .more-info .more-content a{color:hsl(var(--text));text-decoration:underline hsla(var(--text),50%)!important}.list-table .more-info .more-content a:focus,.list-table .more-info .more-content a:hover{color:hsl(var(--textLinkHov))}.td1::first-line{font-size:0;line-height:0}.more-info br,.more-info div:first-of-type{display:none}.anime .more-info small~br,.manga .more-info br:nth-of-type(n+9){display:initial}.list-unit .loading-space{height:auto;padding-top:18px;margin:0}.list-unit .loading-space i{width:24px;height:24px;background:url(https://files.catbox.moe/qs9f3v.svg) center/auto no-repeat;margin:0 auto;font-size:0;animation:1.2s cubic-bezier(.35,0,.35,1) 0s infinite both loading}@keyframes loading{from{transform:rotate(45deg)}to{transform:rotate(405deg)}}#fancybox-overlay{background:#000!important;opacity:.78!important}body #fancybox-close{box-shadow:none}#fancybox-close::before{content:"Close"}body #fancybox-wrap{left:calc(50% - (190px + 20vw))!important;width:calc(380px + 40vw)!important;height:auto!important;padding:0}#fancybox-outer .fancy-bg{display:none}body #fancybox-outer{padding:14px 12px 56px;background:hsl(var(--bg));border-radius:8px;box-shadow:-1.6px 2.24px 4.48px hsla(0,0%,0%,70%)}body #fancybox-inner{position:static;width:100%!important;border-radius:4px}body #fancybox-frame{filter:sepia(20%) invert(91.5%)}#fancybox-outer #fancybox-close{top:auto;bottom:12px;right:20px}.ownlist #fancybox-wrap:not([style*="width: 1000px;"]){left:calc(50% - 160px)!important;width:auto!important;height:auto!important}#fancybox-wrap:not([style*="width: 1000px;"]) #fancybox-close{display:none!important}#fancybox-wrap:not([style*="width: 1000px;"]) #fancybox-outer{padding:12px}#fancybox-wrap:not([style*="width: 1000px;"]) #fancybox-inner{width:auto!important;height:auto!important}div[style^="width: 300px;"]{width:100%!important;height:100%!important;font:0/0 var(--font)!important}div[style^="width: 300px;"]::before{content:'Finished rewatching?';color:hsla(var(--text),88%);font-size:14px;line-height:1}div[style^="width: 300px;"] div{display:flex;margin-top:9px!important}div[style^="width: 300px;"] input{width:auto;padding:0 12px;font-family:inherit;cursor:pointer;text-transform:capitalize}div[style^="width: 300px;"] input+input{margin-left:9px}#advanced-options{position:fixed;top:calc(50px + 10vh);--pad:100vw;width:calc(630px + .111 * (var(--pad) - 700px));min-width:630px;max-width:730px;height:auto;padding:0 calc(40px + .05 * (var(--pad) - 700px)) 12px;background:hsl(var(--bg));box-shadow:-1.6px 2.24px 4.48px hsla(0,0%,0%,70%);border:none;color:hsla(var(--text),88%);font-family:var(--font)}@media (min-width:1600px){#advanced-options{--pad:1600px}}#advanced-options::before{content:"";position:absolute;top:-2px;left:0;width:100%;height:2px;background:linear-gradient(to right,hsla(var(--accent),1),hsla(var(--accent),.55)) hsl(var(--bg))}#advanced-options #fancybox-close{top:auto;bottom:24px;right:calc(40px + .05 * (var(--pad) - 700px))}#advanced-options div{padding:12px 0}#advanced-options .advanced-options-header{width:100%;height:32px;border:none;font-size:15px;line-height:28px;text-align:left;text-transform:uppercase}#advanced-options .advanced-options-header .description{display:none}#advanced-options .filter-widget,#advanced-options .sort-widget{display:flex;width:100%;padding:12px 12px 0 108px}#advanced-options .filter-widget:last-of-type,#advanced-options .sort-widget:last-of-type{padding-bottom:12px}#advanced-options .filter-widget .widget-header,#advanced-options .sort-widget .widget-header{width:108px;padding-left:12px;margin-left:-108px;flex:0 0 auto;font:13px/22px var(--font)}#advanced-options .filter-widget select,#advanced-options .sort-widget label,#advanced-options .sort-widget select,#advanced-options input{height:24px!important;background:calc(100% - 5px) center/auto no-repeat hsl(var(--btn));border:none!important;border-radius:3px;margin-right:2%;flex:0 1 auto;color:hsla(var(--text),88%);font:13px/16px var(--font)}#advanced-options .filter-widget select,#advanced-options .sort-widget select{background-image:var(--arrowDn)}#advanced-options .filter-widget select:disabled,#advanced-options .sort-widget select:disabled{background-blend-mode:soft-light;opacity:.57}#advanced-options .filter-widget.title input[type=text]{width:80%}#advanced-options .filter-widget.airing-status select,#advanced-options .filter-widget.publishing-status select{width:60%}#advanced-options .filter-widget.magazine select,#advanced-options .filter-widget.producer select{width:60%}#advanced-options .filter-widget.aired-date select.year,#advanced-options .filter-widget.published-date select.year{width:15%;border-radius:4px 0 0 4px;margin-right:0}#advanced-options .filter-widget.aired-date select.month,#advanced-options .filter-widget.published-date select.month{width:12%;border-radius:0;margin-right:0}#advanced-options .filter-widget.aired-date select.day,#advanced-options .filter-widget.published-date select.day{width:12%;border-radius:0 4px 4px 0}#advanced-options .filter-widget.aired-date .text,#advanced-options .filter-widget.published-date .text{display:none}#advanced-options .filter-widget.aired-season select.year{width:20%}#advanced-options .filter-widget.aired-season select.season{width:28%}#advanced-options .sort-widget select{width:34%}#advanced-options .sort-widget input[type=radio]+label{width:12%;padding:0;background:hsl(var(--btn))!important;border:2px solid hsla(var(--btnLight))!important;margin:0;color:hsla(var(--text),88%)!important;line-height:18px;transition:all var(--timeButton) var(--bezierFast)}#advanced-options .sort-widget input[type=radio]+label:first-of-type{border-radius:3px 0 0 3px;border-right-width:0!important}#advanced-options .sort-widget input[type=radio]+label:last-of-type{border-radius:0 3px 3px 0;border-left-width:0!important}#advanced-options .sort-widget :not(:disabled)+label:focus,#advanced-options .sort-widget :not(:disabled)+label:hover,#advanced-options .sort-widget :not(:disabled):checked+label{border-color:hsl(var(--btnAccent))!important;color:hsl(var(--accent))!important}#advanced-options .sort-widget input[type=radio]:disabled+label{opacity:.57;cursor:default}#advanced-options .advanced-options-button{width:100%;padding:12px 0;border:none;font-size:0;text-align:left}#advanced-options .advanced-options-button a{margin-right:9px;box-shadow:none}#footer-block{position:absolute;bottom:0;left:0;width:100%;height:60px;padding:22px 0;background:0 0;font:13px/16px var(--font)}#copyright{display:inline-block;padding:0;color:hsla(var(--text),40%);font:inherit;text-shadow:-.6px .84px 1.68px hsl(var(--bg));transition:color var(--timeText) var(--bezierFast);cursor:text}#copyright:hover{color:hsla(var(--text),100%)}#copyright::after{content:"List design by Valerio Lyndon."}.list-unit .list-stats{width:100%;height:16px;background:0 0;margin:0 auto;color:hsla(var(--text),40%);font:12px/16px var(--font)}@media (max-width:926px){.list-block{min-height:calc(100vh - (164px + (700px * .3)));padding-top:44px}#status-menu{height:0;margin-top:50px}#status-menu:not(.fixed){padding:0}#status-menu:not(.fixed) .status-menu{position:relative;top:-42px;width:560px}#status-menu:not(.fixed) .search-container{top:49px;left:calc(50% - 32px);width:250px}#status-menu .status-button{padding:0 6px}#status-menu.fixed .status-button{pointer-events:none;opacity:0}#status-menu.fixed .search-container{width:calc(100% - 29px)}.status-menu-container.fixed+div.list-block{margin-top:53px}.list-block::before{top:-53px}.list-unit .list-status-title{top:4px;left:calc(50% - 218px)}.list-unit .list-status-title .stats a{width:84px}.list-table>tbody:first-of-type{top:4px;left:calc(50% - 125px);width:84px}body #fancybox-wrap{left:calc(50% - (190px + (700px * .2)))!important;width:calc(380px + (700px * .4))!important}#advanced-options{position:absolute;padding:0 40px 12px}}@media (min-width:0px){:root{--listW:686.5px}}@media (min-width:927px){:root{--listW:910px}}@media (min-width:1150.5px){:root{--listW:1133.5px}}@media (min-width:1374px){:root{--listW:1357px}}@media (min-width:1597.5px){:root{--listW:1580.5px}}@media (min-width:1821px){:root{--listW:1804px}}[data-owner=""]{--arrowUp:url(https://i.imgur.com/Cu2u9Hu.png);--arrowRt:url(https://i.imgur.com/vqOtoms.png);--arrowDn:url(https://i.imgur.com/0YI7VxA.png);--arrowLt:url(https://i.imgur.com/BArw1oI.png)}[data-owner=""] .header .header-title{background-image:url(https://i.imgur.com/g0WEEth.png)}[data-owner=""] .list-container::before,[data-owner=""] .list-menu-float::after{background-image:url(https://i.imgur.com/Ly6A4ph.png)}[data-owner=""] .list-unit .loading-space i{background-image:url(https://i.imgur.com/1NLFsAe.png)}@-moz-document url-prefix(){.list-item{will-change:transform}.data.title{padding-top:2px!important}} /*TOP TEIR BLUR*/.data.tags {overflow: initial; opacity: 1;}.data.tags span {min-height: initial;margin-bottom: 0;}.data.tags a {min-height: 15px;margin-bottom: 4px;opacity: 0;transition: color var(--timeText) var(--bezierFast), opacity calc(var(--timeItem) * 1.5) var(--bezierFast);}.list-item:hover .data.tags a, .list-item:focus-within .data.tags a { opacity: 1;} .data.tags a[href$="tag=Top%20tier"] {position: absolute; z-index: 4;top: -51px; right: -12px; width: 210px; height: 300px;padding: 120px 0 0 0 !important;background: hsla(0, 0%, 0%, 40%);border-radius: 6px;color: hsl(var(--goldRating)) !important;font: 22px/24px var(--font) !important; text-align: center;text-transform: uppercase;opacity: 1;backdrop-filter: blur(1px); transition: opacity calc(var(--timeItem) * 1.5) var(--bezierFast);pointer-events: none !important;} .list-item:hover .data.tags a[href$="tag=Top%20tier"], .list-item:focus-within .data.tags a[href$="tag=Top%20tier"] {opacity: 0;}.data.tags a[href$="tag=Top%20tier"]::before{content: "ANIME:";display: block;height: 57px;padding: 3px 0 30px !important;background: hsla(var(--btn), var(--infoBGOpacity)); box-shadow: -1.2px 1.68px 3.36px hsla(0,0%,0%,40%);margin-bottom: -30px;font-size: 15px;} /*-------------------------------*| [ Stats Internals ] |*-------------------------------*/ .list-unit .list-status-title .stats a:first-child{ display: inline-block; position: absolute; top: 0px; right: calc(50% - var(--listW) + 77.5px - 26px - 2px); /*minus max-width minus padding*/ max-width: 26px; overflow: hidden; pointer-events: inherit; } .list-unit .list-status-title .stats a:first-child::before{ content: " "; } .list-unit .list-stats { top: 0px; left: 0px; width: 100%; height: 16px; background: 0 0; margin: 0 auto; color: hsla(var(--stats), var(--statsOpac)); font: 13px/16px var(--font); text-shadow: 2px 2px 4px #000; padding: 10px 0 30px !important; pointer-events: none !important; } |
LeosparsNov 14, 2021 9:23 PM
Nov 18, 2021 11:36 PM
#347
Leospars said: Hey VAL, I just updated my Brink Layout to the most recent one --- v1.7.0 (5th of Oct, 2021) • Added support for new genre/demographic columns. and I noticed I had a problem with my stats, the stats is showing without me pressing the stats button and its was out of place (before changing width to 100% it seems and, as if the padding isn't working). The compression is pretty large so had some struggle finding the parts that changed for stats. before: after: -snip- /*-------------------------------*| [ Stats Internals ] |*-------------------------------*/ .list-unit .list-status-title .stats a:first-child{ display: inline-block; position: absolute; top: 0px; right: calc(50% - var(--listW) + 77.5px - 26px - 2px); /*minus max-width minus padding*/ max-width: 26px; overflow: hidden; pointer-events: inherit; } .list-unit .list-status-title .stats a:first-child::before{ content: " "; } .list-unit .list-stats { top: 0px; left: 0px; width: 100%; height: 16px; background: 0 0; margin: 0 auto; color: hsla(var(--stats), var(--statsOpac)); font: 13px/16px var(--font); text-shadow: 2px 2px 4px #000; padding: 10px 0 30px !important; pointer-events: none !important; } I think you modified some of the main theme code in your other version to accomodate the stats position change, hence why it broke when you updated it. Anyway, here's an updated version of your mod code that should move all the functionality into the modification and fix this. This is meant to be added at the bottom of the code as a modification, instead of replacing some of the theme code. /*-------------------------------*| [ Stats Internals ] |*-------------------------------*/ .list-unit .list-status-title .stats a:first-child{ display: inline-block; position: absolute; top: 0px; right: calc(50% - var(--listW) + 77.5px - 26px - 2px); /*minus max-width minus padding*/ max-width: 26px; overflow: hidden; pointer-events: inherit; } .list-unit .list-status-title .stats a:first-child::before{ content: " "; } .list-unit .list-stats { position: static; color: hsla(var(--text), 88%); font: 13px/16px var(--font); text-shadow: 2px 2px 4px #000; padding: 10px 0 30px !important; pointer-events: none !important; } .list-unit .list-stats:not([style="display: block;"]) { display: none !important; } If you are modifying the theme a lot, you might want to try the uncompressed version so that it's easier. |
Nov 18, 2021 11:45 PM
#348
@Lawliet529 Thanks a bunch for helping out Krina! |
Nov 19, 2021 2:18 AM
#349
@Valerio_Lyndon No problem! Btw, they changed the selector for the "plus" icon. From [class^="icon-add-"] .fa::before to [class^="icon-add-"] .fa-solid::before |
Nov 19, 2021 4:00 AM
#350
Lawliet529 said: @Valerio_Lyndon No problem! Btw, they changed the selector for the "plus" icon. From [class^="icon-add-"] .fa::before to [class^="icon-add-"] .fa-solid::before Ah, good catch, thank you. Now you mention it, they seem to have changed the sort icons as well. Hopefully that's the only ones! |
Valerio_LyndonNov 19, 2021 4:03 AM
More topics from this board
» ❓ Ask for help here + See Frequently Asked Questions ( 1 2 3 4 5 ... Last Page )Shishio-kun - Apr 15, 2010 |
7921 |
by takkun_
»»
Yesterday, 9:54 PM |
|
» [CSS - MODERN] ⚡️ Fully-Customizable Layouts (2024 updates!) ( 1 2 3 4 5 ... Last Page )Shishio-kun - Jul 21, 2017 |
381 |
by KabukiChouNights
»»
Sep 13, 10:56 AM |
|
» theme helpthreat - Jul 5 |
5 |
by Zaryf
»»
Aug 21, 5:46 AM |
|
» [CSS - Modern] 🍰 Clarity by V.L ( 1 2 3 4 5 ... Last Page )Valerio_Lyndon - Apr 19, 2018 |
1261 |
by KiranaStarr
»»
Aug 16, 5:48 PM |
|
» [CSS] ⭐️ Customize your List Cursor + Cursor FixesShishio-kun - Mar 8, 2021 |
30 |
by Shishio-kun
»»
Jul 28, 3:17 AM |