Merge pull request #3692 from emanuelschuetze/issue3588
New config to hide motion meta information box on projector (Fixed #3588)
This commit is contained in:
commit
5a8bfbd403
@ -50,7 +50,8 @@ Motions:
|
||||
- Added multiselect filter for motion comments [#3372].
|
||||
- Added support for pinning personal notes to the window [#3360].
|
||||
- Clear identifier on state reset [#3356].
|
||||
- New config options to hide reason and recommendation on projector [#3432].
|
||||
- New config options to hide reason, recommendation and meta
|
||||
information box on projector [#3432, #3692].
|
||||
- Show motion identifier in (current) list of speakers [#3442]
|
||||
- Added navigation between single motions [#3459].
|
||||
- Improved the multiselect state filter [#3459].
|
||||
|
@ -88,6 +88,15 @@ def get_config_variables():
|
||||
group='Motions',
|
||||
subgroup='General')
|
||||
|
||||
yield ConfigVariable(
|
||||
name='motions_disable_sidebox_on_projector',
|
||||
default_value=False,
|
||||
input_type='boolean',
|
||||
label='Hide meta information box on projector',
|
||||
weight=326,
|
||||
group='Motions',
|
||||
subgroup='General')
|
||||
|
||||
yield ConfigVariable(
|
||||
name='motions_disable_recommendation_on_projector',
|
||||
default_value=False,
|
||||
|
@ -3,10 +3,6 @@
|
||||
@import "pollresults";
|
||||
@import "sidebox";
|
||||
|
||||
#motioncontent {
|
||||
width: calc(100% - 230px);
|
||||
}
|
||||
|
||||
/* TODO: why do the projector has these extra diff related classes?
|
||||
* -> Unify the site and projector in the _diff.scss and _line-numbers.scss*/
|
||||
ol.os-split-after, ul.os-split-after {
|
||||
|
@ -2624,6 +2624,7 @@ angular.module('OpenSlidesApp.motions.site', [
|
||||
gettext('Line length');
|
||||
gettext('The maximum number of characters per line. Relevant when line numbering is enabled. Min: 40');
|
||||
gettext('Hide reason on projector');
|
||||
gettext('Hide meta information box on projector');
|
||||
gettext('Hide recommendation on projector');
|
||||
gettext('Stop submitting new motions by non-staff users');
|
||||
gettext('Allow to disable versioning');
|
||||
|
@ -1,5 +1,5 @@
|
||||
<div ng-controller="SlideMotionCtrl" class="content">
|
||||
<div id="sidebox">
|
||||
<div id="sidebox" ng-if="!config('motions_disable_sidebox_on_projector')">
|
||||
<!-- State -->
|
||||
<h3 translate>State</h3>
|
||||
{{ motion.getStateName() }}
|
||||
@ -65,7 +65,8 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="motioncontent" class="scrollcontent">
|
||||
<div ng-style="{'width': config('motions_disable_sidebox_on_projector') ? '100%' : 'calc(100% - 230px)'}"
|
||||
class="scrollcontent">
|
||||
<!-- Title -->
|
||||
<div id="title">
|
||||
<h1>{{ motion.getTitleWithChanges(mode) }}</h1>
|
||||
|
Loading…
Reference in New Issue
Block a user