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
parent
9b9dc205ec
commit
11fc6f006e
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue