Making WordPress.org

Changeset 3532


Ignore:
Timestamp:
06/22/2016 09:43:56 AM (9 years ago)
Author:
obenland
Message:

Plugin Directory: Let toggled menu overlap content.

See #1719.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style-rtl.css

    r3526 r3532  
    12311231--------------------------------------------------------------*/
    12321232.main-navigation {
     1233  background: #0073aa;
    12331234  clear: both;
    1234 }
    1235 
    1236 .main-navigation.toggled {
    1237   padding: 16px 0 0;
    1238   padding: 1rem 0 0;
     1235  right: 0;
     1236  position: absolute;
     1237  top: 60px;
     1238  width: 100%;
    12391239}
    12401240
     
    13161316  width: 3.5rem;
    13171317  position: absolute;
    1318   top: 2px;
     1318  top: -58px;
    13191319  left: 1rem;
    13201320}
     
    13301330  .main-navigation {
    13311331    float: left;
     1332    position: initial;
     1333    width: initial;
    13321334  }
    13331335  .main-navigation.toggled {
     
    18041806  border-radius: 2px 0 0 2px;
    18051807  display: none;
    1806   height: 31px;
    18071808  margin-right: -6px;
    18081809  vertical-align: bottom;
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style.css

    r3526 r3532  
    12311231--------------------------------------------------------------*/
    12321232.main-navigation {
     1233  background: #0073aa;
    12331234  clear: both;
    1234 }
    1235 
    1236 .main-navigation.toggled {
    1237   padding: 16px 0 0;
    1238   padding: 1rem 0 0;
     1235  left: 0;
     1236  position: absolute;
     1237  top: 60px;
     1238  width: 100%;
    12391239}
    12401240
     
    13161316  width: 3.5rem;
    13171317  position: absolute;
    1318   top: 2px;
     1318  top: -58px;
    13191319  right: 1rem;
    13201320}
     
    13301330  .main-navigation {
    13311331    float: right;
     1332    position: initial;
     1333    width: initial;
    13321334  }
    13331335  .main-navigation.toggled {
     
    18041806  border-radius: 0 2px 2px 0;
    18051807  display: none;
    1806   height: 31px;
    18071808  margin-left: -6px;
    18081809  vertical-align: bottom;
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/navigation/_menus.scss

    r3418 r3532  
    22
    33.main-navigation {
     4    background: $color__wp-blue;
    45    clear: both;
    5 
    6     &.toggled {
    7         padding: 16px 0 0;
    8         padding: 1rem 0 0;
    9     }
     6    left: 0;
     7    position: absolute;
     8    top: 60px;
     9    width: 100%;
    1010
    1111    ul {
     
    106106    width: 3.5rem;
    107107    position: absolute;
    108     top: 2px;
     108    top: -58px;
    109109    right: 1rem;
    110110
     
    120120    .main-navigation {
    121121        float: right;
     122        position: initial;
     123        width: initial;
    122124
    123125        &.toggled {
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/site/_header.scss

    r3459 r3532  
    130130            border-radius: 0 2px 2px 0;
    131131            display: none;
    132             height: 31px;
    133132            margin-left: -6px;
    134133            vertical-align: bottom;
Note: See TracChangeset for help on using the changeset viewer.