forked from indymedia/epicyon
Button colors
parent
88734f5aca
commit
327c71c3f7
|
@ -43,6 +43,7 @@
|
||||||
--time-vertical-align: 4px;
|
--time-vertical-align: 4px;
|
||||||
--publish-button-text: #FFFFFF;
|
--publish-button-text: #FFFFFF;
|
||||||
--button-text: #FFFFFF;
|
--button-text: #FFFFFF;
|
||||||
|
--button-selected-text: #FFFFFF;
|
||||||
--publish-button-background: #999;
|
--publish-button-background: #999;
|
||||||
--button-background: #999;
|
--button-background: #999;
|
||||||
--button-background-hover: #777;
|
--button-background-hover: #777;
|
||||||
|
@ -1287,7 +1288,7 @@ aside .toggle-inside li {
|
||||||
border-radius: var(--button-corner-radius);
|
border-radius: var(--button-corner-radius);
|
||||||
background-color: var(--button-selected);
|
background-color: var(--button-selected);
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--button-text);
|
color: var(--button-selected-text);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: var(--font-size-header);
|
font-size: var(--font-size-header);
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
@ -1870,7 +1871,7 @@ aside .toggle-inside li {
|
||||||
border-radius: var(--button-corner-radius);
|
border-radius: var(--button-corner-radius);
|
||||||
background-color: var(--button-selected);
|
background-color: var(--button-selected);
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--button-text);
|
color: var(--button-selected-text);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: var(--font-size-button-mobile);
|
font-size: var(--font-size-button-mobile);
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
|
12
theme.py
12
theme.py
|
@ -676,6 +676,7 @@ def setThemeLCD(baseDir: str):
|
||||||
"button-background": "#33390d",
|
"button-background": "#33390d",
|
||||||
"button-small-background": "#33390d",
|
"button-small-background": "#33390d",
|
||||||
"button-text": "#9fb42b",
|
"button-text": "#9fb42b",
|
||||||
|
"button-selected-text": "#9fb42b",
|
||||||
"publish-button-text": "#9fb42b",
|
"publish-button-text": "#9fb42b",
|
||||||
"button-small-text": "#9fb42b",
|
"button-small-text": "#9fb42b",
|
||||||
"color: #FFFFFE;": "color: #9fb42b;",
|
"color: #FFFFFE;": "color: #9fb42b;",
|
||||||
|
@ -753,6 +754,7 @@ def setThemePurple(baseDir: str):
|
||||||
"button-background": "#ff42a0",
|
"button-background": "#ff42a0",
|
||||||
"button-small-background": "#ff42a0",
|
"button-small-background": "#ff42a0",
|
||||||
"button-text": "white",
|
"button-text": "white",
|
||||||
|
"button-selected-text": "white",
|
||||||
"publish-button-text": "white",
|
"publish-button-text": "white",
|
||||||
"button-small-text": "white",
|
"button-small-text": "white",
|
||||||
"color: #FFFFFE;": "color: #1f152d;",
|
"color: #FFFFFE;": "color: #1f152d;",
|
||||||
|
@ -808,6 +810,7 @@ def setThemeHacker(baseDir: str):
|
||||||
"button-background": "#062200",
|
"button-background": "#062200",
|
||||||
"button-small-background": "#062200",
|
"button-small-background": "#062200",
|
||||||
"button-text": "#00ff00",
|
"button-text": "#00ff00",
|
||||||
|
"button-selected-text": "#00ff00",
|
||||||
"publish-button-text": "#00ff00",
|
"publish-button-text": "#00ff00",
|
||||||
"button-small-text": "#00ff00",
|
"button-small-text": "#00ff00",
|
||||||
"button-corner-radius": "4px",
|
"button-corner-radius": "4px",
|
||||||
|
@ -918,9 +921,12 @@ def setThemeIndymediaModern(baseDir: str):
|
||||||
"newswire-date-color": "grey",
|
"newswire-date-color": "grey",
|
||||||
"button-corner-radius": "7px",
|
"button-corner-radius": "7px",
|
||||||
"timeline-border-radius": "0px",
|
"timeline-border-radius": "0px",
|
||||||
"button-background": "#ddd",
|
"button-background": "#767674",
|
||||||
"button-background-hover": "#eee",
|
"button-background-hover": "#567674",
|
||||||
"button-selected": "#eee",
|
"button-selected": "white",
|
||||||
|
"button-selected-text": "black",
|
||||||
|
"button-selected-text": "white",
|
||||||
|
"button-text": "white",
|
||||||
"hashtag-background-color": "#b2b2b2",
|
"hashtag-background-color": "#b2b2b2",
|
||||||
"hashtag-fg-color": "white",
|
"hashtag-fg-color": "white",
|
||||||
"publish-button-background": "#25408f",
|
"publish-button-background": "#25408f",
|
||||||
|
|
Loading…
Reference in New Issue