peritus_obsidian-interactiv.../styles.css
2025-03-21 08:15:02 +01:00

26 lines
659 B
CSS

.interactive-ratings-container {
display: inline-block;
cursor: pointer;
}
.interactive-ratings-symbol {
display: inline-block;
transition: transform 0.1s ease;
}
.interactive-ratings-editor-overlay {
display: inline-block;
cursor: pointer;
touch-action: none; /* Prevent browser handling of touch gestures */
-webkit-user-select: none; /* Prevent text selection on iOS */
user-select: none; /* Prevent text selection */
-webkit-touch-callout: none; /* Disable callout on long press */
}
/* Make touch targets larger on mobile */
@media (max-width: 768px) {
.interactive-ratings-symbol {
min-height: 24px;
padding: 2px;
}
}