Make WordPress Core

Changeset 26558


Ignore:
Timestamp:
12/03/2013 05:14:39 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: make sure non-breaking title in .nav-links doesn't overflow, and make sure the menu toggle text is hidden. Props iamtakashi, closes #26189.

Location:
trunk/src/wp-content/themes/twentyfourteen
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/css/ie.css

    r26545 r26558  
    929929    line-height: 45px;
    930930    text-transform: uppercase;
     931    visibility: visible;
    931932    width: 200px;
    932933}
  • trunk/src/wp-content/themes/twentyfourteen/style.css

    r26545 r26558  
    980980.menu-toggle {
    981981    cursor: pointer;
    982     font-size: 0;
    983982    height: 48px;
    984983    margin: 0;
     
    987986    right: 0;
    988987    text-align: center;
     988    visibility: hidden;
    989989    width: 48px;
    990990}
     
    993993    color: #fff;
    994994    content: "\f419";
    995     margin-top: 16px;
     995    position: relative;
     996    top: -1px;
     997    visibility: visible;
    996998}
    997999
     
    15191521
    15201522.nav-links {
     1523    -webkit-hyphens: auto;
     1524    -moz-hyphens:    auto;
     1525    -ms-hyphens:     auto;
    15211526    border-top: 1px solid rgba(0, 0, 0, 0.1);
     1527    hyphens:         auto;
     1528    word-wrap: break-word;
    15221529}
    15231530
Note: See TracChangeset for help on using the changeset viewer.