diff --git a/client-v3/src/components/show/live/ScriptLineViewer.vue b/client-v3/src/components/show/live/ScriptLineViewer.vue
index 3c8a10ea..063772a3 100644
--- a/client-v3/src/components/show/live/ScriptLineViewer.vue
+++ b/client-v3/src/components/show/live/ScriptLineViewer.vue
@@ -64,6 +64,7 @@
@@ -170,7 +171,7 @@
@@ -439,6 +440,12 @@ onUnmounted(() => {
padding: 0.2rem;
}
+.line-row:has(.add-cue-btn:hover) {
+ background-color: rgba(255, 255, 255, 0.06);
+ border-radius: 4px;
+ transition: background-color 0.15s ease;
+}
+
.stage-direction {
margin-top: 1rem;
margin-bottom: 1rem;
diff --git a/client-v3/src/components/show/live/ScriptLineViewerCompact.vue b/client-v3/src/components/show/live/ScriptLineViewerCompact.vue
index a5d35085..bb088382 100644
--- a/client-v3/src/components/show/live/ScriptLineViewerCompact.vue
+++ b/client-v3/src/components/show/live/ScriptLineViewerCompact.vue
@@ -56,7 +56,7 @@
-
+
-
+
@@ -113,7 +115,9 @@
cols="1"
class="cue-add-column d-flex align-items-center justify-content-center"
>
-
+
@@ -124,7 +128,9 @@
cols="1"
class="cue-add-column d-flex align-items-center justify-content-center"
>
-
+
@@ -337,4 +343,10 @@ onUnmounted(() => {
.cue-add-column {
border-left: 0.1rem solid #3498db;
}
+
+.line-row:has(.add-cue-btn:hover) {
+ background-color: rgba(255, 255, 255, 0.06);
+ border-radius: 4px;
+ transition: background-color 0.15s ease;
+}
diff --git a/client/src/vue_components/show/live/ScriptLineViewer.vue b/client/src/vue_components/show/live/ScriptLineViewer.vue
index a0342197..0996c6ee 100644
--- a/client/src/vue_components/show/live/ScriptLineViewer.vue
+++ b/client/src/vue_components/show/live/ScriptLineViewer.vue
@@ -66,6 +66,7 @@
@@ -175,7 +176,7 @@
@@ -393,6 +394,12 @@ export default defineComponent({
padding: 0.2rem;
}
+.line-row:has(.add-cue-btn:hover) {
+ background-color: rgba(255, 255, 255, 0.06);
+ border-radius: 4px;
+ transition: background-color 0.15s ease;
+}
+
.stage-direction {
margin-top: 1rem;
margin-bottom: 1rem;
diff --git a/client/src/vue_components/show/live/ScriptLineViewerCompact.vue b/client/src/vue_components/show/live/ScriptLineViewerCompact.vue
index c447b9b7..81f198df 100644
--- a/client/src/vue_components/show/live/ScriptLineViewerCompact.vue
+++ b/client/src/vue_components/show/live/ScriptLineViewerCompact.vue
@@ -70,7 +70,7 @@
-
+
-
+
@@ -141,7 +141,7 @@
cols="1"
class="cue-add-column d-flex align-items-center justify-content-center"
>
-
+
@@ -158,7 +158,7 @@
cols="1"
class="cue-add-column d-flex align-items-center justify-content-center"
>
-
+
@@ -327,4 +327,10 @@ export default defineComponent({
.cue-add-column {
border-left: 0.1rem solid #3498db;
}
+
+.line-row:has(.add-cue-btn:hover) {
+ background-color: rgba(255, 255, 255, 0.06);
+ border-radius: 4px;
+ transition: background-color 0.15s ease;
+}