diff --git a/epicyon-profile.css b/epicyon-profile.css index 804366bde..9f6af6fa3 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -67,6 +67,9 @@ --column-left-width: 9vw; --column-center-width: 80vw; --column-right-width: 9vw; + --column-left-header-background: #555; + --column-left-header-color: #fff; + --column-left-header-size: 10px; } @font-face { @@ -130,6 +133,15 @@ h1 { color: var(--title-color); } +h3.linksHeader { + background-color: var(--column-left-header-background); + color: var(--column-left-header-color); + font-size: var(--column-left-header-size); + text-transform: uppercase; + padding: 4px; + border: none; +} + a, u { color: var(--main-fg-color); } diff --git a/theme.py b/theme.py index 66f6265f1..4581286f2 100644 --- a/theme.py +++ b/theme.py @@ -264,6 +264,9 @@ def setThemeIndymedia(baseDir: str): "font-size4": "24px", "font-size5": "22px", "main-bg-color": "black", + "column-left-header-color": "#fff", + "column-left-header-background": "#555", + "column-left-header-size": "10px", "column-left-color": "#003366", "text-entry-background": "#0f0d10", "link-bg-color": "black", diff --git a/webinterface.py b/webinterface.py index f0cc51bbe..8d06ce2a5 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5201,7 +5201,8 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, if lineStr.startswith('#') or lineStr.startswith('*'): lineStr = lineStr[1:].strip() htmlStr += \ - '

' + lineStr + '

\n' + '

' + \ + lineStr + '

\n' else: htmlStr += \ '

' + lineStr + '

\n'