38 lines
639 B
SCSS
38 lines
639 B
SCSS
|
.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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|