Move to Column context menu styles. Fixes #115.
This commit is contained in:
parent
d2501c0a0b
commit
5a5ac92d67
@ -329,6 +329,13 @@ span.fa {
|
||||
box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,.25);
|
||||
list-style: none;
|
||||
}
|
||||
.dropdown.fixed {
|
||||
position: fixed;
|
||||
}
|
||||
.contextItemWrap {
|
||||
margin: -5px 10px 0 19px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* #ViewItem */
|
||||
.itemViewModal .modal-dialog {
|
||||
|
@ -87,7 +87,7 @@
|
||||
<span data-on-load-callback="updateSortables"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div id="itemMenu" class="dropdown" style="position: fixed;">
|
||||
<div id="itemMenu" class="dropdown fixed">
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li role="presentation">
|
||||
<a role="menuitem" style="cursor: default" data-ng-click="openItem(contextItem)">
|
||||
@ -106,12 +106,14 @@
|
||||
</li>
|
||||
<li role="presentation" class="divider"></li>
|
||||
<li role="presentation">
|
||||
Move to Column:<br />
|
||||
<select class="form-control"
|
||||
data-ng-model="contextItem.lane_id"
|
||||
data-ng-change="changeItemLane()"
|
||||
data-ng-options="lane.id as lane.name for lane in currentBoard.ownLane | orderBy:'position':false">
|
||||
</select>
|
||||
<span class="contextItemWrap">
|
||||
Move to Column:<br />
|
||||
<select class="form-control"
|
||||
data-ng-model="contextItem.lane_id"
|
||||
data-ng-change="changeItemLane()"
|
||||
data-ng-options="lane.id as lane.name for lane in currentBoard.ownLane | orderBy:'position':false">
|
||||
</select>
|
||||
</span>
|
||||
</li>
|
||||
<li role="presentation" class="divider"></li>
|
||||
<li role="presentation">
|
||||
|
Reference in New Issue
Block a user