mirror of
https://github.com/peritus/obsidian-interactive-ratings.git
synced 2026-07-22 12:20:31 +00:00
26 lines
659 B
CSS
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;
|
|
}
|
|
}
|