/*some shadow effects on text label*/
.nemo-desktop.nemo-canvas-item {
text-shadow: 1px 1px 2px black;
}
/*retain the same text shadow when on hover and do not affect slight highlight, without showing any color as a background*/
.nemo-desktop.nemo-canvas-item:hover {
background-color: alpha(@theme_selected_bg_color, 0.00);
text-shadow: 1px 1px 2px black;
/*background-image: none;*/
}
/*when icon selected add a blue hue background*/
.nemo-desktop.nemo-canvas-item:selected {
background-color: alpha(0, 178, 246, 0.2);
text-shadow: 1px 1px 2px black;
/*background-image: none;*/
}