Login button style

main
Bob Mottram 2020-10-13 18:24:09 +01:00
parent 65acb8aa28
commit 23d94ee614
2 changed files with 7 additions and 3 deletions

View File

@ -86,6 +86,8 @@
--column-right-icon-size: 20%; --column-right-icon-size: 20%;
--newswire-date-color: white; --newswire-date-color: white;
--newswire-voted-background-color: black; --newswire-voted-background-color: black;
--login-button-color: #2965;
--login-button-fg-color: black;
} }
@font-face { @font-face {
@ -579,8 +581,8 @@ input[type=submit] {
} }
.loginButton { .loginButton {
background-color: #2965; background-color: var(--login-button-color);
color: #000; color: var(--login-button-fg-color);
float: none; float: none;
margin: 0px 10px; margin: 0px 10px;
padding: 12px 40px; padding: 12px 40px;

View File

@ -310,7 +310,9 @@ def setThemeIndymedia(baseDir: str):
"column-left-width": "10vw", "column-left-width": "10vw",
"column-center-width": "70vw", "column-center-width": "70vw",
"column-right-width": "20vw", "column-right-width": "20vw",
"column-right-icon-size": "11%" "column-right-icon-size": "11%",
"login-button-color": "red"
"login-button-fg-color": "white"
} }
setThemeFromDict(baseDir, name, themeParams, bgParams) setThemeFromDict(baseDir, name, themeParams, bgParams)