2017-08-03 13:53:18 +03:00
|
|
|
@import '../../../@theme/styles/themes';
|
2017-08-01 17:42:21 +03:00
|
|
|
@import '~@nebular/theme/styles/global/bootstrap/buttons';
|
2017-09-11 11:41:24 +03:00
|
|
|
@import '~bootstrap/scss/mixins/breakpoints';
|
|
|
|
|
@import '~@nebular/theme/styles/global/bootstrap/breakpoints';
|
2017-05-02 19:28:27 +03:00
|
|
|
|
2017-08-01 17:42:21 +03:00
|
|
|
@include nb-install-component() {
|
2017-06-13 16:16:52 +03:00
|
|
|
/deep/ {
|
2017-06-14 11:45:37 +03:00
|
|
|
$button-size: 50px;
|
|
|
|
|
|
2017-06-27 16:34:00 +03:00
|
|
|
.container-title {
|
2017-08-01 17:42:21 +03:00
|
|
|
color: nb-theme(color-fg);
|
|
|
|
|
font-family: nb-theme(font-secondary);
|
2017-06-27 16:34:00 +03:00
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
2017-08-01 17:42:21 +03:00
|
|
|
color: nb-theme(color-fg-header);
|
2017-07-07 17:15:32 +03:00
|
|
|
font-size: 0.875rem;
|
2017-06-27 16:34:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subheader {
|
2017-07-07 17:15:32 +03:00
|
|
|
font-size: 0.75rem;
|
2017-08-23 20:08:41 +03:00
|
|
|
font-weight: nb-theme(font-weight-light);
|
2017-08-01 17:42:21 +03:00
|
|
|
color: nb-theme(color-fg);
|
2017-06-27 16:34:00 +03:00
|
|
|
}
|
|
|
|
|
|
2017-06-13 16:16:52 +03:00
|
|
|
.btn-demo {
|
|
|
|
|
width: 180px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
.state-container {
|
2017-06-13 16:16:52 +03:00
|
|
|
display: flex;
|
|
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
&:not(:last-child) {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
2017-06-13 16:16:52 +03:00
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
.state-value {
|
|
|
|
|
width: $button-size;
|
|
|
|
|
height: $button-size;
|
2017-09-15 20:01:43 +03:00
|
|
|
border-radius: nb-theme(btn-border-radius);
|
2017-06-27 12:28:07 +03:00
|
|
|
}
|
2017-06-13 16:16:52 +03:00
|
|
|
|
2017-06-27 12:28:07 +03:00
|
|
|
.state-details {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-left: 1rem;
|
|
|
|
|
height: $button-size;
|
|
|
|
|
}
|
2017-06-13 16:16:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.example-container {
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.example-container .container-btn {
|
2017-07-07 17:15:32 +03:00
|
|
|
margin-bottom: 1.5rem;
|
2017-06-13 16:16:52 +03:00
|
|
|
}
|
|
|
|
|
|
2017-06-14 11:45:37 +03:00
|
|
|
.block-level-buttons .btn-group {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-buttons .btn-group:not(:last-child) {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-buttons .icon-button-examples {
|
|
|
|
|
display: flex;
|
2017-09-18 11:27:40 +03:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
margin-right: 2rem;
|
|
|
|
|
min-width: 4rem;
|
|
|
|
|
}
|
2017-06-14 11:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-buttons .icon-button-examples:not(:last-child) {
|
|
|
|
|
margin-bottom: 1rem;
|
2017-06-13 16:16:52 +03:00
|
|
|
}
|
2017-04-29 18:53:19 +03:00
|
|
|
}
|
2017-09-11 11:41:24 +03:00
|
|
|
|
2017-09-18 11:27:40 +03:00
|
|
|
@include media-breakpoint-down(xxxl) {
|
|
|
|
|
ngx-default-buttons /deep/ nb-card-header {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include media-breakpoint-down(sm) {
|
2017-09-11 11:41:24 +03:00
|
|
|
ngx-action-groups /deep/ nb-card-body {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
2017-09-12 18:35:39 +03:00
|
|
|
padding: 0.75rem;
|
2017-09-11 11:41:24 +03:00
|
|
|
|
2017-09-18 11:27:40 +03:00
|
|
|
.action-groups-header {
|
|
|
|
|
margin: 0 0 0.5rem 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include media-breakpoint-down(is) {
|
|
|
|
|
|
|
|
|
|
ngx-action-groups /deep/ nb-card-body {
|
|
|
|
|
|
|
|
|
|
nb-action {
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-icon, .start-search {
|
|
|
|
|
font-size: 1.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-container {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-picture {
|
|
|
|
|
height: 1.75rem;
|
|
|
|
|
width: 1.75rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
|
|
|
|
|
|
|
|
/deep/.icon-buttons .icon-button-examples {
|
|
|
|
|
button {
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngx-action-groups /deep/ nb-card-body {
|
|
|
|
|
|
2017-09-11 11:41:24 +03:00
|
|
|
nb-action {
|
2017-09-12 18:35:39 +03:00
|
|
|
padding: 0.5rem;
|
2017-09-11 11:41:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-icon, .start-search {
|
2017-09-12 18:35:39 +03:00
|
|
|
font-size: 1.5rem;
|
2017-09-11 11:41:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-container {
|
2017-09-12 18:35:39 +03:00
|
|
|
font-size: 0.75rem;
|
2017-09-11 11:41:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-picture {
|
|
|
|
|
height: 1.5rem;
|
|
|
|
|
width: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngx-labeled-actions-group /deep/ nb-card-body {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngx-default-buttons /deep/ nb-card-header {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
2017-09-18 11:27:40 +03:00
|
|
|
|
|
|
|
|
ngx-block-level-buttons /deep/ {
|
|
|
|
|
.btn-primary {
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-09-11 11:41:24 +03:00
|
|
|
}
|
2017-04-29 18:53:19 +03:00
|
|
|
}
|