mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 06:08:21 +01:00
Added support for collapsible form fields (#4795)
This commit is contained in:
parent
9f1885dbe1
commit
6192d85bbf
@ -34,4 +34,5 @@
|
|||||||
- Enh #4416: Added replay to sub comments
|
- Enh #4416: Added replay to sub comments
|
||||||
- Enh #4571: humhub/libs/Html::containerLink() now adds a "data-guid" attribute
|
- Enh #4571: humhub/libs/Html::containerLink() now adds a "data-guid" attribute
|
||||||
- Enh #4787: Always enable Space Membership Web Notifications
|
- Enh #4787: Always enable Space Membership Web Notifications
|
||||||
|
- Enh #4795: Added support for collapsible form fields
|
||||||
- Enh #4796: Added option to disable PWA/ServiceWorker support
|
- Enh #4796: Added option to disable PWA/ServiceWorker support
|
||||||
|
@ -20,7 +20,6 @@ class BasicSettingsForm extends \yii\base\Model
|
|||||||
public $defaultLanguage;
|
public $defaultLanguage;
|
||||||
public $tour;
|
public $tour;
|
||||||
public $timeZone;
|
public $timeZone;
|
||||||
public $defaultStreamSort;
|
|
||||||
public $dashboardShowProfilePostForm;
|
public $dashboardShowProfilePostForm;
|
||||||
public $enableFriendshipModule;
|
public $enableFriendshipModule;
|
||||||
public $maintenanceMode;
|
public $maintenanceMode;
|
||||||
@ -43,8 +42,6 @@ class BasicSettingsForm extends \yii\base\Model
|
|||||||
$this->dashboardShowProfilePostForm = Yii::$app->getModule('dashboard')->settings->get('showProfilePostForm');
|
$this->dashboardShowProfilePostForm = Yii::$app->getModule('dashboard')->settings->get('showProfilePostForm');
|
||||||
$this->tour = Yii::$app->getModule('tour')->settings->get('enable');
|
$this->tour = Yii::$app->getModule('tour')->settings->get('enable');
|
||||||
$this->enableFriendshipModule = Yii::$app->getModule('friendship')->settings->get('enable');
|
$this->enableFriendshipModule = Yii::$app->getModule('friendship')->settings->get('enable');
|
||||||
|
|
||||||
$this->defaultStreamSort = Yii::$app->getModule('stream')->settings->get('defaultSort');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -58,7 +55,6 @@ class BasicSettingsForm extends \yii\base\Model
|
|||||||
['defaultLanguage', 'in', 'range' => array_keys(Yii::$app->i18n->getAllowedLanguages())],
|
['defaultLanguage', 'in', 'range' => array_keys(Yii::$app->i18n->getAllowedLanguages())],
|
||||||
['timeZone', 'in', 'range' => \DateTimeZone::listIdentifiers()],
|
['timeZone', 'in', 'range' => \DateTimeZone::listIdentifiers()],
|
||||||
[['tour', 'dashboardShowProfilePostForm', 'enableFriendshipModule', 'maintenanceMode'], 'in', 'range' => [0, 1]],
|
[['tour', 'dashboardShowProfilePostForm', 'enableFriendshipModule', 'maintenanceMode'], 'in', 'range' => [0, 1]],
|
||||||
[['defaultStreamSort'], 'in', 'range' => array_keys($this->getDefaultStreamSortOptions())],
|
|
||||||
[['baseUrl'], function ($attribute, $params, $validator) {
|
[['baseUrl'], function ($attribute, $params, $validator) {
|
||||||
if (substr($this->$attribute, 0, 7) !== 'http://' && substr($this->$attribute, 0, 8) !== 'https://') {
|
if (substr($this->$attribute, 0, 7) !== 'http://' && substr($this->$attribute, 0, 8) !== 'https://') {
|
||||||
$this->addError($attribute, Yii::t('AdminModule.base', 'Base URL needs to begin with http:// or https://'));
|
$this->addError($attribute, Yii::t('AdminModule.base', 'Base URL needs to begin with http:// or https://'));
|
||||||
@ -96,6 +92,7 @@ class BasicSettingsForm extends \yii\base\Model
|
|||||||
'dateTime' => Yii::$app->formatter->asTime(TimezoneHelper::getDatabaseConnectionTime())
|
'dateTime' => Yii::$app->formatter->asTime(TimezoneHelper::getDatabaseConnectionTime())
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
|
'baseUrl' => Yii::t('AdminModule.settings', 'E.g. http://example.com/humhub'),
|
||||||
'maintenanceModeInfo' => Yii::t('AdminModule.settings', 'Add custom info text for maintenance mode. Displayed on the login page.'),
|
'maintenanceModeInfo' => Yii::t('AdminModule.settings', 'Add custom info text for maintenance mode. Displayed on the login page.'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@ -116,23 +113,10 @@ class BasicSettingsForm extends \yii\base\Model
|
|||||||
Yii::$app->getModule('dashboard')->settings->set('showProfilePostForm', $this->dashboardShowProfilePostForm);
|
Yii::$app->getModule('dashboard')->settings->set('showProfilePostForm', $this->dashboardShowProfilePostForm);
|
||||||
Yii::$app->getModule('tour')->settings->set('enable', $this->tour);
|
Yii::$app->getModule('tour')->settings->set('enable', $this->tour);
|
||||||
Yii::$app->getModule('friendship')->settings->set('enable', $this->enableFriendshipModule);
|
Yii::$app->getModule('friendship')->settings->set('enable', $this->enableFriendshipModule);
|
||||||
Yii::$app->getModule('stream')->settings->set('defaultSort', $this->defaultStreamSort);
|
|
||||||
|
|
||||||
DynamicConfig::rewrite();
|
DynamicConfig::rewrite();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns available options for defaultStreamSort attribute
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getDefaultStreamSortOptions()
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
Stream::SORT_CREATED_AT => Yii::t('AdminModule.settings', 'Sort by creation date'),
|
|
||||||
Stream::SORT_UPDATED_AT => Yii::t('AdminModule.settings', 'Sort by update date'),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@ namespace humhub\modules\admin\models\forms;
|
|||||||
|
|
||||||
use humhub\modules\file\Module;
|
use humhub\modules\file\Module;
|
||||||
use humhub\modules\file\validators\ImageSquareValidator;
|
use humhub\modules\file\validators\ImageSquareValidator;
|
||||||
|
use humhub\modules\stream\actions\Stream;
|
||||||
use humhub\modules\web\pwa\widgets\SiteIcon;
|
use humhub\modules\web\pwa\widgets\SiteIcon;
|
||||||
use Yii;
|
use Yii;
|
||||||
use yii\base\Model;
|
use yii\base\Model;
|
||||||
@ -35,6 +36,8 @@ class DesignSettingsForm extends Model
|
|||||||
public $dateInputDisplayFormat;
|
public $dateInputDisplayFormat;
|
||||||
public $horImageScrollOnMobile;
|
public $horImageScrollOnMobile;
|
||||||
public $useDefaultSwipeOnMobile;
|
public $useDefaultSwipeOnMobile;
|
||||||
|
public $defaultStreamSort;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* @inheritdoc
|
||||||
@ -52,6 +55,8 @@ class DesignSettingsForm extends Model
|
|||||||
$this->dateInputDisplayFormat = Yii::$app->getModule('admin')->settings->get('defaultDateInputFormat');
|
$this->dateInputDisplayFormat = Yii::$app->getModule('admin')->settings->get('defaultDateInputFormat');
|
||||||
$this->horImageScrollOnMobile = $settingsManager->get('horImageScrollOnMobile');
|
$this->horImageScrollOnMobile = $settingsManager->get('horImageScrollOnMobile');
|
||||||
$this->useDefaultSwipeOnMobile = $settingsManager->get('useDefaultSwipeOnMobile');
|
$this->useDefaultSwipeOnMobile = $settingsManager->get('useDefaultSwipeOnMobile');
|
||||||
|
$this->defaultStreamSort = Yii::$app->getModule('stream')->settings->get('defaultSort');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -68,6 +73,7 @@ class DesignSettingsForm extends Model
|
|||||||
[['displayName', 'spaceOrder'], 'safe'],
|
[['displayName', 'spaceOrder'], 'safe'],
|
||||||
[['horImageScrollOnMobile', 'useDefaultSwipeOnMobile'], 'boolean'],
|
[['horImageScrollOnMobile', 'useDefaultSwipeOnMobile'], 'boolean'],
|
||||||
['logo', 'image', 'extensions' => 'png, jpg, jpeg', 'minWidth' => 100, 'minHeight' => 120],
|
['logo', 'image', 'extensions' => 'png, jpg, jpeg', 'minWidth' => 100, 'minHeight' => 120],
|
||||||
|
[['defaultStreamSort'], 'in', 'range' => array_keys($this->getDefaultStreamSortOptions())],
|
||||||
['icon', 'image', 'extensions' => 'png, jpg, jpeg', 'minWidth' => 256, 'minHeight' => 256],
|
['icon', 'image', 'extensions' => 'png, jpg, jpeg', 'minWidth' => 256, 'minHeight' => 256],
|
||||||
['icon', ImageSquareValidator::class],
|
['icon', ImageSquareValidator::class],
|
||||||
['dateInputDisplayFormat', 'in', 'range' => ['', 'php:d/m/Y']],
|
['dateInputDisplayFormat', 'in', 'range' => ['', 'php:d/m/Y']],
|
||||||
@ -147,6 +153,8 @@ class DesignSettingsForm extends Model
|
|||||||
$settingsManager->set('horImageScrollOnMobile', $this->horImageScrollOnMobile);
|
$settingsManager->set('horImageScrollOnMobile', $this->horImageScrollOnMobile);
|
||||||
$settingsManager->set('useDefaultSwipeOnMobile', $this->useDefaultSwipeOnMobile);
|
$settingsManager->set('useDefaultSwipeOnMobile', $this->useDefaultSwipeOnMobile);
|
||||||
|
|
||||||
|
Yii::$app->getModule('stream')->settings->set('defaultSort', $this->defaultStreamSort);
|
||||||
|
|
||||||
if ($this->logo) {
|
if ($this->logo) {
|
||||||
LogoImage::set($this->logo);
|
LogoImage::set($this->logo);
|
||||||
}
|
}
|
||||||
@ -160,4 +168,16 @@ class DesignSettingsForm extends Model
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns available options for defaultStreamSort attribute
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getDefaultStreamSortOptions()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Stream::SORT_CREATED_AT => Yii::t('AdminModule.settings', 'Sort by creation date'),
|
||||||
|
Stream::SORT_UPDATED_AT => Yii::t('AdminModule.settings', 'Sort by update date'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
use humhub\libs\TimezoneHelper;
|
use humhub\libs\TimezoneHelper;
|
||||||
use humhub\modules\admin\assets\AdminAsset;
|
use humhub\modules\admin\assets\AdminAsset;
|
||||||
use humhub\modules\admin\models\forms\BasicSettingsForm;
|
use humhub\modules\admin\models\forms\BasicSettingsForm;
|
||||||
use yii\widgets\ActiveForm;
|
|
||||||
use humhub\compat\CHtml;
|
use humhub\compat\CHtml;
|
||||||
|
use humhub\modules\ui\form\widgets\ActiveForm;
|
||||||
|
|
||||||
/* @var BasicSettingsForm $model */
|
/* @var BasicSettingsForm $model */
|
||||||
|
|
||||||
@ -34,32 +34,24 @@ AdminAsset::register($this);
|
|||||||
<?php $form = ActiveForm::begin(); ?>
|
<?php $form = ActiveForm::begin(); ?>
|
||||||
|
|
||||||
<?= $form->field($model, 'name'); ?>
|
<?= $form->field($model, 'name'); ?>
|
||||||
|
|
||||||
<?= $form->field($model, 'baseUrl'); ?>
|
<?= $form->field($model, 'baseUrl'); ?>
|
||||||
<p class="help-block"><?= Yii::t('AdminModule.settings', 'E.g. http://example.com/humhub'); ?></p>
|
|
||||||
|
|
||||||
<?php $allowedLanguages = Yii::$app->i18n->getAllowedLanguages(); ?>
|
<?php $allowedLanguages = Yii::$app->i18n->getAllowedLanguages(); ?>
|
||||||
<?php if (count($allowedLanguages) > 1) : ?>
|
<?php if (count($allowedLanguages) > 1) : ?>
|
||||||
<?= $languageDropDown = $form->field($model, 'defaultLanguage')->dropDownList($allowedLanguages, ['data-ui-select2' => '']); ?>
|
<?= $languageDropDown = $form->field($model, 'defaultLanguage')->dropDownList($allowedLanguages, ['data-ui-select2' => '']); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?= $form->field($model, 'timeZone')->dropDownList(TimezoneHelper::generateList(true), ['data-ui-select2' => '', 'disabled' => Yii::$app->settings->isFixed('timeZone')]); ?>
|
<?= $form->field($model, 'timeZone')->dropDownList(TimezoneHelper::generateList(true), ['data-ui-select2' => '', 'disabled' => Yii::$app->settings->isFixed('timeZone')]); ?>
|
||||||
<?= $form->field($model, 'defaultStreamSort')->dropDownList($model->getDefaultStreamSortOptions()); ?>
|
|
||||||
|
|
||||||
<strong><?= Yii::t('AdminModule.settings', 'Dashboard'); ?></strong>
|
<?= $form->beginCollapsibleFields(Yii::t('AdminModule.settings', 'Dashboard')); ?>
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<?= $form->field($model, 'tour')->checkbox(); ?>
|
<?= $form->field($model, 'tour')->checkbox(); ?>
|
||||||
<?= $form->field($model, 'dashboardShowProfilePostForm')->checkbox(); ?>
|
<?= $form->field($model, 'dashboardShowProfilePostForm')->checkbox(); ?>
|
||||||
|
<?= $form->endCollapsibleFields(); ?>
|
||||||
|
|
||||||
<strong><?= Yii::t('AdminModule.settings', 'Friendship'); ?></strong>
|
<?= $form->beginCollapsibleFields(Yii::t('AdminModule.settings', 'Friendship')); ?>
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<?= $form->field($model, 'enableFriendshipModule')->checkbox(); ?>
|
<?= $form->field($model, 'enableFriendshipModule')->checkbox(); ?>
|
||||||
|
<?= $form->endCollapsibleFields(); ?>
|
||||||
|
|
||||||
<strong><?= Yii::t('AdminModule.settings', 'Maintenance mode'); ?></strong>
|
<?= $form->beginCollapsibleFields(Yii::t('AdminModule.settings', 'Maintenance mode'), !$model->maintenanceMode); ?>
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<?= $form->field($model, 'maintenanceMode')->checkbox([
|
<?= $form->field($model, 'maintenanceMode')->checkbox([
|
||||||
'data-action-click' => 'admin.changeMaintenanceMode',
|
'data-action-click' => 'admin.changeMaintenanceMode',
|
||||||
'data-action-confirm-header' => $adminSettingsJsConfig['text']['maintenanceMode.header'],
|
'data-action-confirm-header' => $adminSettingsJsConfig['text']['maintenanceMode.header'],
|
||||||
@ -67,6 +59,7 @@ AdminAsset::register($this);
|
|||||||
'data-action-confirm-text' => $adminSettingsJsConfig['text']['maintenanceMode.button.' . ($model->maintenanceMode ? 'disable' : 'enable')],
|
'data-action-confirm-text' => $adminSettingsJsConfig['text']['maintenanceMode.button.' . ($model->maintenanceMode ? 'disable' : 'enable')],
|
||||||
]); ?>
|
]); ?>
|
||||||
<?= $form->field($model, 'maintenanceModeInfo')->label(false)->textInput(['disabled' => !$model->maintenanceMode]); ?>
|
<?= $form->field($model, 'maintenanceModeInfo')->label(false)->textInput(['disabled' => !$model->maintenanceMode]); ?>
|
||||||
|
<?= $form->endCollapsibleFields(); ?>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
@ -45,6 +45,8 @@ $iconUrl = SiteIcon::getUrl(140);
|
|||||||
|
|
||||||
<?= $form->field($model, 'spaceOrder')->dropDownList(['0' => Yii::t('AdminModule.settings', 'Alphabetical'), '1' => Yii::t('AdminModule.settings', 'Last visit')]); ?>
|
<?= $form->field($model, 'spaceOrder')->dropDownList(['0' => Yii::t('AdminModule.settings', 'Alphabetical'), '1' => Yii::t('AdminModule.settings', 'Last visit')]); ?>
|
||||||
|
|
||||||
|
<?= $form->field($model, 'defaultStreamSort')->dropDownList($model->getDefaultStreamSortOptions()); ?>
|
||||||
|
|
||||||
<?= $form->field($model, 'dateInputDisplayFormat')->dropDownList([
|
<?= $form->field($model, 'dateInputDisplayFormat')->dropDownList([
|
||||||
'' => Yii::t('AdminModule.settings', 'Auto format based on user language - Example: {example}', ['{example}' => Yii::$app->formatter->asDate(time(), 'short')]),
|
'' => Yii::t('AdminModule.settings', 'Auto format based on user language - Example: {example}', ['{example}' => Yii::$app->formatter->asDate(time(), 'short')]),
|
||||||
'php:d/m/Y' => Yii::t('AdminModule.settings', 'Fixed format (dd/mm/yyyy) - Example: {example}', ['{example}' => Yii::$app->formatter->asDate(time(), 'php:d/m/Y')]),
|
'php:d/m/Y' => Yii::t('AdminModule.settings', 'Fixed format (dd/mm/yyyy) - Example: {example}', ['{example}' => Yii::$app->formatter->asDate(time(), 'php:d/m/Y')]),
|
||||||
|
@ -9,6 +9,9 @@
|
|||||||
namespace humhub\modules\ui\form\widgets;
|
namespace humhub\modules\ui\form\widgets;
|
||||||
|
|
||||||
|
|
||||||
|
use humhub\libs\Html;
|
||||||
|
use humhub\modules\ui\icon\widgets\Icon;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ActiveForm
|
* ActiveForm
|
||||||
*
|
*
|
||||||
@ -42,4 +45,42 @@ class ActiveForm extends \yii\bootstrap\ActiveForm
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts a section of collapsible form fields.
|
||||||
|
* Make sure that the `endCollapsibleFields` method is also called afterwards.
|
||||||
|
* It is not possible to nest these sections.
|
||||||
|
*
|
||||||
|
* @param $title string the title of the form field group
|
||||||
|
* @return string
|
||||||
|
* @since 1.8
|
||||||
|
*/
|
||||||
|
public function beginCollapsibleFields($title, $isClosed = true)
|
||||||
|
{
|
||||||
|
$cssClass = ($isClosed) ? 'closed' : 'opened';
|
||||||
|
|
||||||
|
return
|
||||||
|
Html::beginTag('div', ['class' => 'form-collapsible-fields ' . $cssClass, 'data-ui-widget' => 'ui.form.elements.FormFieldsCollapsible', 'data-ui-init' => 1]) .
|
||||||
|
Html::tag('div',
|
||||||
|
Html::tag('div',
|
||||||
|
Icon::get('plus', ['htmlOptions' => ['class' => 'iconOpen']]) .
|
||||||
|
Icon::get('minus', ['htmlOptions' => ['class' => 'iconClose']]) . ' ',
|
||||||
|
['class' => 'pull-left']
|
||||||
|
) .
|
||||||
|
Html::label($title, null, ['class' => 'control-label'])
|
||||||
|
, ['class' => 'form-collapsible-fields-label', 'data-action-click' => 'clickCollab', 'data-toggle' => 'tab']) .
|
||||||
|
Html::beginTag('fieldset');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts a section of collapsible form fields.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
* @since 1.8
|
||||||
|
*/
|
||||||
|
public function endCollapsibleFields()
|
||||||
|
{
|
||||||
|
return Html::endTag('fieldset') .
|
||||||
|
Html::endTag('div');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -150,7 +150,46 @@ humhub.module('ui.form.elements', function (module, require, $) {
|
|||||||
evt.$trigger.parent().hide();
|
evt.$trigger.parent().hide();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var object = require('util').object;
|
||||||
|
var Widget = require('ui.widget').Widget;
|
||||||
|
|
||||||
|
var FormFieldsCollapsible = function (node, options) {
|
||||||
|
Widget.call(this, node, options);
|
||||||
|
};
|
||||||
|
|
||||||
|
object.inherits(FormFieldsCollapsible, Widget);
|
||||||
|
|
||||||
|
FormFieldsCollapsible.component = 'humhub-form-field-collapsible';
|
||||||
|
FormFieldsCollapsible.prototype.validate = function () {
|
||||||
|
return this.$.is('div');
|
||||||
|
};
|
||||||
|
|
||||||
|
FormFieldsCollapsible.prototype.clickCollab = function (evt) {
|
||||||
|
if (this.$.find('fieldset').is(":visible")) {
|
||||||
|
this.hide();
|
||||||
|
} else {
|
||||||
|
this.show();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
FormFieldsCollapsible.prototype.init = function () {
|
||||||
|
if (this.$.find('.error, .has-error').length > 0) {
|
||||||
|
this.show();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
FormFieldsCollapsible.prototype.hide = function () {
|
||||||
|
this.$.find('fieldset').attr("aria-hidden","true");
|
||||||
|
this.$.find('fieldset').attr("aria-expanded","false");
|
||||||
|
this.$.addClass('closed');
|
||||||
|
this.$.removeClass('opened');
|
||||||
|
};
|
||||||
|
|
||||||
|
FormFieldsCollapsible.prototype.show = function () {
|
||||||
|
this.$.find('fieldset').attr("aria-hidden","false");
|
||||||
|
this.$.find('fieldset').attr("aria-expanded","true");
|
||||||
|
this.$.addClass('opened');
|
||||||
|
this.$.removeClass('closed');
|
||||||
|
};
|
||||||
|
|
||||||
module.export({
|
module.export({
|
||||||
init: init,
|
init: init,
|
||||||
@ -158,6 +197,7 @@ humhub.module('ui.form.elements', function (module, require, $) {
|
|||||||
initCheckbox: initCheckbox,
|
initCheckbox: initCheckbox,
|
||||||
initRadio: initRadio,
|
initRadio: initRadio,
|
||||||
toggleTimeZoneInput: toggleTimeZoneInput,
|
toggleTimeZoneInput: toggleTimeZoneInput,
|
||||||
timeZoneSelected: timeZoneSelected
|
timeZoneSelected: timeZoneSelected,
|
||||||
|
FormFieldsCollapsible: FormFieldsCollapsible
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -312,3 +312,44 @@ a.label-warning:hover {
|
|||||||
.bootstrap-timepicker-widget .form-control {
|
.bootstrap-timepicker-widget .form-control {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-collapsible-fields {
|
||||||
|
margin-bottom: 12px;
|
||||||
|
border-left: 3px solid @primary;
|
||||||
|
background-color: #F4F4F4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-collapsible-fields-label {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-collapsible-fields fieldset {
|
||||||
|
padding-top: 15px;
|
||||||
|
padding-left: 12px;
|
||||||
|
padding-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-collapsible-fields.opened {
|
||||||
|
fieldset {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconClose {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconOpen {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-collapsible-fields.closed {
|
||||||
|
fieldset, .iconClose {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.iconOpen {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user