Skip to content
Snippets Groups Projects

Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS

Closed Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS
Closed Harumi Jang requested to merge issue/drupal-3238915:3238915-refactor-if-feasible into 9.3.x
4 files
+ 50
2
Compare changes
  • Side-by-side
  • Inline
Files
4
  • 11fc6f00
    Issue #3214124 by imalabya, Sakthivel M, javi-er, vicheldt, naveen433,... · 11fc6f00
    Lauri Timmanee authored
    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
@@ -130,7 +130,32 @@ dl dl {
@@ -130,7 +130,32 @@ dl dl {
}
}
blockquote {
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 {
address {
Loading