Make WordPress Core

Ticket #62514: 62514.patch

File 62514.patch, 965 bytes (added by nidhidhandhukiya, 6 months ago)
  • wp-content/themes/twentynineteen/style-editor.css

     
    16331633.wp-block-post-author__avatar img {
    16341634  border-radius: 100%;
    16351635}
     1636
     1637/** === Details Block === */
     1638details[style*="font-size"] p {font-size: inherit;}
     1639 No newline at end of file
  • wp-content/themes/twentynineteen/style-editor.scss

     
    10791079.wp-block-post-author__avatar img {
    10801080        border-radius: 100%;
    10811081}
     1082
     1083/** === Details Block === */
     1084details {
     1085        &[style*="font-size"] {
     1086          p {
     1087                font-size: inherit;
     1088          }
     1089        }
     1090  }
     1091 
     1092 No newline at end of file