/* * Component: Box * -------------- */ .card { @extend .mb-3; @include box-shadow($card-shadow); &.bg-dark { &, .card-body { color: $white; } } &.maximized-card { z-index: 9999; width: 100% !important; height: 100% !important; max-width: 100% !important; max-height: 100% !important; position: fixed; top: 0; left: 0; &.was-collapsed .card-body { display: block !important; } [data-widget="collapse"] { display: none; } .card-header, .card-footer { @include border-radius(0 !important); } } // collapsed mode &.collapsed-card { .card-body, .card-footer { display: none; } } .nav.flex-column { > li { border-bottom: 1px solid $card-border-color; margin: 0; &:last-of-type { border-bottom: none; } } } // fixed height to 300px &.height-control { .card-body { max-height: 300px; overflow: auto; } } .border-right { border-right: 1px solid $card-border-color; } .border-left { border-left: 1px solid $card-border-color; } } // Maximized Card Body Scroll fix html.maximized-card { overflow: hidden; } // Add clearfix to header, body and footer .card-header, .card-body, .card-footer { @include clearfix(); } // Box header .card-header { position: relative; background-color: transparent; border-bottom: 1px solid $card-border-color; @if $enable-rounded { @include border-top-radius($border-radius); } .collapsed-card & { border-bottom: none; } > .card-tools { position: absolute; right: 1rem; top: .5rem; [data-toggle="tooltip"] { position: relative; } } } .card-title { font-size: $card-title-font-size; font-weight: $card-title-font-weight; margin: 0; } // Box Tools Buttons .btn-tool { padding: .25rem .5rem; font-size: $font-size-sm; background: transparent; color: $gray-500; .btn-group.show &, &:hover { color: $gray-700; } .show &, &:focus { box-shadow: none !important; } } // Box Body .card-body { // @include border-radius-sides(0, 0, $border-radius, $border-radius); .no-header & { // @include border-top-radius($border-radius); } // Tables within the box body > .table { margin-bottom: 0; > thead > tr > th, > thead > tr > td { border-top-width: 0; } } // Calendar within the box body .fc { margin-top: 5px; } .full-width-chart { margin: -19px; } &.p-0 .full-width-chart { margin: -9px; } } .chart-legend { @extend .list-unstyled; margin: 10px 0; > li { @media (max-width: map-get($grid-breakpoints, sm)) { float: left; margin-right: 10px; } } } // Comment Box .card-comments { background: #f7f7f7; .card-comment { @include clearfix(); padding: 8px 0; border-bottom: 1px solid #eee; &:last-of-type { border-bottom: 0; } &:first-of-type { padding-top: 0; } img { @extend .img-sm; float: left; } } .comment-text { margin-left: 40px; color: #555; } .username { color: #444; display: block; font-weight: 600; } .text-muted { font-weight: 400; font-size: 12px; } } // Widgets //----------- // Widget: TODO LIST .todo-list { margin: 0; padding: 0; list-style: none; overflow: auto; // Todo list element > li { @include border-radius(2px); padding: 10px; background: #f4f4f4; margin-bottom: 2px; border-left: 2px solid #e6e7e8; color: #444; &:last-of-type { margin-bottom: 0; } > input[type='checkbox'] { margin: 0 10px 0 5px; } .text { display: inline-block; margin-left: 5px; font-weight: 600; } // Time labels .label { margin-left: 10px; font-size: 9px; } // Tools and options box .tools { display: none; float: right; color: theme-color("danger"); // icons > .fa, > .fas, > .far, > .fab, > .glyphicon, > .ion { margin-right: 5px; cursor: pointer; } } &:hover .tools { display: inline-block; } &.done { color: #999; .text { text-decoration: line-through; font-weight: 500; } .label { background: $gray-500 !important; } } } // Color varaity .danger { border-left-color: theme-color("danger"); } .warning { border-left-color: theme-color("warning"); } .info { border-left-color: theme-color("info"); } .success { border-left-color: theme-color("success"); } .primary { border-left-color: theme-color("primary"); } .handle { display: inline-block; cursor: move; margin: 0 5px; } } // END TODO WIDGET // Input in box .card-input { max-width: 200px; } @each $name, $color in $theme-colors { .card-#{$name} { &:not(.card-outline) { .card-header { background-color: $color; border-bottom: 0; &, a { color: color-yiq($color); } } } &.card-outline { border-top: 3px solid $color; } } .bg-#{$name}, .bg-#{$name}-gradient, .card-#{$name}:not(.card-outline) { .btn-tool { color: rgba(color-yiq($color), 0.8); &:hover { color: color-yiq($color); } } } .card.bg-#{$name}, .card.bg-#{$name}-gradient { .bootstrap-datetimepicker-widget { .table td, .table th { border: none; } table thead tr:first-child th:hover, table td.day:hover, table td.hour:hover, table td.minute:hover, table td.second:hover { background: darken($color, 8%); color: color-yiq($color); } table td.active, table td.active:hover { background: lighten($color, 10%); color: color-yiq($color); } } } }