Make WordPress Core


Ignore:
Timestamp:
11/19/2018 09:26:02 PM (6 years ago)
Author:
allancole
Message:

Updating Twenty Nineteen, our new default theme for 2019, set for 5.0.

This update changes the following:

  • Fix JS errors in customizer caused by menu scripts
  • Fix footer menu spacing
  • Fix pullquote block borders to follow Gutenberg’s described style
  • Fix editor-only styles so they don't appear on the frontend when not needed
  • Fix search field widget width on mobile
  • Fix :visited .button link colors
  • Fix Block toolbar position in the editor
  • Fix off-canvas mobile menu to prevent text from overflowing
  • Improve column block formatting for the editor and frontend
  • Improve CSS optimization for selectors that add dashes to multi-level lists
  • Improve editor font sizes to use pixels over ems
  • Improve styles for galleries in the Classic Editor block
  • Improve priority+ more-menu threshold to allow more space for menu-items
  • Improve logo size on mobile devices
  • Improve customizer color options to present a single, unified color option
  • Improve print stylesheet for better spacing and colors
  • Add more color options to Gutenberg editor

Initial development occurred on GitHub. See: https://github.com/WordPress/twentynineteen

Props allancole, karmatosed, kjellr, yingling017, mrasharirfan, milana_cap, fabiankaegy, westonruter, jorbin, netweb, b-07, khleomix, audrasjb, nielslange, mmaumio, richsalvucci, littlebigthing, dimadin, joyously, anevins, peterwilsoncc, dannycooper, iCaleb, siriokun, technosiren, travel_girl, azchughtai, ianbelanger, nadim1992, ismailelkorchi, nativeinside, chetan200891, grapplerulrich, ocean90, joshfeck, frankew, AbdulWahab610, mendezcode, eliorivero, melchoyce, joen, laurelfulford, mdawaffe, kraftbj, dsmart, nao, mayukojpn, enodekciw, ketuchetan, atanasangelovdev, poena, sharaz, artisticasad, mukesh27, burhandodhy, crunnells, aprakasa, themeroots, imonly_ik, tlxo, youthkee, brentswisher, smyoon315, mrahmadawais, desideveloper, Kau-Boy, mor10, mikeyarce, dingo_bastard

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.0/src/wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss

    r43892 r43909  
    9191
    9292@mixin non-latin-fonts( $wrapper_classname: '.site' ) {
    93    
     93
    9494    /* Arabic */
    9595    html[lang="ar"] #{$wrapper_classname} *,
     
    191191@mixin nestedSubMenuPadding() {
    192192
    193     ul li > a:before {
     193    ul {
     194        counter-reset: submenu;
     195    }
     196
     197    ul > li > a::before {
    194198        font-family: $font__body;
    195199        font-weight: normal;
    196     }
    197     ul > li > a:before {
    198         content: "\2013\00a0";
    199     }
    200     ul ul li > a:before {
    201         content: "\2013\00a0\2013\00a0";
    202     }
    203     ul ul ul li > a:before {
    204         content: "\2013\00a0\2013\00a0\2013\00a0";
    205     }
    206     ul ul ul ul li > a:before {
    207         content: "\2013\00a0\2013\00a0\2013\00a0\2013\00a0";
    208     }
    209     ul ul ul ul ul li > a:before {
    210         content: "\2013\00a0\2013\00a0\2013\00a0\2013\00a0";
    211     }
    212     ul ul ul ul ul ul li > a:before {
    213         content: "\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0";
    214     }
    215     ul ul ul ul ul ul ul li > a:before {
    216         content: "\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0";
    217     }
    218     ul ul ul ul ul ul ul ul li > a:before {
    219         content: "\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0";
    220     }
    221     ul ul ul ul ul ul ul ul ul li > a:before {
    222         content: "\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0\2013\00a0";
     200        content: "\2013\00a0" counters(submenu, "\2013\00a0", none);
     201        counter-increment: submenu
    223202    }
    224203}
Note: See TracChangeset for help on using the changeset viewer.