Skip to:
Content

BuddyPress.org

Ticket #7314: 7314-css-workaround.patch

File 7314-css-workaround.patch, 1.2 KB (added by hnla, 7 years ago)
  • src/bp-templates/bp-legacy/css/twentysixteen.css

     
    5858* @section 1.0 - Theme - Structural Elements. overrides, Globals
    5959*-------------------------------------------------------------------------------
    6060*/
     61@media screen and (max-width: 905px) {
     62        html.js body.no-js .site-header-menu {
     63                display: none;
     64        }
     65}
     66
    6167.buddypress div.clear {
    6268        display: none;
    6369}
  • src/bp-templates/bp-legacy/css/twentysixteen.scss

     
    235235*-------------------------------------------------------------------------------
    236236*/
    237237
     238@media screen and (max-width: 905px) {
    238239
     240        html.js {
     241                body.no-js {
     242                        .site-header-menu {
     243                                display: none;
     244                        }
     245                }
     246        }
    239247
     248}
     249
    240250.buddypress {
    241251        // Remove any empty clearing elements, CSS provides clearing.
    242252        div.clear {display: none;}