mirror of
https://github.com/RobinLinus/snapdrop.git
synced 2025-05-16 07:30:12 -07:00
Fix link hover in receive text dialog
This commit is contained in:
parent
830367651b
commit
9a4b7ffb1a
@ -61,7 +61,7 @@
|
|||||||
<svg class="icon logo">
|
<svg class="icon logo">
|
||||||
<use xlink:href="#wifi-tethering" />
|
<use xlink:href="#wifi-tethering" />
|
||||||
</svg>
|
</svg>
|
||||||
<div id="displayName">The easiest way to transfer data across devices</div>
|
<div id="displayName" placeholder="The easiest way to transfer data across devices"></div>
|
||||||
<div class="font-body2">You can be discovered by everyone on this network</div>
|
<div class="font-body2">You can be discovered by everyone on this network</div>
|
||||||
</footer>
|
</footer>
|
||||||
<!-- Receive Dialog -->
|
<!-- Receive Dialog -->
|
||||||
|
@ -369,7 +369,13 @@ x-dialog a{
|
|||||||
user-select: all;
|
user-select: all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#receiveTextDialog #text a {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#receiveTextDialog #text a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
/* Button */
|
/* Button */
|
||||||
|
|
||||||
@ -552,6 +558,11 @@ input {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Generic placeholder */
|
||||||
|
[placeholder]:empty:before {
|
||||||
|
content: attr(placeholder);
|
||||||
|
}
|
||||||
|
|
||||||
/* Toast */
|
/* Toast */
|
||||||
|
|
||||||
.toast-container {
|
.toast-container {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user