mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
parent
691c3aff68
commit
84f49fa7a1
21 changed files with 240 additions and 57 deletions
|
|
@ -45,7 +45,7 @@ BlazeComponent.extendComponent({
|
|||
// In case the filter is active we need to add the newly inserted card in
|
||||
// the list of exceptions -- cards that are not filtered. Otherwise the
|
||||
// card will disappear instantly.
|
||||
// See https://github.com/libreboard/libreboard/issues/80
|
||||
// See https://github.com/wekan/wekan/issues/80
|
||||
Filter.addException(_id);
|
||||
|
||||
// We keep the form opened, empty it, and scroll to it.
|
||||
|
|
|
|||
|
|
@ -34,11 +34,15 @@ template(name="header")
|
|||
#header-main-bar(class="{{#if wrappedHeader}}wrapper{{/if}}")
|
||||
if $.Session.get 'currentBoard'
|
||||
+headerBoard
|
||||
else
|
||||
else if($eq currentRouteName 'home')
|
||||
+headerTitle
|
||||
|
||||
a.wekan-logo(href="{{pathFor 'home'}}")
|
||||
img(src="/wekan-logo-header.png" alt="Wekan")
|
||||
|
||||
template(name="headerTitle")
|
||||
h1 LibreBoard
|
||||
h1 My Boards
|
||||
|
||||
.board-header-btns.right
|
||||
a.board-header-btn.js-open-archived-board
|
||||
i.fa.fa-archive
|
||||
|
|
|
|||
|
|
@ -75,6 +75,16 @@
|
|||
float: left
|
||||
border-radius: 3px
|
||||
|
||||
.wekan-logo
|
||||
display: block
|
||||
margin: 3px auto 0
|
||||
width: 97px
|
||||
opacity: 0.6
|
||||
transition: opacity 0.15s
|
||||
|
||||
&:hover
|
||||
opacity: 0.9
|
||||
|
||||
.board-header-btns
|
||||
display: block
|
||||
margin-top: 3px
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
head
|
||||
title LibreBoard
|
||||
title Wekan
|
||||
meta(name="viewport"
|
||||
content="maximum-scale=1.0,width=device-width,initial-scale=1.0,user-scalable=0")
|
||||
link(rel="shortcut icon" href="/favicon.png")
|
||||
|
|
@ -7,7 +7,7 @@ head
|
|||
template(name="userFormsLayout")
|
||||
section.auth-layout
|
||||
h1.at-form-landing-logo
|
||||
img(src="/logo.png" title="LibreBoard")
|
||||
img(src="/wekan-logo.png" alt="Wekan")
|
||||
+Template.dynamic(template=content)
|
||||
|
||||
template(name="defaultLayout")
|
||||
|
|
|
|||
|
|
@ -1,13 +1,10 @@
|
|||
.auth-layout
|
||||
.at-form-landing-logo
|
||||
width: 275px
|
||||
width: 249px
|
||||
margin: auto
|
||||
margin-top: 50px
|
||||
margin-top: 17vh
|
||||
|
||||
img
|
||||
width: 275px
|
||||
|
||||
.at-form
|
||||
margin: auto
|
||||
width: 275px
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue