Login button style

merge-requests/8/head
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%;
--newswire-date-color: white;
--newswire-voted-background-color: black;
--login-button-color: #2965;
--login-button-fg-color: black;
}
@font-face {
@ -579,8 +581,8 @@ input[type=submit] {
}
.loginButton {
background-color: #2965;
color: #000;
background-color: var(--login-button-color);
color: var(--login-button-fg-color);
float: none;
margin: 0px 10px;
padding: 12px 40px;

View File

@ -310,7 +310,9 @@ def setThemeIndymedia(baseDir: str):
"column-left-width": "10vw",
"column-center-width": "70vw",
"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)