Fixed imports in models.less which breaks the gulp build

This commit is contained in:
Thomas Cazade 2017-12-15 16:15:14 +01:00 committed by rhyneav
parent 86f27d6121
commit abb85a3092

View file

@ -1,3 +1,7 @@
@import './colors.less';
@import './container.less';
@import './utilities.less';
.translate(@x; @y) { .translate(@x; @y) {
-webkit-transform: translate(@x, @y); -webkit-transform: translate(@x, @y);
-ms-transform: translate(@x, @y); -ms-transform: translate(@x, @y);
@ -15,24 +19,24 @@
} }
.modal{ .modal{
&:before{ &:before{
content: ""; content: "";
display: none; display: none;
background: rgba(0,0,0,.6); background: rgba(0,0,0,.6);
position: fixed; position: fixed;
top: 0; left: 0; right: 0; bottom: 0; top: 0; left: 0; right: 0; bottom: 0;
z-index: 10; z-index: 10;
} }
&:target{ &:target{
&:before{ &:before{
display: flex; display: flex;
} }
.modal-body{ .modal-body{
.translate(0, 0); .translate(0, 0);
top: 20%; top: 20%;
} }
} }
@ -65,7 +69,7 @@
&:hover{ &:hover{
color: @muted; color: @muted;
} }
} }
.modal-title, h4 { .modal-title, h4 {