Making WordPress.org


Ignore:
Timestamp:
10/17/2019 05:58:15 AM (6 years ago)
Author:
dd32
Message:

Theme Directory: Remove the Upload link from the header, and replace it with a set of footer widgets.

Props dingo_d, dd32.
Fixes #4727.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/css/components/_main.scss

    r8932 r9196  
    7777
    7878.modal-open .wp-filter,
    79 .modal-open .rendered .themes {
     79.modal-open .rendered .themes,
     80.modal-open aside.theme-widget-area {
    8081    display: none;
    8182}
     
    165166    opacity: 1;
    166167}
     168
     169// Theme Widget area in the themes screen.
     170.theme-widget-area {
     171  background-color: #fff;
     172  padding-top: 20px;
     173}
     174
     175.theme-widget-area .widget-wrap {
     176  display: flex;
     177  flex-direction: row;
     178}
     179
     180.theme-widget-area .widget {
     181  flex: 1;
     182  margin-right: 14px;
     183}
     184
     185.theme-widget-area .textwidget {
     186  font-size: 12.8px;
     187  font-size: .8rem;
     188}
     189
     190@media only screen and (max-width: 600px) {
     191  .theme-widget-area .widget-wrap {
     192    flex-direction: column;
     193  }
     194}
     195
    167196
    168197/**
Note: See TracChangeset for help on using the changeset viewer.