<button type="button" class="close" aria-label="Close" (click)="cancel()">
<span aria-hidden="true">×</span>
</button>
- <h4 class="modal-title">{{ title }}</h4>
+ <h4 class="title-page title-page-single">{{ title }}</h4>
</div>
<div class="modal-body" [innerHtml]="message"></div>
<div class="modal-footer">
- <button type="button" class="btn btn-default" data-dismiss="modal" (click)="cancel()">Cancel</button>
- <button type="button" class="btn btn-primary" (click)="confirm()">Confirm</button>
+ <button type="button" class="grey-button" data-dismiss="modal" (click)="cancel()">Cancel</button>
+ <button type="button" class="orange-button" (click)="confirm()">Confirm</button>
</div>
</div>
</div>
@Component({
selector: 'my-confirm',
- templateUrl: './confirm.component.html'
+ templateUrl: './confirm.component.html',
+ styles: [ '.button { padding: 0 13px; }' ]
})
export class ConfirmComponent implements OnInit {
@ViewChild('confirmModal') confirmModal: ModalDirective
.main-col {
margin-left: $menu-width;
- .title-page {
- color: #000;
- font-size: 16px;
- display: inline-block;
- margin-right: 55px;
- font-weight: $font-semibold;
- @include disable-default-a-behaviour;
-
- &.active, &.title-page-single {
- border-bottom: 2px solid $orange-color;
- font-weight: $font-bold;
- margin-top: 30px;
- margin-bottom: 25px;
- }
- }
-
.margin-content {
margin-left: $not-expanded-horizontal-margins;
margin-right: $not-expanded-horizontal-margins;
}
}
+.title-page {
+ color: #000;
+ font-size: 16px;
+ display: inline-block;
+ margin-right: 55px;
+ font-weight: $font-semibold;
+ @include disable-default-a-behaviour;
+
+ &.active, &.title-page-single {
+ border-bottom: 2px solid $orange-color;
+ font-weight: $font-bold;
+ margin-top: 30px;
+ margin-bottom: 25px;
+ }
+}
+
// On small screen, menu is absolute and displayed over the page
@media screen and (max-width: 500px) {
.title-menu-left {