1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-22 22:34:15 +02:00

Fix issue processwire/processwire-issues#553 where a note in AdminThemeUikit config screen needed to be updated for new module location

This commit is contained in:
Ryan Cramer
2018-03-30 09:53:46 -04:00
parent 8cbe05d1e7
commit b1214fa0c4

View File

@@ -167,7 +167,8 @@ function AdminThemeUikitConfig(AdminTheme $adminTheme, InputfieldWrapper $inputf
$f->label = __('Primary CSS file');
$f->description = $defaultFileDesc . ' ' .
__('We do not recommend changing this unless you are an admin theme developer.');
$f->notes = $defaultFileNote . "\nsite/modules/AdminThemeUikit/uikit/dist/css/uikit.pw.css";
$f->notes = $defaultFileNote . " " .
"[uikit.pw.css](" . $modules->wire('config')->urls('AdminThemeUikit') . "uikit/dist/css/uikit.pw.css)";
$f->collapsed = Inputfield::collapsedBlank;
$f->icon = 'file-code-o';
$fieldset->add($f);