Make WordPress Core

Ticket #52412: 52412.3.diff

File 52412.3.diff, 2.2 KB (added by mahfuz01, 2 years ago)

Uploading a new patch covered both ol and ul on .scss file.

  • src/wp-content/themes/twentytwentyone/assets/css/ie.css

    diff --git a/src/wp-content/themes/twentytwentyone/assets/css/ie.css b/src/wp-content/themes/twentytwentyone/assets/css/ie.css
    index 33946c7100..62a4a5263a 100644
    a b ul { 
    38313831        list-style-type: disc;
    38323832}
    38333833
     3834ul ul {
     3835        list-style-type: circle;
     3836}
     3837
    38343838ol {
    38353839        list-style-type: decimal;
    38363840}
    38373841
     3842ol ul {
     3843        list-style-type: circle;
     3844}
     3845
    38383846dt {
    38393847        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    38403848        font-weight: bold;
  • src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss

    diff --git a/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss b/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss
    index 01e8581cea..3b22604b53 100644
    a b ol { 
    1919
    2020ul {
    2121        list-style-type: disc;
     22        ul {
     23                list-style-type: circle;
     24        }
    2225}
    2326
    2427ol {
    2528        list-style-type: decimal;
     29        ul {
     30                list-style-type: circle;
     31        }
    2632}
    2733
    2834dt {
  • src/wp-content/themes/twentytwentyone/style-rtl.css

    diff --git a/src/wp-content/themes/twentytwentyone/style-rtl.css b/src/wp-content/themes/twentytwentyone/style-rtl.css
    index 167391639d..30dcc0b76c 100644
    a b ul { 
    26832683        list-style-type: disc;
    26842684}
    26852685
     2686ul ul {
     2687        list-style-type: circle;
     2688}
     2689
    26862690ol {
    26872691        list-style-type: decimal;
    26882692}
    26892693
     2694ol ul {
     2695        list-style-type: circle;
     2696}
     2697
    26902698dt {
    26912699        font-family: var(--definition-term--font-family);
    26922700        font-weight: bold;
  • src/wp-content/themes/twentytwentyone/style.css

    diff --git a/src/wp-content/themes/twentytwentyone/style.css b/src/wp-content/themes/twentytwentyone/style.css
    index 815fbf7226..5bd00d67b8 100644
    a b ul { 
    26932693        list-style-type: disc;
    26942694}
    26952695
     2696ul ul {
     2697        list-style-type: circle;
     2698}
     2699
    26962700ol {
    26972701        list-style-type: decimal;
    26982702}
    26992703
     2704ol ul {
     2705        list-style-type: circle;
     2706}
     2707
    27002708dt {
    27012709        font-family: var(--definition-term--font-family);
    27022710        font-weight: bold;