///Theme for component action.
///
///@author Federico Gambardella<fedega86@libero.it>
///@param $section
///@param $map
@mixin component-context-menu($section, $map) {
    @if($section == 'context-menu' ) {
        .#{$section} {
            background-color: map-get($map, bg);
            color: map-get($map, color);
            border: map-get($map, border);
            box-shadow: map-get($map, box-shadow);

            li:not(:last-child) {
                border-bottom: map-get($map, border-bottom);
            }
              
            li:hover {
                color: #007bff;
            }
        }

        
    }
}

