mirror of
https://github.com/wekan/wekan.git
synced 2026-01-17 23:15:28 +01:00
add: support compact mode for mobile web, auto adapt to small screen/window
This commit is contained in:
parent
0954cff5b4
commit
354eff9f7b
23 changed files with 436 additions and 131 deletions
|
|
@ -55,3 +55,35 @@
|
|||
.select-lang
|
||||
width: 275px
|
||||
font-size: 1.0em
|
||||
|
||||
@media screen and (max-width: 800px)
|
||||
.auth-layout
|
||||
width: 100%
|
||||
height: 100%
|
||||
margin: 0px
|
||||
padding: 0px
|
||||
|
||||
.at-form-landing-logo
|
||||
margin-top: 20px
|
||||
margin-bottom: 20px
|
||||
|
||||
.at-form
|
||||
width: calc(100% - 50px)
|
||||
height: calc(100% - 162px)
|
||||
margin: 0px
|
||||
padding: 25px
|
||||
|
||||
button
|
||||
width: 100%
|
||||
|
||||
.at-form-lang
|
||||
width: 100%
|
||||
margin: 0px
|
||||
padding: 0px
|
||||
|
||||
.select-lang
|
||||
width: 200px
|
||||
font-size: 1.2em
|
||||
position: absolute
|
||||
left: calc((100% - 200px)/2)
|
||||
bottom: 25px
|
||||
|
|
|
|||
|
|
@ -1,13 +1,12 @@
|
|||
template(name="headerUserBar")
|
||||
#header-user-bar
|
||||
a.header-user-bar-name.js-open-header-member-menu
|
||||
i.fa.fa-chevron-down
|
||||
.header-user-bar-avatar
|
||||
+userAvatar(userId=currentUser._id)
|
||||
if currentUser.profile.fullname
|
||||
= currentUser.profile.fullname
|
||||
else
|
||||
= currentUser.username
|
||||
a.header-user-bar-avatar.js-change-avatar
|
||||
+userAvatar(userId=currentUser._id)
|
||||
|
||||
template(name="memberMenuPopup")
|
||||
ul.pop-over-list
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue