* Modify the form header style.

This commit is contained in:
tianshujie
2023-05-24 16:42:29 +08:00
parent cc6ffd331e
commit fe24a9660d
3 changed files with 11 additions and 7 deletions
+1
View File
@@ -0,0 +1 @@
.panel-heading {justify-content: flex-start;}
+9 -6
View File
@@ -212,15 +212,18 @@ $items[] = array
/* ====== Define the page structure with zin widgets ====== */
checkbox
(
set::id('zeroTaskStory'),
set::text($lang->story->zeroTask),
on::change('toggleZeroTaskStory'),
);
formBatchPanel
(
set::items($items),
to::headingActions
(
checkbox
(
set::id('zeroTaskStory'),
set::text($lang->story->zeroTask),
on::change('toggleZeroTaskStory'),
),
),
on::change('[data-name="module"]', 'setStories'),
on::change('[data-name="story"]', 'setStoryRelated'),
on::click('[data-name="copyStory"]', 'copyStoryTitle'),
+1 -1
View File
@@ -322,7 +322,7 @@ class taskZen extends task
list($customFields, $checkedFields) = $this->getCustomFields($execution, 'batchCreate');
$this->view->title = $execution->name . $this->lang->colon . $this->lang->task->batchCreate;
$this->view->title = $this->lang->task->batchCreate;
$this->view->execution = $execution;
$this->view->modules = $modules;
$this->view->parent = $taskID;