style links

This commit is contained in:
Zack Rauen 2017-11-01 14:52:57 -04:00
parent 639dc5f762
commit 484fd9148a
2 changed files with 12 additions and 3 deletions

View File

@ -2110,6 +2110,14 @@
opacity: 0.4;
}
.bda-slist .bda-footer a {
color: #7289da;
}
.bda-slist .bda-footer a:hover {
text-decoration: underline;
}
/*BD BLUE*/
.bd-blue .bd-pfbtn { background: #3a71c1; }
@ -2336,4 +2344,5 @@
.bd-blue *[style*="border-color: rgb(114, 137, 218)"] { border-color: #3a71c1 !important; }
.bd-blue *[style*="background-color: rgb(114, 137, 218)"] { background-color: #3a71c1 !important; }
.bd-blue .bda-slist .bda-footer button {background-color: #3a71c1;}
.bd-blue .bda-slist .bda-footer a {color: #3a71c1;}

View File

@ -2219,8 +2219,8 @@ class V2C_PluginCard extends BDV2.reactComponent {
let author = plugin.getAuthor();
let description = plugin.getDescription();
let version = plugin.getVersion();
let website = bdplugins[plugin.getName()].website;
let source = bdplugins[plugin.getName()].source;
let website = bdplugins[name].website;
let source = bdplugins[name].source;
let { settingsPanel } = this;
if (this.state.settings) {
@ -2272,7 +2272,7 @@ class V2C_PluginCard extends BDV2.reactComponent {
showSettings() {
if (!this.settingsPanel) return;
this.setState({'settings': true});
BDV2.reactDom.findDOMNode(this).scrollIntoView({
BDV2.reactDom.findDOMNode(this).scrollIntoViewIfNeeded({
behavior: "smooth", // or "auto" or "instant"
block: "start" // or "end"
});