mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 15:10:19 -06:00
Instead of styling defined inside a page file, these settings are now kept in a dedicated css file. This has several advantages: - It comes much easier to maintain styling, all css files are easy to find and update - Browser can cache css files, which may improve page loading time - Separate theme css files exist, no more need to make selection by coding - This PR is a 1-to-1 move of existing inline styling to css files - In future more optimization can be made by consolidating css files
35 lines
926 B
Plaintext
35 lines
926 B
Plaintext
Type="xmenu"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2023, Lime Technology
|
|
* Copyright 2012-2023, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?
|
|
function clone_list($disk) {
|
|
global $pools;
|
|
return strpos($disk['status'],'_NP')===false && ($disk['type']=='Data' || in_array($disk['name'],$pools));
|
|
}
|
|
?>
|
|
<script>
|
|
function toggleButton(button,id) {
|
|
var disabled = true;
|
|
switch (id) {
|
|
case false:
|
|
case true:
|
|
disabled = id;
|
|
break;
|
|
default:
|
|
$('select#'+id+' option').each(function(){if ($(this).prop('selected')==true) disabled = false;});
|
|
}
|
|
$('input#'+button).prop('disabled',disabled);
|
|
}
|
|
</script>
|