Detection whether position is within community borders.

This commit is contained in:
Andreas Baldeau 2014-08-10 11:37:05 +02:00
parent cabc070b77
commit 43b4ad9178
31 changed files with 11960 additions and 16 deletions

View file

@ -12,6 +12,7 @@
@import "views/directives/_nodeForm";
@import "views/directives/_nodeSaved";
@import "views/directives/_tokenForm";
@import "views/dialogs/_outsideOfCommunityDialog";
body {
padding-bottom: 40px;

View file

@ -0,0 +1,37 @@
.outside-of-community-dialog {
.modal-header {
h3 {
@extend .modal-title;
}
.cancel-icon {
@extend .fa, .fa-times;
position: relative;
float: right;
top: 10px;
right: 0;
margin-left: 15px;
cursor: pointer;
color: $gray;
}
}
.modal-footer {
.proceed {
@extend .btn;
margin-left: 5px;
&.create {
@extend .btn-info;
}
&.update {
@extend .btn-primary;
}
}
}
}