maybe this one but probably not
This commit is contained in:
parent
afa3450eef
commit
d84b3d3453
4 changed files with 23 additions and 4 deletions
|
@ -199,8 +199,8 @@
|
||||||
"yarn": "^1.3"
|
"yarn": "^1.3"
|
||||||
},
|
},
|
||||||
"lbrySettings": {
|
"lbrySettings": {
|
||||||
"lbrynetDaemonVersion": "0.38.1",
|
"lbrynetDaemonVersion": "0.38.3",
|
||||||
"lbrynetDaemonUrlTemplate": "http://build.lbry.io/daemon/build-11443_commit-eae4ed7_branch-master/lbrynet-OSNAME.zip",
|
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip",
|
||||||
"lbrynetDaemonDir": "static/daemon",
|
"lbrynetDaemonDir": "static/daemon",
|
||||||
"lbrynetDaemonFileName": "lbrynet"
|
"lbrynetDaemonFileName": "lbrynet"
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,7 +77,7 @@ function ClaimPreview(props: Props) {
|
||||||
|
|
||||||
const isChannel = isValid ? parseURI(uri).isChannel : false;
|
const isChannel = isValid ? parseURI(uri).isChannel : false;
|
||||||
let shouldHide =
|
let shouldHide =
|
||||||
placeholder !== 'loading' && ((abandoned && !showPublishLink) || (!claimIsMine && obscureNsfw && nsfw) || !claim);
|
placeholder !== 'loading' && ((abandoned && !showPublishLink) || (!claimIsMine && obscureNsfw && nsfw));
|
||||||
|
|
||||||
// This will be replaced once blocking is done at the wallet server level
|
// This will be replaced once blocking is done at the wallet server level
|
||||||
if (claim && !shouldHide && blackListedOutpoints) {
|
if (claim && !shouldHide && blackListedOutpoints) {
|
||||||
|
|
|
@ -9,6 +9,13 @@ form {
|
||||||
@extend .button--primary;
|
@extend .button--primary;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button--inverse {
|
||||||
|
&:not(:hover),
|
||||||
|
&:hover {
|
||||||
|
// @extend .button--inverse;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
|
@ -223,6 +230,7 @@ fieldset-section {
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
|
border-right: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -243,6 +251,11 @@ fieldset-section {
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
border-color: $lbry-black;
|
border-color: $lbry-black;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|
||||||
|
[data-mode='dark'] & {
|
||||||
|
border-color: $lbry-gray-5;
|
||||||
|
color: $lbry-white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -629,5 +629,11 @@
|
||||||
"Enter Reward Code": "Enter Reward Code",
|
"Enter Reward Code": "Enter Reward Code",
|
||||||
"Redeem a custom reward code for LBC": "Redeem a custom reward code for LBC",
|
"Redeem a custom reward code for LBC": "Redeem a custom reward code for LBC",
|
||||||
"Redeem": "Redeem",
|
"Redeem": "Redeem",
|
||||||
"Code": "Code"
|
"Code": "Code",
|
||||||
|
"Nothing here": "Nothing here",
|
||||||
|
"Publish something and claim this spot!": "Publish something and claim this spot!",
|
||||||
|
"Publish to": "Publish to",
|
||||||
|
"Help Us Out": "Help Us Out",
|
||||||
|
"Currently, there is no automatic backup. If you lose access to these files, you will lose your credits.": "Currently, there is no automatic backup. If you lose access to these files, you will lose your credits.",
|
||||||
|
"For more details on backing up and best practices": "For more details on backing up and best practices"
|
||||||
}
|
}
|
Loading…
Reference in a new issue