mirror of
https://github.com/wekan/wekan.git
synced 2026-03-13 08:56:13 +01:00
Merge branch 'stefano-pogliani-card-shadow' into devel
This commit is contained in:
commit
31f25bcddb
3 changed files with 14 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# Upcoming Wekan release
|
# Upcoming Wekan release
|
||||||
|
|
||||||
[Snap updates](https://github.com/wekan/wekan/pull/1495):
|
This release adds following [Snap updates](https://github.com/wekan/wekan/pull/1495):
|
||||||
|
|
||||||
- cleanup of snap helper scripts
|
- cleanup of snap helper scripts
|
||||||
- cleanup and snapctl settings handling
|
- cleanup and snapctl settings handling
|
||||||
|
|
@ -11,7 +11,11 @@
|
||||||
- adding optional caddy service support ( by default caddy service is disabled),
|
- adding optional caddy service support ( by default caddy service is disabled),
|
||||||
it can be enabled by calling: snap set wekan caddy-enabled=true
|
it can be enabled by calling: snap set wekan caddy-enabled=true
|
||||||
|
|
||||||
Thanks to GitHub user kubiko for contributions.
|
and fixes the following bugs:
|
||||||
|
|
||||||
|
- [Fix: card-shadow no longer covered the page if you scroll down](https://github.com/wekan/wekan/pull/1496).
|
||||||
|
|
||||||
|
Thanks to GitHub users kubiko and stefano-pogliani for their contributions.
|
||||||
|
|
||||||
# v0.76 2018-02-21 Wekan release
|
# v0.76 2018-02-21 Wekan release
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,11 @@
|
||||||
@import 'nib'
|
@import 'nib'
|
||||||
|
|
||||||
position()
|
position()
|
||||||
if arguments[0] == cover
|
if arguments[0] == cover || arguments[0] == fixed-cover
|
||||||
position: absolute
|
if arguments[0] == cover
|
||||||
|
position: absolute
|
||||||
|
else
|
||||||
|
position: fixed
|
||||||
left: 0
|
left: 0
|
||||||
right: 0
|
right: 0
|
||||||
top: 0
|
top: 0
|
||||||
|
|
@ -30,7 +33,7 @@ position()
|
||||||
overflow-y: hidden
|
overflow-y: hidden
|
||||||
|
|
||||||
.board-overlay
|
.board-overlay
|
||||||
position: cover
|
position: fixed-cover
|
||||||
top: -100px
|
top: -100px
|
||||||
right: -400px
|
right: -400px
|
||||||
background: black
|
background: black
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
color: white
|
color: white
|
||||||
transition: background-color 0.4s
|
transition: background-color 0.4s
|
||||||
background: #2980B9
|
background: #2980B9
|
||||||
|
z-index: 17
|
||||||
|
|
||||||
#header-main-bar
|
#header-main-bar
|
||||||
height: 40px
|
height: 40px
|
||||||
|
|
@ -99,6 +100,7 @@
|
||||||
height: 28px
|
height: 28px
|
||||||
font-size: 12px
|
font-size: 12px
|
||||||
display: flex
|
display: flex
|
||||||
|
z-index: 17
|
||||||
|
|
||||||
#header-user-bar,
|
#header-user-bar,
|
||||||
#header-new-board-icon,
|
#header-new-board-icon,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue