mirror of
https://codeberg.org/teddit/teddit
synced 2025-02-16 20:20:36 +01:00
Merge pull request 'Fix theme select dropdown on invalid cookie value, add height to topbar icon' (#364) from kazuki/teddit:main into main
Reviewed-on: https://codeberg.org/teddit/teddit/pulls/364
This commit is contained in:
commit
ee7068a88c
@ -84,6 +84,7 @@ nav .nav-item.left a {
|
||||
}
|
||||
nav .nav-item.left img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
vertical-align: bottom;
|
||||
margin: 0 7px 0 0;
|
||||
}
|
||||
|
@ -47,30 +47,36 @@ html
|
||||
option(value="dark") Dark
|
||||
option(value="sepia") Sepia
|
||||
option(value="nord") Nord
|
||||
if(user_preferences.theme == 'white')
|
||||
else if(user_preferences.theme == 'white')
|
||||
option(value="auto") Auto
|
||||
option(value="white", selected="selected") White
|
||||
option(value="dark") Dark
|
||||
option(value="sepia") Sepia
|
||||
option(value="nord") Nord
|
||||
if(user_preferences.theme === 'dark')
|
||||
else if(user_preferences.theme === 'dark')
|
||||
option(value="auto") Auto
|
||||
option(value="white") White
|
||||
option(value="dark", selected="selected") Dark
|
||||
option(value="sepia") Sepia
|
||||
option(value="nord") Nord
|
||||
if(user_preferences.theme === 'sepia')
|
||||
else if(user_preferences.theme === 'sepia')
|
||||
option(value="auto") Auto
|
||||
option(value="white") White
|
||||
option(value="dark") Dark
|
||||
option(value="sepia", selected="selected") Sepia
|
||||
option(value="nord") Nord
|
||||
if(user_preferences.theme === 'nord')
|
||||
else if(user_preferences.theme === 'nord')
|
||||
option(value="auto") Auto
|
||||
option(value="white") White
|
||||
option(value="dark") Dark
|
||||
option(value="sepia") Sepia
|
||||
option(value="nord", selected="selected") Nord
|
||||
else
|
||||
option(value="auto") Auto
|
||||
option(value="white") White
|
||||
option(value="dark") Dark
|
||||
option(value="sepia") Sepia
|
||||
option(value="nord") Nord
|
||||
.setting
|
||||
label(for="flairs") Show flairs:
|
||||
if(!user_preferences.flairs || user_preferences.flairs == 'true')
|
||||
|
Loading…
x
Reference in New Issue
Block a user