forked from indymedia/epicyon
Button text color when hovering
parent
b444ce4f9d
commit
f7ee4e9dfa
|
@ -47,6 +47,7 @@
|
|||
--publish-button-background: #999;
|
||||
--button-background: #999;
|
||||
--button-background-hover: #777;
|
||||
--button-text-hover: white;
|
||||
--button-selected: #666;
|
||||
--button-highlighted: green;
|
||||
--button-fg-highlighted: #FFFFFF;
|
||||
|
@ -305,6 +306,7 @@ a:focus {
|
|||
|
||||
.buttonunfollow:hover {
|
||||
background-color: var(--button-background-hover);
|
||||
color: var(--button-text-hover);
|
||||
}
|
||||
|
||||
.followRequestHandle {
|
||||
|
|
13
theme.py
13
theme.py
|
@ -326,6 +326,7 @@ def setThemeIndymediaClassic(baseDir: str):
|
|||
"hashtag-vertical-spacing3": "100px",
|
||||
"hashtag-vertical-spacing4": "150px",
|
||||
"button-background-hover": "darkblue",
|
||||
"button-text-hover": "white",
|
||||
"publish-button-background": "#ff9900",
|
||||
"publish-button-text": "#003366",
|
||||
"button-background": "#003366",
|
||||
|
@ -424,6 +425,7 @@ def setThemeNight(baseDir: str):
|
|||
"hashtag-vertical-spacing3": "100px",
|
||||
"hashtag-vertical-spacing4": "150px",
|
||||
"button-background-hover": "#0481f5",
|
||||
"button-text-hover": "#0f0d10",
|
||||
"publish-button-background": "#07447c",
|
||||
"button-background": "#07447c",
|
||||
"button-selected": "#0481f5",
|
||||
|
@ -484,6 +486,7 @@ def setThemeStarlight(baseDir: str):
|
|||
"hashtag-vertical-spacing3": "100px",
|
||||
"hashtag-vertical-spacing4": "150px",
|
||||
"button-background-hover": "#a9282c",
|
||||
"button-text-hover": "#ffc4bc",
|
||||
"publish-button-background": "#69282c",
|
||||
"button-background": "#69282c",
|
||||
"button-small-background": "darkblue",
|
||||
|
@ -550,6 +553,7 @@ def setThemeHenge(baseDir: str):
|
|||
"hashtag-vertical-spacing3": "100px",
|
||||
"hashtag-vertical-spacing4": "150px",
|
||||
"button-background-hover": "#444",
|
||||
"button-text-hover": "white",
|
||||
"publish-button-background": "#222",
|
||||
"button-background": "#222",
|
||||
"button-selected": "black",
|
||||
|
@ -672,6 +676,7 @@ def setThemeLCD(baseDir: str):
|
|||
"button-selected": "black",
|
||||
"button-highlighted": "green",
|
||||
"button-background-hover": "#a3390d",
|
||||
"button-text-hover": "#33390d",
|
||||
"publish-button-background": "#33390d",
|
||||
"button-background": "#33390d",
|
||||
"button-small-background": "#33390d",
|
||||
|
@ -750,6 +755,7 @@ def setThemePurple(baseDir: str):
|
|||
"main-visited-color": "#f93bb0",
|
||||
"button-selected": "#c042a0",
|
||||
"button-background-hover": "#af42a0",
|
||||
"button-text-hover": "#f98bb0",
|
||||
"publish-button-background": "#ff42a0",
|
||||
"button-background": "#ff42a0",
|
||||
"button-small-background": "#ff42a0",
|
||||
|
@ -806,6 +812,7 @@ def setThemeHacker(baseDir: str):
|
|||
"main-visited-color": "#3c8234",
|
||||
"button-selected": "#063200",
|
||||
"button-background-hover": "#a62200",
|
||||
"button-text-hover": "#00ff00",
|
||||
"publish-button-background": "#062200",
|
||||
"button-background": "#062200",
|
||||
"button-small-background": "#062200",
|
||||
|
@ -924,15 +931,15 @@ def setThemeIndymediaModern(baseDir: str):
|
|||
"newswire-date-color": "grey",
|
||||
"timeline-border-radius": "0px",
|
||||
"button-background": "#767674",
|
||||
"button-background-hover": "#567674",
|
||||
"button-background-hover": "#555",
|
||||
"button-text-hover": "black",
|
||||
"button-selected": "white",
|
||||
"button-selected-text": "black",
|
||||
"button-text": "white",
|
||||
"hashtag-background-color": "#b2b2b2",
|
||||
"hashtag-fg-color": "white",
|
||||
"publish-button-background": "#25408f",
|
||||
"publish-button-text": "white",
|
||||
"hashtag-background-color": "lightblue",
|
||||
"hashtag-background-color": "#b2b2b2",
|
||||
"focus-color": "grey",
|
||||
"font-size-button-mobile": "26px",
|
||||
"font-size": "32px",
|
||||
|
|
Loading…
Reference in New Issue