Make WordPress Core


Ignore:
Timestamp:
12/14/2018 02:32:33 AM (6 years ago)
Author:
pento
Message:

Default Themes: Import Twenty Nineteen from the 5.0 branch.

Merges [43808,43821,43842,43860,43892,43904,43909,43926-43929,43956,43961-43963] from the 5.0 branch to trunk.

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, xkon, twoabove.

Fixes #45424.

Location:
trunk
Files:
2 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss

    r43808 r44149  
    66        max-width: 100%;
    77    }
     8
     9    a {
     10        color: $color__link;
     11
     12        &:hover {
     13            color: $color__link-hover;
     14        }
     15    }
    816}
     17
     18.widget_archive,
     19.widget_categories,
     20.widget_meta,
     21.widget_nav_menu,
     22.widget_pages,
     23.widget_recent_comments,
     24.widget_recent_entries,
     25.widget_rss {
     26
     27    ul {
     28        padding: 0;
     29        list-style: none;
     30
     31        li {
     32            color: $color__text-light;
     33            font-family: $font__heading;
     34            font-size: calc(#{$font__size_base} * #{$font__size-ratio});
     35            font-weight: 700;
     36            line-height: $font__line-height-heading;
     37            margin-top: #{0.5 * $size__spacing-unit};
     38            margin-bottom: #{0.5 * $size__spacing-unit};
     39        }
     40
     41        @include nestedSubMenuPadding();
     42    }
     43}
     44
     45.widget_tag_cloud {
     46
     47    .tagcloud {
     48        font-family: $font__heading;
     49        font-weight: 700;
     50    }
     51}
     52
     53
     54.widget_search {
     55
     56    .search-field {
     57        width: 100%;
     58
     59        @include media(mobile) {
     60            width: auto;
     61        }
     62    }
     63
     64    .search-submit {
     65        display: block;
     66        margin-top: $size__spacing-unit;
     67    }
     68}
     69
     70.widget_calendar .calendar_wrap {
     71    text-align: center;
     72
     73    table td,
     74    table th {
     75        border: none;
     76    }
     77
     78    a {
     79        text-decoration: underline;
     80    }
     81}
Note: See TracChangeset for help on using the changeset viewer.