mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-05 08:17:07 +00:00
54991a8940
* chore: Add enable git.alwaysSignOff Comply with Nextcloud policy Signed-off-by: Jérémie Tarot (@silopolis) <silopolis@gmail.com> * fix(text): Improve admin settings texts Use direct present tense Consistency Hopefully make behaviour more clear Signed-off-by: Jérémie Tarot (@silopolis) <silopolis@gmail.com> --------- Signed-off-by: Jérémie Tarot (@silopolis) <silopolis@gmail.com>
50 lines
2.9 KiB
PHP
50 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Breeze Dark theme for Nextcloud
|
|
*
|
|
* @copyright Copyright (C) 2020 Magnus Walbeck <mw@mwalbeck.org>
|
|
*
|
|
* @author Magnus Walbeck <mw@mwalbeck.org>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
script('breezedark', 'settings-admin');
|
|
?>
|
|
|
|
<div id="breezedark" class="breezedark-admin section">
|
|
<h2><?php p($l->t("Breeze Dark")); ?></h2>
|
|
<p><?php p($l->t("A Dark theme based on Breeze Dark by the KDE project. Please refresh the page for changes to take effect.")); ?></p>
|
|
|
|
<p><?php p($l->t("This setting enforces the usage of this theme for all users. Please note, this prevents users from disabling it or choosing a different theme.")); ?></p>
|
|
<input type="checkbox" class="checkbox" id="breezedark-theme-enabled" <?php p($themeEnforced ? "checked" : ""); ?>>
|
|
<label for="breezedark-theme-enabled"><?php p($l->t("Enforce Breeze Dark theme use globally")); ?></label>
|
|
|
|
<p><?php p($l->t("This setting enables the automated activation by the clients' system settings by default, for unauthenticated users and users who have not set a preference.")); ?></p>
|
|
<input type="checkbox" class="checkbox" id="breezedark-automatic-activation-enabled" <?php p($themeEnforced ? "" : "disabled");?> <?php p($themeAutomaticActivation ? "checked" : ""); ?>>
|
|
<label for="breezedark-automatic-activation-enabled"><?php p($l->t("Enable Breeze Dark theme automated activation by the clients' system settings by default")); ?></label>
|
|
|
|
<p><?php p($l->t("This setting enables use of the theme for the login page. This only takes effect on the login page itself if the theme is globally enforced, or during login for a user who has the theme enabled.")); ?></p>
|
|
<input type="checkbox" class="checkbox" id="breezedark-theme-login-page" <?php p($themeLoginPage ? "checked" : ""); ?>>
|
|
<label for="breezedark-theme-login-page"><?php p($l->t("Enable Breeze Dark theme for the login page")); ?></label>
|
|
|
|
<h3><?php p($l->t("Custom Styling")); ?></h3>
|
|
<textarea id="breezedark-theme-custom-styling" style="width: 100%; height: 200px; font-family: monospace;" placeholder="<?php p($l->t("Insert custom styling here …")); ?>"><?php p($themeCustomStyling); ?></textarea>
|
|
<button id="breezedark-theme-custom-styling-button"><?php p($l->t("Save")); ?></button>
|
|
</div>
|