mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
The layout issue was related to the lack of autoprexing for CSS
properties. c69f993 did improve the reload time significantly but for
that I had to replace `mquandalle:stylus` by the core `stylus`
package. Unfortunatly it is currently difficult to run an autoprefixer
with the core CSS compilers (as reported in
https://github.com/meteor/meteor/issues/5219).
So instead we rely on `nib` which transparently define some mixins for
autoprefixing, the only restrictions being that we have to manually
`@import 'nib'` on top of stylus files.
Fixes #461
19 lines
341 B
Stylus
19 lines
341 B
Stylus
@import 'nib'
|
|
|
|
.map-members
|
|
.mapping:first-of-type
|
|
border-top: solid 1px #999
|
|
.mapping
|
|
padding: 10px 0
|
|
border-bottom: solid 1px #999
|
|
.source
|
|
display: inline-block
|
|
width: 80%
|
|
.wekan
|
|
display: inline-block
|
|
width: 35px
|
|
.member
|
|
float: none
|
|
|
|
a.show-mapping
|
|
text-decoration underline
|