add compact theme with smaller font
This commit is contained in:
parent
22387de225
commit
181c8285dd
2 changed files with 23 additions and 1 deletions
|
@ -2428,7 +2428,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function theme_valid($theme) {
|
function theme_valid($theme) {
|
||||||
if ($theme == "default.php" || $theme == "night.css") return true; // needed for array_filter
|
$bundled_themes = [ "default.php", "night.css", "compact.css" ];
|
||||||
|
|
||||||
|
if (in_array($theme, $bundled_themes)) return true;
|
||||||
|
|
||||||
$file = "themes/" . basename($theme);
|
$file = "themes/" . basename($theme);
|
||||||
|
|
||||||
if (!file_exists($file)) $file = "themes.local/" . basename($theme);
|
if (!file_exists($file)) $file = "themes.local/" . basename($theme);
|
||||||
|
|
19
themes/compact.css
Normal file
19
themes/compact.css
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* supports-version:17.1 */
|
||||||
|
|
||||||
|
@import "default.php";
|
||||||
|
|
||||||
|
body,
|
||||||
|
.claro .dijitMenu .dijitMenuItemLabel,
|
||||||
|
.claro .cdmContentInner,
|
||||||
|
.claro #content-insert,
|
||||||
|
.claro .cdm .cdmContent,
|
||||||
|
.claro .postReply .postContent {
|
||||||
|
font-size : 12px ! important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.claro .postReply .postHeader,
|
||||||
|
.claro #floatingTitle a.title,
|
||||||
|
.claro .cdm .title {
|
||||||
|
font-size : 13px ! important;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue