From 112daf0ae014a476ba549da5dfa4a727aa78c551 Mon Sep 17 00:00:00 2001 From: Katie Gengler Date: Wed, 27 Aug 2025 00:45:20 -0400 Subject: [PATCH 1/2] Fix styles for tips in ember-data docs, fix tables in markdown --- app/styles/app.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app/styles/app.css b/app/styles/app.css index ffef6fcd..3cbda064 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -187,6 +187,30 @@ section.event { margin: var(--spacing-2); } +/* Ember data uses styled elements in markdown blocks that conflict with the + default styles for blockquotes (because of ::before block that has an + absolutely positioned quote mark). + */ +blockquote[style]::before { + all: initial; +} + +/* Styles for tables (from markdown) + Should probably be upstreamed to ember-styleguide + */ +table { + text-align: left; + border-collapse: collapse; +} + +table tr { + border-bottom: 1px solid var(--color-gray-300); +} + +table th, table td { + padding: var(--spacing-1); +} + @media (width >= 845px) { .es-header { padding: 0 var(--spacing-4); From 86bfc885cbb06861fcf895cfcbfd5be580be9071 Mon Sep 17 00:00:00 2001 From: Anne-Greeth Schot-van Herwijnen Date: Wed, 27 Aug 2025 11:46:57 +0200 Subject: [PATCH 2/2] Update app.css --- app/styles/app.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/styles/app.css b/app/styles/app.css index 3cbda064..17d0ae44 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -207,7 +207,8 @@ table tr { border-bottom: 1px solid var(--color-gray-300); } -table th, table td { +table th, +table td { padding: var(--spacing-1); }