relay-companion 0.1.1 → 0.1.2
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/overlay/inbox.html +16 -0
- package/package.json +1 -1
package/overlay/inbox.html
CHANGED
|
@@ -66,6 +66,21 @@
|
|
|
66
66
|
.card.has-unread .sq0 { fill:var(--accent); }
|
|
67
67
|
.word { font-family:var(--serif); font-size:19px; font-weight:500; letter-spacing:-.01em; color:var(--ink); line-height:1; }
|
|
68
68
|
.spacer { flex:1 1 auto; }
|
|
69
|
+
.minimize-hint {
|
|
70
|
+
margin-right:10px;
|
|
71
|
+
font-size:11px;
|
|
72
|
+
font-weight:500;
|
|
73
|
+
color:var(--muted-3);
|
|
74
|
+
line-height:1;
|
|
75
|
+
transition:color .18s var(--settle), opacity .18s var(--settle), width .18s var(--settle), margin .18s var(--settle);
|
|
76
|
+
}
|
|
77
|
+
.lockup:hover .minimize-hint { color:var(--muted-2); }
|
|
78
|
+
.card.collapsed .minimize-hint {
|
|
79
|
+
width:0;
|
|
80
|
+
margin-right:0;
|
|
81
|
+
overflow:hidden;
|
|
82
|
+
opacity:0;
|
|
83
|
+
}
|
|
69
84
|
.count {
|
|
70
85
|
font-family:var(--mono); font-size:13px; font-weight:500; font-variant-numeric:tabular-nums;
|
|
71
86
|
color:var(--accent); line-height:1; transition:color .3s var(--settle);
|
|
@@ -381,6 +396,7 @@
|
|
|
381
396
|
</svg>
|
|
382
397
|
<span class="word">relay</span>
|
|
383
398
|
<span class="spacer"></span>
|
|
399
|
+
<span class="minimize-hint">Minimize</span>
|
|
384
400
|
<span class="count zero" id="count">0</span>
|
|
385
401
|
</div>
|
|
386
402
|
|