2017-08-03 13:53:18 +03:00
|
|
|
@import '../../../../@theme/styles/themes';
|
2018-10-05 13:20:30 +03:00
|
|
|
@import '~@nebular/bootstrap/styles/buttons';
|
2018-11-19 16:57:35 +02:00
|
|
|
@import '~bootstrap/scss/mixins/breakpoints';
|
|
|
|
|
@import '~@nebular/theme/styles/global/breakpoints';
|
2017-06-27 12:28:07 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
@include nb-install-component() {
|
2017-06-27 12:28:07 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
nb-card-header {
|
2017-07-21 18:04:40 +03:00
|
|
|
display: flex;
|
2017-09-18 13:58:02 +03:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2017-07-21 18:04:40 +03:00
|
|
|
}
|
|
|
|
|
|
2017-09-18 13:58:02 +03:00
|
|
|
nb-card-body {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-18 11:27:40 +03:00
|
|
|
.example-container {
|
2017-09-18 13:58:02 +03:00
|
|
|
margin-bottom: 1.5rem;
|
2017-06-27 17:29:34 +03:00
|
|
|
}
|
|
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
.primary-container {
|
|
|
|
|
.original {
|
2017-08-01 17:42:21 +03:00
|
|
|
background-color: nb-theme(btn-primary-bg);
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.hover {
|
|
|
|
|
@include btn-primary-hover();
|
|
|
|
|
}
|
|
|
|
|
.active {
|
|
|
|
|
@include btn-primary-active();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 18:04:40 +03:00
|
|
|
.primary-container.outline .original {
|
|
|
|
|
background-color: transparent;
|
2017-08-01 17:42:21 +03:00
|
|
|
border: 2px solid nb-theme(btn-primary-bg);
|
2017-07-21 18:04:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.success-container {
|
2017-06-27 12:28:07 +03:00
|
|
|
.original {
|
2017-08-01 17:42:21 +03:00
|
|
|
background-color: nb-theme(btn-success-bg);
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.hover {
|
2017-07-21 18:04:40 +03:00
|
|
|
@include btn-success-hover();
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.active {
|
2017-07-21 18:04:40 +03:00
|
|
|
@include btn-success-active();
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 18:04:40 +03:00
|
|
|
.success-container.outline .original {
|
|
|
|
|
background-color: transparent;
|
2017-08-01 17:42:21 +03:00
|
|
|
border: 2px solid nb-theme(btn-success-bg);
|
2017-07-21 18:04:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.warning-container {
|
2017-06-27 12:28:07 +03:00
|
|
|
.original {
|
2017-08-01 17:42:21 +03:00
|
|
|
background-color: nb-theme(btn-warning-bg);
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.hover {
|
2017-07-21 18:04:40 +03:00
|
|
|
@include btn-warning-hover();
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.active {
|
2017-07-21 18:04:40 +03:00
|
|
|
@include btn-warning-active();
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 18:04:40 +03:00
|
|
|
.warning-container.outline .original {
|
|
|
|
|
background-color: transparent;
|
2017-08-01 17:42:21 +03:00
|
|
|
border: 2px solid nb-theme(btn-warning-bg);
|
2017-07-21 18:04:40 +03:00
|
|
|
}
|
|
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
.info-container {
|
|
|
|
|
.original {
|
2017-08-01 17:42:21 +03:00
|
|
|
background-color: nb-theme(btn-info-bg);
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.hover {
|
|
|
|
|
@include btn-info-hover();
|
|
|
|
|
}
|
|
|
|
|
.active {
|
|
|
|
|
@include btn-info-active();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 18:04:40 +03:00
|
|
|
.info-container.outline .original {
|
|
|
|
|
background-color: transparent;
|
2017-08-01 17:42:21 +03:00
|
|
|
border: 2px solid nb-theme(btn-info-bg);
|
2017-07-21 18:04:40 +03:00
|
|
|
}
|
|
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
.danger-container {
|
|
|
|
|
.original {
|
2017-08-01 17:42:21 +03:00
|
|
|
background-color: nb-theme(btn-danger-bg);
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.hover {
|
|
|
|
|
@include btn-danger-hover();
|
|
|
|
|
}
|
|
|
|
|
.active {
|
|
|
|
|
@include btn-danger-active();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 18:04:40 +03:00
|
|
|
.danger-container.outline .original {
|
|
|
|
|
background-color: transparent;
|
2017-08-01 17:42:21 +03:00
|
|
|
border: 2px solid nb-theme(btn-danger-bg);
|
2017-07-21 18:04:40 +03:00
|
|
|
}
|
|
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
.secondary-container {
|
|
|
|
|
.original {
|
2017-08-01 17:42:21 +03:00
|
|
|
border: 2px solid nb-theme(btn-secondary-border);
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
|
|
|
|
.hover {
|
|
|
|
|
@include btn-secondary-hover();
|
|
|
|
|
}
|
|
|
|
|
.active {
|
|
|
|
|
@include btn-secondary-active();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-21 18:04:40 +03:00
|
|
|
|
|
|
|
|
.secondary-container.outline .original {
|
|
|
|
|
background-color: transparent;
|
2017-08-01 17:42:21 +03:00
|
|
|
border: 2px solid nb-theme(btn-secondary-border);
|
2017-07-21 18:04:40 +03:00
|
|
|
}
|
2018-11-19 16:57:35 +02:00
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xxl) {
|
|
|
|
|
.example-container {
|
|
|
|
|
flex: 0 0 20%;
|
|
|
|
|
max-width: 20%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|