Issue #3214124 by imalabya, Sakthivel M, javi-er, vicheldt, naveen433, kostyashupenko, yogeshmpawar, ankithashetty, Gauravmahlawat, dww, saschaeggi, ckrina, tushar_sachdeva: Quotations are missing for the HTML <blockquote> Element in Claro theme

merge-requests/1877/head
Lauri Eskola 2022-02-23 09:51:19 +02:00
parent 9b9dc205ec
commit 11fc6f006e
No known key found for this signature in database
GPG Key ID: 382FC0F5B0DF53F8
4 changed files with 50 additions and 2 deletions

View File

@ -130,7 +130,32 @@ dl dl {
}
blockquote {
margin: 1em 2.5rem;
position: relative;
margin: var(--space-l);
margin-left: 2.5rem; /* LTR */
font-size: var(--font-size-h6);
}
[dir="rtl"] blockquote {
margin-right: 2.5rem;
}
blockquote::before {
position: absolute;
left: -2.5rem; /* LTR */
content: open-quote;
color: var(--color-absolutezero);
font-family: var(--font-family-serif);
font-size: var(--space-xl);
line-height: 1em;
}
[dir="rtl"] blockquote::before {
right: -2.5rem;
}
blockquote::after {
content: no-close-quote;
}
address {

View File

@ -107,7 +107,28 @@ dl dl {
margin-right: 20px;
}
blockquote {
margin: 1em 40px;
position: relative;
margin: var(--space-l);
margin-left: 2.5rem; /* LTR */
font-size: var(--font-size-h6);
}
[dir="rtl"] blockquote {
margin-right: 2.5rem;
}
blockquote::before {
position: absolute;
left: -2.5rem; /* LTR */
content: open-quote;
color: var(--color-absolutezero);
font-family: var(--font-family-serif);
font-size: var(--space-xl);
line-height: 1em;
}
[dir="rtl"] blockquote::before {
right: -2.5rem;
}
blockquote::after {
content: no-close-quote;
}
address {
font-style: italic;

View File

@ -55,6 +55,7 @@
* Typography.
*/
--font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
--font-family-serif: "Times New Roman", times, serif;
--line-height: 1.5;
--line-height-heading: 1.3;
--line-height-form-label: 1.125rem; /* 18px */

View File

@ -49,6 +49,7 @@
* Typography.
*/
--font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
--font-family-serif: "Times New Roman", times, serif;
--line-height: 1.5;
--line-height-heading: 1.3;
--line-height-form-label: calc(18rem / 16); /* 18px */