
/**
 * Marker Icons - Map marker icon styles for different severity levels
 *
 * Note: Defines background images for normal, critical, major, minor, and warning markers.
 *
 * Intentionally hardcoded values:
 * - None - only contains background-image URLs
 */

// Local path definition for correct relative path from styles/icons/
@marker-icon-path: if(@use-relative-paths, '../../img', 'img');

.normal-marker-icon {
  background-image: url('@{marker-icon-path}/normal-marker-icon.png');
}

.critical-marker-icon {
  background-image: url('@{marker-icon-path}/critical-marker-icon.png');
}

.major-marker-icon {
  background-image: url('@{marker-icon-path}/major-marker-icon.png');
}

.minor-marker-icon {
  background-image: url('@{marker-icon-path}/minor-marker-icon.png');
}

.warning-marker-icon {
  background-image: url('@{marker-icon-path}/warning-marker-icon.png');
}
