mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-21 07:16:18 -04:00
Do not inverse QR-code colors on dark mode to fix readability with some readers and the native camera app on Android (fixes #187)
This commit is contained in:
parent
9a7e621af6
commit
433373bad1
2 changed files with 12 additions and 12 deletions
|
@ -1268,9 +1268,9 @@ class PairDeviceDialog extends Dialog {
|
||||||
content: this._getPairUrl(),
|
content: this._getPairUrl(),
|
||||||
width: 150,
|
width: 150,
|
||||||
height: 150,
|
height: 150,
|
||||||
padding: 0,
|
padding: 1,
|
||||||
background: "transparent",
|
background: 'rgb(238,238,238)',
|
||||||
color: `rgb(var(--text-color))`,
|
color: 'rgb(18, 18, 18)',
|
||||||
ecl: "L",
|
ecl: "L",
|
||||||
join: true
|
join: true
|
||||||
});
|
});
|
||||||
|
@ -1619,9 +1619,9 @@ class PublicRoomDialog extends Dialog {
|
||||||
content: this._getShareRoomUrl(),
|
content: this._getShareRoomUrl(),
|
||||||
width: 150,
|
width: 150,
|
||||||
height: 150,
|
height: 150,
|
||||||
padding: 0,
|
padding: 1,
|
||||||
background: "transparent",
|
background: 'rgb(238,238,238)',
|
||||||
color: `rgb(var(--text-color))`,
|
color: 'rgb(18, 18, 18)',
|
||||||
ecl: "L",
|
ecl: "L",
|
||||||
join: true
|
join: true
|
||||||
});
|
});
|
||||||
|
|
|
@ -1270,9 +1270,9 @@ class PairDeviceDialog extends Dialog {
|
||||||
content: this._getPairUrl(),
|
content: this._getPairUrl(),
|
||||||
width: 150,
|
width: 150,
|
||||||
height: 150,
|
height: 150,
|
||||||
padding: 0,
|
padding: 1,
|
||||||
background: "transparent",
|
background: 'rgb(238,238,238)',
|
||||||
color: `rgb(var(--text-color))`,
|
color: 'rgb(18, 18, 18)',
|
||||||
ecl: "L",
|
ecl: "L",
|
||||||
join: true
|
join: true
|
||||||
});
|
});
|
||||||
|
@ -1621,9 +1621,9 @@ class PublicRoomDialog extends Dialog {
|
||||||
content: this._getShareRoomUrl(),
|
content: this._getShareRoomUrl(),
|
||||||
width: 150,
|
width: 150,
|
||||||
height: 150,
|
height: 150,
|
||||||
padding: 0,
|
padding: 1,
|
||||||
background: "transparent",
|
background: 'rgb(238,238,238)',
|
||||||
color: `rgb(var(--text-color))`,
|
color: 'rgb(18, 18, 18)',
|
||||||
ecl: "L",
|
ecl: "L",
|
||||||
join: true
|
join: true
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue