This commit is contained in:
simon 2026-09-08 15:31:01 +02:00
parent 4f87d76988
commit 212e5a0aaf
2 changed files with 2 additions and 10 deletions

10
lbs.css
View file

@ -1,13 +1,5 @@
/*
* louis-bar-syndrom.info
* Theme: Warm Editorial
*
* Designed as a visual replacement/override for the Yellow-CMS Stockholm theme.
* Existing navigation, content and URLs are intentionally left untouched.
*
* The stylesheet works with the existing Yellow-CMS classes, including:
* .page, .header, .navigation, .content, .footer, .important,
* .left, .center, .right, .rounded, .form-control and .btn.
* lbs louis-bar-syndrom.info Theme
*/
:root {

View file

@ -14,7 +14,7 @@ class YellowLBS {
public function onUpdate($action) {
$fileName = $this->yellow->system->get("coreExtensionDirectory").$this->yellow->system->get("coreSystemFile");
if ($action=="install") {
$this->yellow->system->save($fileName, array("theme" => "lb"));
$this->yellow->system->save($fileName, array("theme" => "lbs"));
} elseif ($action=="uninstall" && $this->yellow->system->get("theme")=="lbs") {
$this->yellow->system->save($fileName, array("theme" => $this->yellow->system->getDifferent("theme")));
}