|
@@ -89,22 +89,28 @@ template(name="swimlaneAddPopup")
|
|
|
a.js-swimlane-template {{_ 'template'}}
|
|
|
|
|
|
template(name="setSwimlaneColorPopup")
|
|
|
- form.edit-label
|
|
|
- .palette-colors: each colors
|
|
|
- span.card-label.palette-color.js-palette-color(class="card-details-{{color}}")
|
|
|
- if(isSelected color)
|
|
|
- i.fa.fa-check
|
|
|
- button.primary.confirm.js-submit {{_ 'save'}}
|
|
|
- button.js-remove-color.negate.wide.right {{_ 'unset-color'}}
|
|
|
+ form.edit-label.swimlane-color-popup
|
|
|
+ // Align content to left and remove default gutter
|
|
|
+ .flush-left
|
|
|
+ .palette-colors(style="margin-left:0; padding-left:0; justify-content:flex-start;")
|
|
|
+ each colors
|
|
|
+ span.card-label.palette-color.js-palette-color(class="card-details-{{color}}")
|
|
|
+ if(isSelected color)
|
|
|
+ i.fa.fa-check
|
|
|
+ // Buttons aligned left too
|
|
|
+ .flush-left
|
|
|
+ button.primary.confirm.js-submit(style="margin-left:0") {{_ 'save'}}
|
|
|
+ button.js-remove-color.negate.wide.right(style="margin-left:8px") {{_ 'unset-color'}}
|
|
|
|
|
|
template(name="setSwimlaneHeightPopup")
|
|
|
- #js-swimlane-height-edit
|
|
|
- label a) {{_ 'set-swimlane-height-value'}}
|
|
|
- label b) -1
|
|
|
- p
|
|
|
- input.swimlane-height-value(type="number" value="{{ swimlaneHeightValue }}" min="100")
|
|
|
- input.swimlane-height-apply(type="submit" value="{{_ 'apply'}}")
|
|
|
- input.swimlane-height-error
|
|
|
+ .flush-left.swimlane-height-popup
|
|
|
+ #js-swimlane-height-edit
|
|
|
+ label a) {{_ 'set-swimlane-height-value'}}
|
|
|
+ label b) -1
|
|
|
+ p
|
|
|
+ input.swimlane-height-value(type="number" value="{{ swimlaneHeightValue }}" min="100")
|
|
|
+ input.swimlane-height-apply(type="submit" value="{{_ 'apply'}}")
|
|
|
+ input.swimlane-height-error
|
|
|
|
|
|
template(name="swimlaneHeightErrorPopup")
|
|
|
.swimlane-height-invalid
|