fix text-decoration-thickness not working as part of shortcut on iOS
This commit is contained in:
parent
81d36774b5
commit
33117ff8f8
2 changed files with 9 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
const cacheVersion = 'v5';
|
const cacheVersion = 'v6';
|
||||||
const cacheTitle = `pairdrop-cache-${cacheVersion}`;
|
const cacheTitle = `pairdrop-cache-${cacheVersion}`;
|
||||||
const urlsToCache = [
|
const urlsToCache = [
|
||||||
'index.html',
|
'index.html',
|
||||||
|
|
|
@ -385,11 +385,17 @@ footer .font-body2 {
|
||||||
}
|
}
|
||||||
|
|
||||||
#on-this-network {
|
#on-this-network {
|
||||||
text-decoration: underline solid var(--primary-color) 4px;
|
text-decoration-line: underline;
|
||||||
|
text-decoration-style: solid;
|
||||||
|
text-decoration-color: var(--primary-color);
|
||||||
|
text-decoration-thickness: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#paired-devices {
|
#paired-devices {
|
||||||
text-decoration: underline solid var(--paired-device-color) 4px;
|
text-decoration-line: underline;
|
||||||
|
text-decoration-style: solid;
|
||||||
|
text-decoration-color: var(--paired-device-color);
|
||||||
|
text-decoration-thickness: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Dialog */
|
/* Dialog */
|
||||||
|
|
Loading…
Reference in a new issue