1rosehip / jplist

jPList jQuery Data Grid Controls is a flexible jQuery plugin for sorting, pagination and filtering of any HTML structure (DIVs, UL/LI, tables, etc).
http://jplist.com
Other
437 stars 177 forks source link

Arrow color #175

Closed marcus-andersson closed 8 years ago

marcus-andersson commented 8 years ago

Hi, How do I change the color of the arrow in a dropdown menu?

marcus-andersson commented 8 years ago

Clarification: It is regarding a dropdown menu to jPlist filtration.

1rosehip commented 8 years ago
You can use the following css:

/**
* new arrow color is green
*/
.jplist-drop-down .jplist-dd-panel:after {
    color: green;
}

/**
* new arrow hover color is red
*/
.jplist-drop-down:hover .jplist-dd-panel:after {
    color: red;
}