#thank you for this i’ve always wanted something like that

1 messages · Page 1 of 1 (latest)

crystal pollen
#

it seems like you forgot to uncomment a bunch of stuff

fringe monolith
crystal pollen
#

?

#

i’d also suggest you use selectors like [class*="blockquoteContainer"] instead of .blockquoteContainer__75297 as that’s more futureproof

#

and also in bigger codeblocks it doesn’t show the language name

fringe monolith
crystal pollen
#

why?

crystal pollen
fringe monolith
crystal pollen
#

thank you for your theme

#

underline doesn’t seem supported

u {
    text-decoration: none;

    &::before {
        content: "__";
    }

    &::after {
        content: "__";
    }          
 }
#

this codeblocks adds underline support

crystal pollen
#

strikethrough support:

s {
    text-decoration: none;

    &::before {
        content: "~~";
    }

    &::after {
        content: "~~";
    }
 }
crystal pollen
#

you can also replace font-weight: initial; in the em section by font-style: normal; if you don’t want italic to still apply

crystal pollen
# fringe monolith it never did

using

code::before {
    content: "\```
" attr(class) "\a";
}

code::after {
    content: "\a\```";
}

i am very close to make it work

#

for some reason the code snipet completely breaks discord

#

in any case it shows every classes when we only want it to show the last class

crystal pollen
#

fuck it i’ll just brute force it

crystal pollen
#

no that doesn’t work because there could be anything not just valid languages

#

it’s basically impossible with just css

#

list support

ul > li {
    list-style: none;
}
ul > li:before {
    display: inline-block;
    content: "-";
    width: 1em;
    margin-left: -1em;
}
  • list
    • list
  • list
    • list
      • list
        • list
#

you can use * if you prefer

fringe monolith
#

Why are you this dedicated to one of my shitposts

crystal pollen
#

because i’ve always wanted something like that

foggy stream
#

What even is this for ?

crystal pollen
#

show the text as it was typed and not how discord renders it

azure nova
#

this is evil i love it

foggy stream
#

Make it looks like it was writing in the console

crystal pollen
#

no you can’t do that with css

fringe monolith
crystal pollen
#

it’s only making it look more like it was written

foggy stream
#

Ah

crystal pollen
crystal pollen
#

multiline
quote
doesn’t work properly

#

i don’t really see an easy fix

high spindle
#

what?!}

#

my eyes

crystal pollen
#

add this to fix spoilered links

.obscured[class*="hidden"] a {
        &::before {
                opacity: 0;
        }
        &::after {
                opacity: 0;
        }
}

||example||