CSS-Quotes – allgemeines Styling

Das Standard-Zitat-Styling in Discourse: Welche genauen CSS-Klassen usw. steuern das?

Ich habe mit .blockquote herumgespielt, aber was erzeugt die linke Linie von etwa 4/6 px und die Hintergrundfarbe? Nun, eigentlich im Titel des Benutzerzitats – ist das einfach nur .title?

Wie immer vielen Dank im Voraus. Ich habe heute zu lange auf einen Bildschirm gestarrt. Ich bin fertig! Wenn nur dieses Forum :beers: ausschenken würde, wisst ihr schon!

You’ll want to style aside.quote .title and blockquote… You can cover both like this:

aside.quote .title, blockquote {
    // Styles here
}

@awesomerobot …at this point I owe you a :beer: Thanks!

Hallo, eine spezifische Frage:

Weiß jemand, wie das CSS für verschachtelte Zitate aussieht, insbesondere für die „erststufigen

Ich glaube, so etwas könnte funktionieren

aside.quote blockquote {
  blockquote,
  aside.quote {
    &,
    .title,
    .onebox,
    .onebox-result {
      background-color: red;
    }
  }
}

Das ist im SASS etwas schwer zu lesen, aber die endgültige Ausgabe lautet

aside.quote blockquote blockquote,
aside.quote blockquote blockquote .title,
aside.quote blockquote blockquote .onebox,
aside.quote blockquote blockquote .onebox-result,
aside.quote blockquote aside.quote,
aside.quote blockquote aside.quote .title,
aside.quote blockquote aside.quote .onebox,
aside.quote blockquote aside.quote .onebox-result {
  background-color: red;
}

Funktioniert wunderbar, danke! :+1: :+1: :+1:

Beispiel:
Anteckning 2020-01-16 110229