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/footer/_site-footer.scss

    r43808 r44149  
    11/* Site footer */
    22
    3 .site-footer {
     3#colophon {
    44
    5     color: $color__text-light;
    6 
     5    .widget-area,
    76    .site-info {
    8 
    97        margin: calc(2 * #{$size__spacing-unit}) $size__spacing-unit;
    108
    119        @include media(tablet) {
    12             margin: calc(3 * #{$size__spacing-unit}) calc(2 * (100vw / 12));
    13             max-width: calc(8 * (100vw / 12));
     10            margin: calc(3 * #{$size__spacing-unit}) $size__site-margins;
     11        }
     12    }
     13
     14    .widget-column {
     15        display: flex;
     16        flex-wrap: wrap;
     17        .widget {
     18            width: 100%;
     19            @include media(desktop) {
     20                margin-right: calc(3 * #{$size__spacing-unit});
     21                width: calc(50% - (3 * #{$size__spacing-unit}));
     22            }
     23        }
     24    }
     25
     26    .site-info {
     27        color: $color__text-light;
     28
     29        a {
     30            color: inherit;
     31
     32            &:hover {
     33                text-decoration: none;
     34                color: $color__link;
     35            }
    1436        }
    1537
    16         .imprint {
     38        .imprint,
     39        .privacy-policy-link {
    1740            margin-right: $size__spacing-unit;
    1841        }
    1942    }
    20 
    21     a {
    22         color: inherit;
    23 
    24         &:hover {
    25             text-decoration: none;
    26             color: $color__link;
    27         }
    28     }
    2943}
Note: See TracChangeset for help on using the changeset viewer.