Skip to:
Content

BuddyPress.org

Ticket #7471: 7471.patch

File 7471.patch, 557 bytes (added by hnla, 8 years ago)

Correct Chrome issue with inherited background on select element dropdown

  • src/bp-templates/bp-legacy/css/twentyseventeen.scss

     
    450450
    451451                                li.last {
    452452                                        border-top: 1px solid rgba($border-light, 0.9);
     453
     454                                        select {
     455                                                // we're forced to set a back color as Chrome won't accept inherit/none
     456                                                // whereas FF does
     457                                                option {background-color: #333; }
     458                                        }
    453459                                }
    454460                        }
    455461                }