forked from indymedia/epicyon
Login button style
parent
65acb8aa28
commit
23d94ee614
|
@ -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;
|
||||||
|
|
4
theme.py
4
theme.py
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue