ffffng/app/styles/views/dialogs/_confirmDeletionDialog.scss

34 lines
564 B
SCSS
Raw Normal View History

2016-05-16 18:27:03 +02:00
.confirm-deletion-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;
&.proceed {
2016-05-16 22:30:35 +02:00
@extend .btn-warning;
2016-05-16 18:27:03 +02:00
}
}
}
}