Allow themes in mobile mode

Cleanup themes and drop the template.less
This commit is contained in:
djmaze 2021-02-06 23:37:53 +01:00
parent 4f1fc5f44b
commit 48424e213b
34 changed files with 722 additions and 741 deletions

View file

@ -15,9 +15,8 @@ html, body {
body {
background-color: var(--main-bg-color, #e3e3e3);
background-image: var(--main-bg-image);
background-size: var(--main-bg-size);
color: var(--main-color, #000);
color: var(--main-color, #333);
-webkit-touch-callout: none;
@ -28,6 +27,15 @@ body {
right: 0;
}
/*
.rl-mobile / .no-mobile
*/
@media screen and (min-width: 1000px) {
body {
background-image: var(--main-bg-image);
}
}
textarea {
resize: none;
}
@ -39,9 +47,6 @@ option:disabled {
*, select:focus {
outline: none;
}
html.mobile *, html.rl-mobile * {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}