|
@@ -153,13 +153,13 @@
|
|
|
<label for="settingForm[customize:isEnabledTimeline]" class="col-xs-3 control-label">{{ t('customize_page.Timeline function') }}</label>
|
|
<label for="settingForm[customize:isEnabledTimeline]" class="col-xs-3 control-label">{{ t('customize_page.Timeline function') }}</label>
|
|
|
<div class="col-xs-9">
|
|
<div class="col-xs-9">
|
|
|
<div class="btn-group btn-toggle" data-toggle="buttons">
|
|
<div class="btn-group btn-toggle" data-toggle="buttons">
|
|
|
- <label class="btn btn-default {% if settingForm['customize:isEnabledTimeline'] %}active{% endif %}" data-active-class="primary">
|
|
|
|
|
|
|
+ <label class="btn btn-default btn-rounded btn-outline {% if settingForm['customize:isEnabledTimeline'] %}active{% endif %}" data-active-class="primary">
|
|
|
<input name="settingForm[customize:isEnabledTimeline]" value="true" type="radio"
|
|
<input name="settingForm[customize:isEnabledTimeline]" value="true" type="radio"
|
|
|
- {% if true === settingForm['customize:isEnabledTimeline'] %}checked{% endif %}> {{ t('Valid') }}
|
|
|
|
|
|
|
+ {% if true === settingForm['customize:isEnabledTimeline'] %}checked{% endif %}> ON
|
|
|
</label>
|
|
</label>
|
|
|
- <label class="btn btn-default {% if !settingForm['customize:isEnabledTimeline'] %}active{% endif %}" data-active-class="primary">
|
|
|
|
|
|
|
+ <label class="btn btn-default btn-rounded btn-outline {% if !settingForm['customize:isEnabledTimeline'] %}active{% endif %}" data-active-class="default">
|
|
|
<input name="settingForm[customize:isEnabledTimeline]" value="false" type="radio"
|
|
<input name="settingForm[customize:isEnabledTimeline]" value="false" type="radio"
|
|
|
- {% if !settingForm['customize:isEnabledTimeline'] %}checked{% endif %}> {{ t('Invalid') }}
|
|
|
|
|
|
|
+ {% if !settingForm['customize:isEnabledTimeline'] %}checked{% endif %}> OFF
|
|
|
</label>
|
|
</label>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -177,13 +177,13 @@
|
|
|
<label for="settingForm[customize:isSavedStatesOfTabChanges]" class="col-xs-3 control-label">{{ t("customize_page.tab_switch") }}</label>
|
|
<label for="settingForm[customize:isSavedStatesOfTabChanges]" class="col-xs-3 control-label">{{ t("customize_page.tab_switch") }}</label>
|
|
|
<div class="col-xs-9">
|
|
<div class="col-xs-9">
|
|
|
<div class="btn-group btn-toggle" data-toggle="buttons">
|
|
<div class="btn-group btn-toggle" data-toggle="buttons">
|
|
|
- <label class="btn btn-default {% if settingForm['customize:isSavedStatesOfTabChanges'] %}active{% endif %}" data-active-class="primary">
|
|
|
|
|
|
|
+ <label class="btn btn-default btn-rounded btn-outline {% if settingForm['customize:isSavedStatesOfTabChanges'] %}active{% endif %}" data-active-class="primary">
|
|
|
<input name="settingForm[customize:isSavedStatesOfTabChanges]" value="true" type="radio"
|
|
<input name="settingForm[customize:isSavedStatesOfTabChanges]" value="true" type="radio"
|
|
|
- {% if true === settingForm['customize:isSavedStatesOfTabChanges'] %}checked{% endif %}> {{ t('Valid') }}
|
|
|
|
|
|
|
+ {% if true === settingForm['customize:isSavedStatesOfTabChanges'] %}checked{% endif %}> ON
|
|
|
</label>
|
|
</label>
|
|
|
- <label class="btn btn-default {% if !settingForm['customize:isSavedStatesOfTabChanges'] %}active{% endif %}" data-active-class="primary">
|
|
|
|
|
|
|
+ <label class="btn btn-default btn-rounded btn-outline {% if !settingForm['customize:isSavedStatesOfTabChanges'] %}active{% endif %}" data-active-class="default">
|
|
|
<input name="settingForm[customize:isSavedStatesOfTabChanges]" value="false" type="radio"
|
|
<input name="settingForm[customize:isSavedStatesOfTabChanges]" value="false" type="radio"
|
|
|
- {% if !settingForm['customize:isSavedStatesOfTabChanges'] %}checked{% endif %}> {{ t('Invalid') }}
|
|
|
|
|
|
|
+ {% if !settingForm['customize:isSavedStatesOfTabChanges'] %}checked{% endif %}> OFF
|
|
|
</label>
|
|
</label>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -234,7 +234,7 @@
|
|
|
<div class="form-group">
|
|
<div class="form-group">
|
|
|
<div class="col-xs-offset-5 col-xs-6">
|
|
<div class="col-xs-offset-5 col-xs-6">
|
|
|
<input type="hidden" name="_csrf" value="{{ csrf() }}">
|
|
<input type="hidden" name="_csrf" value="{{ csrf() }}">
|
|
|
- <button type="submit" class="btn btn-primary">更新</button>
|
|
|
|
|
|
|
+ <button type="submit" class="btn btn-primary">{{ t('Update') }}</button>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|