Skip to:
Content

BuddyPress.org

Ticket #8807: 8807.patch

File 8807.patch, 1.8 KB (added by baroliyamayur, 2 years ago)

Remove extra content issue in WPadminbar in responsive design

  • buddypress.org/public_html/wp-content/themes/bb-base/style.css

     
    18011801        }
    18021802}
    18031803
     1804@media screen and (max-width: 782px){
     1805    #wpadminbar #wp-toolbar #wp-admin-bar-my-account a.ab-item {
     1806        font-size: 0;
     1807    }
     1808}
     1809 No newline at end of file
  • buddypress.org/public_html/wp-content/themes/codex-buddypress-org/screen.css

     
    120120  overflow: auto;
    121121  color: #555;
    122122  font-family: 'Source Sans Pro', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
     123  box-sizing: border-box;
     124    max-width: 100%;
    123125}
    124126.footer-meta-wrap .footer-meta .col-half {
    125127  float: left;
    126128  width: 50%;
     129  box-sizing: border-box;
    127130}
    128131.footer-meta-wrap .footer-meta h3.title {
    129132  font-size: 16px;
  • jobs.wordpress.net/public_html/wp-content/themes/jobswp/style.css

     
    16161616        }
    16171617}
    16181618
     1619.search-form .search-field {
     1620        box-sizing: border-box;
     1621}
     1622
     1623@media only screen and (max-width: 600px){
     1624    .main-navigation li {
     1625        margin-bottom: 5px;
     1626        display: inline-block;
     1627        float: none;
     1628    }
     1629}
     1630 No newline at end of file