Make WordPress Core

Ticket #56104: #56104.patch

File #56104.patch, 1.9 KB (added by kajalgohel, 3 years ago)

added patch for adding text-transform:none of button text

  • wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css

     
    910910        letter-spacing: 0.0333em;
    911911        line-height: 1.25;
    912912        padding: 1.1em 1.44em;
    913         text-transform: uppercase;
     913        text-transform: none;
    914914}
    915915
    916916.editor-styles-wrapper .wp-block-button .wp-block-button__link.mce-content-body {
  • wp-content/themes/twentytwenty/assets/css/editor-style-block.css

     
    910910        letter-spacing: 0.0333em;
    911911        line-height: 1.25;
    912912        padding: 1.1em 1.44em;
    913         text-transform: uppercase;
     913        text-transform: none;
    914914}
    915915
    916916.editor-styles-wrapper .wp-block-button .wp-block-button__link.mce-content-body {
  • wp-content/themes/twentytwenty/style-rtl.css

     
    849849        padding: 1.1em 1.44em;
    850850        text-align: center;
    851851        text-decoration: none;
    852         text-transform: uppercase;
     852        text-transform: none;
    853853        transition: opacity 0.15s linear;
    854854}
    855855
  • wp-content/themes/twentytwenty/style.css

     
    855855        padding: 1.1em 1.44em;
    856856        text-align: center;
    857857        text-decoration: none;
    858         text-transform: uppercase;
     858        text-transform: none;
    859859        transition: opacity 0.15s linear;
    860860}
    861861