forked from ZwiiCMS-Team/ZwiiCMS
[9.0.07] Disable page color red in menu list
This commit is contained in:
parent
0ce8bd5d02
commit
0656f50b3f
@ -2351,7 +2351,9 @@ class layout extends common {
|
||||
$leftItems .= '<option value="' .
|
||||
helper::baseUrl() .
|
||||
$parentPageId . '"' .
|
||||
($parentPageId === $currentPageId ? ' selected' : false) . '>' .
|
||||
($parentPageId === $currentPageId ? ' selected' : false) .
|
||||
($this->getData(['page', $parentPageId, 'disable']) === true ? ' class="inactive"' : false) .
|
||||
'>' .
|
||||
$this->getData(['page', $parentPageId, 'title']) .
|
||||
'</option>';
|
||||
foreach($childrenPageIds as $childKey) {
|
||||
|
@ -63,6 +63,10 @@ li ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
option.inactive {
|
||||
color: darkred;
|
||||
}
|
||||
|
||||
/* Séparateur */
|
||||
hr {
|
||||
border: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user