Unverified Commit 79179fe5 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1561 from ethereum/tinyFixDarkTheme

Tiny fix for dark theme
parents 096544d1 b27700e0
...@@ -568,7 +568,7 @@ const css = csjs` ...@@ -568,7 +568,7 @@ const css = csjs`
margin: 15px 15px 10px 0; margin: 15px 15px 10px 0;
} }
.copyButton { .copyButton {
${styles.rightPanel.compileTab.button_Details}; ${styles.rightPanel.compileTab.button_Publish};
padding: 0 7px; padding: 0 7px;
min-width: 50px; min-width: 50px;
width: auto; width: auto;
......
...@@ -545,13 +545,13 @@ function styleGuideDark () { ...@@ -545,13 +545,13 @@ function styleGuideDark () {
button_Details: appProperties.uiElements.button({ button_Details: appProperties.uiElements.button({
BackgroundColor: appProperties.secondaryButton_BackgroundColor, BackgroundColor: appProperties.secondaryButton_BackgroundColor,
BorderColor: appProperties.secondaryButton_BorderColor, BorderColor: appProperties.secondaryButton_BorderColor,
Color: appProperties.secondaryButton_TextColor Color: appProperties.primaryButton_TextColor
}), }),
button_Publish: appProperties.uiElements.button({ button_Publish: appProperties.uiElements.button({
BackgroundColor: appProperties.secondaryButton_BackgroundColor, BackgroundColor: appProperties.secondaryButton_BackgroundColor,
BorderColor: appProperties.secondaryButton_BorderColor, BorderColor: appProperties.secondaryButton_BorderColor,
Color: appProperties.secondaryButton_TextColor Color: appProperties.teriaryButton_TextColor
}), }),
dropdown_CompileContract: appProperties.uiElements.dropdown({ dropdown_CompileContract: appProperties.uiElements.dropdown({
...@@ -561,7 +561,7 @@ function styleGuideDark () { ...@@ -561,7 +561,7 @@ function styleGuideDark () {
}), }),
box_CompileContainer: appProperties.uiElements.solidBorderBox({ box_CompileContainer: appProperties.uiElements.solidBorderBox({
BackgroundColor: appProperties.quaternary_BackgroundColor, BackgroundColor: appProperties.primary_BackgroundColor,
BorderColor: appProperties.solidBorderBox_BackgroundColor, BorderColor: appProperties.solidBorderBox_BackgroundColor,
Color: appProperties.solidBorderBox_TextColor Color: appProperties.solidBorderBox_TextColor
}), }),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment