mirror of
https://github.com/wekan/wekan.git
synced 2026-01-31 05:35:16 +01:00
* Implement visibility choice on board creation;
* Rework the board header bar. Remove links to un-implemented
features;
* Implement a board star counter (visible if the board have >2 stars);
* Define a new icon (a thin cross) to close elements;
* Remove $(document).on('mouseover') event handlers that were
basically fired hundreds of times for nothing, we now define a proper
Tracker dependency to execute jquery-ui plugin initialization only
when something has changed;
* Bug fixes related to list scrolling.
22 lines
1 KiB
Text
22 lines
1 KiB
Text
.pop-over.clearfix(
|
|
class="{{#unless title}}miniprofile{{/unless}}"
|
|
class=currentBoard.colorClass
|
|
class="{{#unless title}}no-title{{/unless}}"
|
|
style="display:block; left:{{offset.left}}px; top:{{offset.top}}px;")
|
|
.header
|
|
a.back-btn.js-back-view(class="{{#unless hasPopupParent}}is-hidden{{/unless}}")
|
|
i.fa.fa-chevron-left
|
|
span.header-title= title
|
|
a.close-btn.js-close-pop-over
|
|
i.fa.fa-times-thin
|
|
.content-wrapper
|
|
//-
|
|
We display the all stack of popup content next to each other and move
|
|
the "window" by translating .content-container inside .content-wrapper.
|
|
.content-container(style="transform:translateX({{containerTranslation}}px)")
|
|
each stack
|
|
//-
|
|
XXX We need a better way to express the "is the last element" condition.
|
|
Hopefully the @last helper will come soon (or at least @index)
|
|
.content(class="{{#unless $eq popupName ../popupName}}no-height{{/unless}}")
|
|
+Template.dynamic(template=popupName data=dataContext)
|