This commit is contained in:
Sean Yesmunt 2018-11-28 18:21:33 -05:00
parent 78bb2547a8
commit 006ff3fd43
3 changed files with 4 additions and 5 deletions

View file

@ -4,8 +4,8 @@ export default function doLogWarningConsoleMessage(activeOnDev = false) {
if (isDev && !activeOnDev) return; if (isDev && !activeOnDev) return;
const style = { const style = {
redTitle: redTitle:
'color: red; font-size: 50px; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;, font-weight: bold;', 'color: red; font-size: 36px; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;, font-weight: bold;',
normalText: 'font-size: 24px;', normalText: 'font-size: 18px;',
redText: redText:
'color: red; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; font-size: 24px;', 'color: red; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; font-size: 24px;',
}; };

View file

@ -263,8 +263,7 @@ export const makeSelectIsNew = uri =>
if (!isSubscribed) { if (!isSubscribed) {
return false; return false;
} }
// console.log("uri", uri)
// console.log("channel", channel)
const unreadForChannel = unreadByChannel[`lbry://${channel}`]; const unreadForChannel = unreadByChannel[`lbry://${channel}`];
if (unreadForChannel) { if (unreadForChannel) {
return unreadForChannel.uris.includes(uri); return unreadForChannel.uris.includes(uri);

View file

@ -215,6 +215,6 @@ html[data-theme='dark'] {
// File Viewer // File Viewer
// //
.document-viewer { .document-viewer {
background-color: rgba($lbry-gray-5, 0.2); background-color: transparent;
} }
} }