Make WordPress Core

Ticket #38394: 38394.diff

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

Adding possible fix for small devices (320 to 480px). Tested on iPhone 5s.

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

     
    30773077## Media Queries
    30783078--------------------------------------------------------------*/
    30793079
     3080@media screen and (min-width: 20em) {
     3081        .page-numbers {
     3082                display: none;
     3083        }
     3084
     3085        .prev.page-numbers,
     3086        .next.page-numbers {
     3087                display: inline-block;
     3088                width: 4em;
     3089        }
     3090}
     3091
    30803092@media screen and (min-width: 30em) {
     3093        .page-numbers {
     3094                display: inline-block;
     3095        }
    30813096
     3097        .prev.page-numbers,
     3098        .next.page-numbers {
     3099                width: auto;
     3100        }
     3101
    30823102        /* Typography */
    30833103
    30843104        body,