From c1f1e1b83031a5bf85965a883f84874a1ea349a0 Mon Sep 17 00:00:00 2001 From: Matthew Holloway Date: Fri, 7 Jun 2024 08:42:23 +1200 Subject: [PATCH] fix: Formatting blockquotes in datatrackers rendered markdown (#7500) * Formatting blockquotes in datatrackers rendered markdown * Blockquote default formatting, with overrides for legacy blockquote * Removing unnecessary 'richtext' CSS class --------- Co-authored-by: Matthew Holloway --- dev/legacy/notes/notes.html | 7 ++++--- ietf/secr/templates/telechat/group.html | 2 +- ietf/static/css/ietf.scss | 5 +++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dev/legacy/notes/notes.html b/dev/legacy/notes/notes.html index 85980a5b1b..cb10a18689 100644 --- a/dev/legacy/notes/notes.html +++ b/dev/legacy/notes/notes.html @@ -355,7 +355,7 @@

Introduction

in one place.

With my recent investigations of code analysis tools, I thought it might be a good idea to start collecting these in one place for the project.

-
+
Henrik <henrik@levkowetz.com>, 23 Mar 2014
@@ -398,8 +398,9 @@

PyChecker

do the right thing, but once it was made to run on the datatracker code, and ignore the django code, it didn't report anything that PyFlakes hadn't already caught.

-
-Henrik <henrik@levkowetz.com>, 23 Mar 2014
+
+ Henrik <henrik@levkowetz.com>, 23 Mar 2014 +
diff --git a/ietf/secr/templates/telechat/group.html b/ietf/secr/templates/telechat/group.html index 890c451e83..4e04f0e16e 100644 --- a/ietf/secr/templates/telechat/group.html +++ b/ietf/secr/templates/telechat/group.html @@ -3,7 +3,7 @@ Does anyone have an objection to the creation of this working group being sent for EXTERNAL REVIEW?

External Review APPROVED; "The Secretariat will send a Working Group Review announcement with a copy to new-work and place it back on the agenda for the next telechat."

External Review NOT APPROVED; -
+
The Secretariat will wait for instructions from
The IESG decides the document needs more time in INTERNAL REVIEW. The Secretariat will put it back on the agenda for the next teleconference in the same category.
The IESG has made changes since the charter was seen in INTERNAL REVIEW, and decides to send it back to INTERNAL REVIEW the charter again. diff --git a/ietf/static/css/ietf.scss b/ietf/static/css/ietf.scss index ca960c0378..062358c0e2 100644 --- a/ietf/static/css/ietf.scss +++ b/ietf/static/css/ietf.scss @@ -1183,3 +1183,8 @@ td.position-empty { } } } + +blockquote { + padding-left: 1rem; + border-left: solid 1px var(--bs-body-color); +}