Make WordPress Core

Ticket #60621: 60621.patch

File 60621.patch, 1.2 KB (added by nidhidhandhukiya, 3 years ago)
  • wp-content/themes/twentynineteen/style-editor.css

     
    16141614.wp-block-post-author__avatar img {
    16151615  border-radius: 100%;
    16161616}
     1617
     1618.wp-block-search__input,
     1619 input[type=search] {
     1620  padding: 0.38rem 0.66rem;
     1621  min-height: auto;
     1622  font-size: 22px;
     1623}
     1624.wp-block-search__button{
     1625  background: #0073aa;
     1626    border-radius: 5px;
     1627    color: #fff;
     1628}
     1629 No newline at end of file
  • wp-content/themes/twentynineteen/style-editor.scss

     
    10311031.wp-block-post-author__avatar img {
    10321032        border-radius: 100%;
    10331033}
     1034
     1035.wp-block-search {
     1036        &__input {
     1037                padding: 0.38rem 0.66rem;
     1038                min-height: auto;
     1039                font-size: 22px;
     1040        }
     1041
     1042        input[type=search] {
     1043                padding: 0.38rem 0.66rem;
     1044                min-height: auto;
     1045                font-size: 22px;
     1046        }
     1047
     1048        &__button {
     1049                background: #0073aa;
     1050                border-radius: 5px;
     1051                color: #fff;
     1052        }
     1053}
     1054 No newline at end of file