Making WordPress.org

Changeset 8931


Ignore:
Timestamp:
06/06/2019 06:58:21 PM (7 years ago)
Author:
coffee2code
Message:

Browse Happy: Automatically wrap site name in header for languages that translate into long words.

Fixes https://github.com/WordPress/browsehappy/issues/57.
Fixes https://github.com/WordPress/browsehappy/pull/58.

Location:
sites/trunk/browsehappy.com/public_html
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/browsehappy.com/public_html/index.php

    r8449 r8931  
    1515        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    1616
    17         <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/style.css?9" />
     17        <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/style.css?10" />
    1818        <script src="<?php echo get_template_directory_uri(); ?>/js/modernizr-1.6.min.js"></script>
    1919        <script src="https://use.typekit.com/lsw6yis.js"></script>
  • sites/trunk/browsehappy.com/public_html/style.css

    r8874 r8931  
    150150        color: #324B4B;
    151151        text-shadow: 0 1px 0 rgba(255,255,255,.5), 0 -1px 0 rgba(0,0,0,.8);
     152        word-break: break-word;
     153        overflow-wrap: break-word;
     154        -webkit-hyphens: auto;
     155        -ms-hyphens: auto;
     156        hyphens: auto;
    152157}
    153158
Note: See TracChangeset for help on using the changeset viewer.