nuvio-tizen 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/style.css +14 -2
- package/package.json +1 -1
package/css/style.css
CHANGED
|
@@ -59,9 +59,21 @@ html, body {
|
|
|
59
59
|
.card .prog { position: absolute; bottom: 0; left: 0; height: 6px; background: #818cf8; }
|
|
60
60
|
|
|
61
61
|
/* --- Focus state (TV) --- */
|
|
62
|
-
.focusable.focused { border-color: #
|
|
63
|
-
|
|
62
|
+
.focusable.focused { border-color: #a5b4fc; box-shadow: 0 0 0 3px rgba(129,140,248,0.85); }
|
|
63
|
+
|
|
64
|
+
/* Carousel cards: bold, obvious focus — white inner border + indigo ring + lift */
|
|
65
|
+
.card.focusable.focused {
|
|
66
|
+
border-color: #ffffff;
|
|
67
|
+
box-shadow: 0 0 0 5px #6366f1, 0 12px 34px rgba(0,0,0,0.85);
|
|
68
|
+
transform: scale(1.09);
|
|
69
|
+
z-index: 5;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/* Filled selection for list rows / buttons */
|
|
64
73
|
.pill.focusable.focused, .stream.focusable.focused, .ep.focusable.focused { background: #818cf8; color: #0e1117; }
|
|
74
|
+
/* Keep secondary lines readable on the bright selected background */
|
|
75
|
+
.stream.focusable.focused .s-sub, .ep.focusable.focused .ep-sub { color: #17203a; }
|
|
76
|
+
|
|
65
77
|
.gear.focusable.focused { opacity: 1; color: #818cf8; }
|
|
66
78
|
|
|
67
79
|
/* --- Detail screen --- */
|