forked from indymedia/epicyon
Vertical adjust for publish button
parent
2505dd2ac5
commit
30f44c1299
|
@ -114,6 +114,7 @@
|
|||
--containericons-horizontal-offset: -1%;
|
||||
--likes-count-offset: 5px;
|
||||
--likes-count-offset-mobile: 10px;
|
||||
--publish-button-vertical-offset: 10px;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
@ -1341,7 +1342,8 @@ div.container {
|
|||
min-width: var(--button-width-chars);
|
||||
transition: all 0.5s;
|
||||
cursor: pointer;
|
||||
margin: -20px 0px;
|
||||
margin: 0 0px;
|
||||
margin-top: var(--publish-button-vertical-offset);
|
||||
}
|
||||
.buttonhighlighted {
|
||||
border-radius: var(--button-corner-radius);
|
||||
|
|
1
theme.py
1
theme.py
|
@ -1003,6 +1003,7 @@ def setThemeIndymediaModern(baseDir: str):
|
|||
fontStrItalic = \
|
||||
"url('./fonts/NimbusSanL-italic.otf') format('opentype')"
|
||||
themeParams = {
|
||||
"publish-button-vertical-offset": "10px",
|
||||
"container-button-padding": "0px",
|
||||
"container-button-margin": "0px",
|
||||
"column-right-icon-size": "11%",
|
||||
|
|
Loading…
Reference in New Issue