Make WordPress Core

Ticket #38394: 38394_2.diff

File 38394_2.diff, 918 bytes (added by Caspie, 8 years ago)

Adding comments and placing the code on the proper places

  • src/wp-content/themes/twentyseventeen/style.css

     
    30773077## Media Queries
    30783078--------------------------------------------------------------*/
    30793079
     3080@media screen and (min-width: 20em) {
     3081
     3082        /* Pagination */
     3083
     3084        .page-numbers {
     3085                display: none;
     3086        }
     3087
     3088        .prev.page-numbers,
     3089        .next.page-numbers {
     3090                display: inline-block;
     3091                width: 4em;
     3092        }
     3093}
     3094
    30803095@media screen and (min-width: 30em) {
    30813096
    30823097        /* Typography */
     
    31993214        .gallery-columns-4 .gallery-item {
    32003215                max-width: 25%;
    32013216        }
     3217
     3218        /* Pagination */
     3219
     3220        .page-numbers {
     3221                display: inline;
     3222        }
     3223
     3224        .prev.page-numbers,
     3225        .next.page-numbers {
     3226                display: inline-block;
     3227                width: auto;
     3228        }
    32023229}
    32033230
    32043231@media screen and (min-width: 48em) {