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;
const style = {
redTitle:
'color: red; font-size: 50px; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;, font-weight: bold;',
normalText: 'font-size: 24px;',
'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: 18px;',
redText:
'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) {
return false;
}
// console.log("uri", uri)
// console.log("channel", channel)
const unreadForChannel = unreadByChannel[`lbry://${channel}`];
if (unreadForChannel) {
return unreadForChannel.uris.includes(uri);

View file

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