summaryrefslogtreecommitdiffstats
path: root/client/components/main/popup.tpl.jade
blob: 9e99030de94bc03247cf677e0d9d050d978a89e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.pop-over.clearfix(
  class="{{#unless title}}miniprofile{{/unless}}"
  class=currentBoard.colorClass
  style="display:block; left:{{offset.left}}px; top:{{offset.top}}px;")
  .header.clearfix
    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
  .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}}is-hidden{{/unless}}")
          +Template.dynamic(template=popupName data=dataContext)