Merge pull request #2491 from emanuelschuetze/template-fixes
Template fixes
This commit is contained in:
commit
1b218843ef
@ -270,15 +270,6 @@ img {
|
|||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.col1 .header .submenu > div {
|
|
||||||
display: inline-block;
|
|
||||||
float: left;
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
|
||||||
.col1 .header .submenu > div.button {
|
|
||||||
float: none;
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
.col1 .meta .title {
|
.col1 .meta .title {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -1,35 +1,36 @@
|
|||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<div class="submenu">
|
<div class="submenu">
|
||||||
<div>
|
<!-- New -->
|
||||||
<button class="btn btn-primary" ng-bootbox-prompt="{{ 'Please enter a name for the new projector' | translate }}"
|
<button class="btn btn-primary" ng-bootbox-prompt="{{ 'Please enter a name for the new projector' | translate }}"
|
||||||
ng-bootbox-prompt-action="createProjector(result)">
|
ng-bootbox-prompt-action="createProjector(result)">
|
||||||
<i class="fa fa-plus"></i>
|
<i class="fa fa-plus"></i>
|
||||||
<translate>New</translate>
|
<translate>New</translate>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
<!-- Reference for current list of speakers -->
|
||||||
<div class="dropdown">
|
<div class="btn-group" uib-dropdown>
|
||||||
<button class="btn btn-default dropdown-toggle" id="menuListofSpeakers" data-toggle="dropdown"
|
<button class="btn btn-default" id="menuListofSpeakers" uib-dropdown-toggle
|
||||||
uib-tooltip="{{ 'Select the projector to which the current list of speakers refers to.' | translate }}"
|
uib-tooltip="{{ 'Select the projector to which the current list of speakers refers to.' | translate }}"
|
||||||
aria-haspopup="true" aria-expanded="true">
|
aria-haspopup="true" aria-expanded="true">
|
||||||
|
<i class="fa fa-microphone"></i>
|
||||||
<translate>Reference for current list of speakers</translate>
|
<translate>Reference for current list of speakers</translate>
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu dropdown-entries" aria-labelledby="menuListOfSpeakers">
|
<ul class="dropdown-menu" uib-dropdown-menu aria-labelledby="menuListOfSpeakers">
|
||||||
<li ng-repeat="projector in projectors"
|
<li ng-repeat="projector in projectors">
|
||||||
ng-click="setListOfSpeakers(projector)">
|
<a href ng-click="setListOfSpeakers(projector)">
|
||||||
<i class="fa fa-check" ng-if="projector.id == currentListOfSpeakers"></i>
|
<i class="fa fa-check" ng-if="projector.id == currentListOfSpeakers"></i>
|
||||||
{{ projector.name }}
|
{{ projector.name }}
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<!-- Identity -->
|
||||||
<button class="btn" ng-click="identifyProjectors()" ng-class="identifyPromise ? 'btn-primary' : 'btn-default'">
|
<button class="btn" ng-click="identifyProjectors()" ng-class="identifyPromise ? 'btn-primary' : 'btn-default'">
|
||||||
<i class="fa fa-binoculars"></i>
|
<i class="fa fa-binoculars"></i>
|
||||||
<translate>Identify</translate>
|
<translate>Identify</translate>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<h1 translate>Manage projectors</h1>
|
<h1 translate>Manage projectors</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -324,7 +324,7 @@
|
|||||||
<span class="label" ng-class="'label-'+motion.state.css_class">
|
<span class="label" ng-class="'label-'+motion.state.css_class">
|
||||||
{{ motion.state.name | translate }}
|
{{ motion.state.name | translate }}
|
||||||
</span>
|
</span>
|
||||||
<span ng-class="{'hiddenDiv': !motion.stateHover}" uib-dropdown>
|
<span os-perms="motions.can_manage" ng-class="{'hiddenDiv': !motion.stateHover}" uib-dropdown>
|
||||||
<i class="fa fa-cog pointer" uib-dropdown-toggle id="state-dropdown{{ motion.id }}"></i>
|
<i class="fa fa-cog pointer" uib-dropdown-toggle id="state-dropdown{{ motion.id }}"></i>
|
||||||
<ul uib-dropdown-menu aria-labelledby="state-dropdown{{ motion.id }}">
|
<ul uib-dropdown-menu aria-labelledby="state-dropdown{{ motion.id }}">
|
||||||
<li ng-repeat="state in motion.state.getNextStates()">
|
<li ng-repeat="state in motion.state.getNextStates()">
|
||||||
@ -376,11 +376,11 @@
|
|||||||
<div class="col-xs-4 content">
|
<div class="col-xs-4 content">
|
||||||
<div style="width: 60%;" class="optional">
|
<div style="width: 60%;" class="optional">
|
||||||
<small>
|
<small>
|
||||||
<div ng-mouseover="motion.categoryHover=true"
|
<!-- Category dropdown for manage user -->
|
||||||
ng-mouseleave="motion.categoryHover=false"
|
<div os-perms="motions.can_manage" ng-show="categories.length > 0"
|
||||||
ng-show="categories.length > 0">
|
ng-mouseover="motion.categoryHover=true"
|
||||||
<!-- Category dropdown -->
|
ng-mouseleave="motion.categoryHover=false">
|
||||||
<span uib-dropdown>
|
<span uib-dropdown >
|
||||||
<span id="dropdown-category{{ motion.id }}" class="pointer"
|
<span id="dropdown-category{{ motion.id }}" class="pointer"
|
||||||
uib-dropdown-toggle uib-tooltip="{{ 'Set a category' | translate }}"
|
uib-dropdown-toggle uib-tooltip="{{ 'Set a category' | translate }}"
|
||||||
tooltip-class="nobr">
|
tooltip-class="nobr">
|
||||||
@ -405,9 +405,16 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div ng-mouseover="motion.tagHover=true"
|
<!-- Category string for normal user -->
|
||||||
ng-mouseleave="motion.tagHover=false"
|
<div os-perms="!motions.can_manage" ng-show="motion.category != null">
|
||||||
ng-show="tags.length > 0">
|
<i class="fa fa-sitemap spacer-right"></i>
|
||||||
|
{{ motion.category.name }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Tag dropdown for manage user -->
|
||||||
|
<div os-perms="motions.can_manage" ng-show="tags.length > 0"
|
||||||
|
ng-mouseover="motion.tagHover=true"
|
||||||
|
ng-mouseleave="motion.tagHover=false">
|
||||||
<span uib-dropdown>
|
<span uib-dropdown>
|
||||||
<span id="dropdown-tags{{ motion.id }}" class="pointer"
|
<span id="dropdown-tags{{ motion.id }}" class="pointer"
|
||||||
uib-dropdown-toggle uib-tooltip="{{ 'Add a tag' | translate }}"
|
uib-dropdown-toggle uib-tooltip="{{ 'Add a tag' | translate }}"
|
||||||
@ -434,6 +441,15 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- Tag string for normal user -->
|
||||||
|
<div os-perms="!motions.can_manage" ng-show="motion.tags.length > 0">
|
||||||
|
<i class="fa fa-tags spacer-right"></i>
|
||||||
|
<span ng-repeat="tag in motion.tags">
|
||||||
|
{{ tag.name }}<span ng-if="!$last">,</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Origin -->
|
||||||
<div ng-if="motion.origin">
|
<div ng-if="motion.origin">
|
||||||
<i class="fa fa-share spacer-right" uib-tooltip="{{ 'Origin' | translate }}"></i>
|
<i class="fa fa-share spacer-right" uib-tooltip="{{ 'Origin' | translate }}"></i>
|
||||||
{{ motion.origin | limitTo:25 }}{{ motion.origin.length > 25 ? '...' : '' }}
|
{{ motion.origin | limitTo:25 }}{{ motion.origin.length > 25 ? '...' : '' }}
|
||||||
|
Loading…
Reference in New Issue
Block a user