123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- // ================================================================================================
- // File Name: data-list-view.scss
- // Description: SCSS file for data list view.
- // ----------------------------------------------------------------------------------------------
- // Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
- // Author: PIXINVENT
- // Author URL: http://www.themeforest.net/user/pixinvent
- // ================================================================================================
- // Core variables and mixins
- @import "../bootstrap/functions";
- @import "../bootstrap/mixins";
- @import "../bootstrap-extended/mixins";
- // Load variable overrides
- @import "../core/variables/variables";
- @import "../bootstrap/variables";
- // Overrides user variable
- @import "../core/variables/components-variables";
- $checkbox-border-color: #b4b4b4;
- // For checkbox alignment
- // for header section
- .data-list-view-header,.data-thumb-view-header{
- .table-responsive{
- .top{
- display: flex;
- justify-content: space-between;
- padding: 0 1rem;
- margin-bottom: 1rem;
- .action-btns{
- margin-top: 1.5rem;
- display: flex;
- .actions-dropodown{
- box-shadow: 0 2px 8px 0 rgba($pure-black,.14);
- border-radius: .5rem;
- margin-right: .75rem;
- .dropdown-toggle{
- font-size: 1.125rem;
- font-weight: 500;
- &:after{
- left: 0;
- }
- }
- }
- .dt-buttons{
- .btn{
- padding: 0.9rem .938rem;
- }
- }
- }
- .dataTables_length{
- display: inline-block;
- .custom-select{
- width: 8.714rem;
- height: 3rem;
- border-radius: 1.428rem;
- border: 1px solid $gray-300;
- font-size: 1rem;
- background-position:calc(100% - 12px) 13px, calc(100% - 20px) 13px, 100% 0;
- &:focus{
- box-shadow: none;
- }
- }
- }
- .dataTables_filter{
- display: inline-block;
- .form-control{
- padding: 1.45rem 2.8rem !important;
- border-radius: 1.428rem;
- border: 1px solid $gray-300;
- }
- label{
- position: relative;
- &:after{
- content: "\e8bd";
- font-family: "feather";
- position: absolute;
- left: 1.428rem;
- top: .928rem;
- }
- }
- }
- }
- // to align pagination to center
- .dataTables_wrapper{
- .dataTables_paginate{
- ul.pagination{
- justify-content: center;
- }
- }
- }
- }
- // add new data sidebar customization
- .add-new-data-sidebar{
- .overlay-bg{
- background: rgba($pure-black,.2);
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- display: none;
- transition: all .3s ease;
- opacity: 0;
- z-index: 1032;
- &.show{
- opacity: 1;
- display: block;
- }
- }
- .add-new-data{
- width: 28.57rem;
- max-width: 90vw;
- height: 100vh;
- height: calc(var(--vh, 1vh) * 100);
- background: $white;
- position: fixed;
- left: auto;
- right: 0;
- top: 0;
- z-index: 1033;
- box-shadow: 0 0 15px 0 rgba($pure-black,.05);
- transform: translateX(100%);
- transition: all .25s ease;
- overflow: hidden;
- &.show{
- transform: translateX(0%);
- }
- .new-data-title{
- padding-bottom: .714rem;
- border-bottom: 1px solid rgba($pure-black,.1);
- .hide-data-sidebar{
- position: relative;
- i{
- position: absolute;
- font-size: 1.71rem;
- right: 0;
- top: -.1428rem;
- cursor: pointer;
- }
- }
- }
- .data-items{
- border-bottom: 1px solid rgba($pure-black,.1);;
- height: calc(100vh - 10rem);
- position: relative;
- .data-field-col{
- margin-top: 1.25rem;
- &.data-list-upload{
- margin-top: 2rem;
- }
- .dropzone{
- min-height: 14.285rem;
- .dz-message{
- height: auto;
- &:before{
- font-size: 2.857rem;
- }
- }
- }
- }
- }
- }
- }
- }
- // datatable customization
- table.data-list-view.dataTable,table.data-thumb-view.dataTable{
- border-spacing: 0 1.3rem;
- padding: 0 0.7rem;
- thead{
- // th customization
- th{
- padding: .714rem 1.785rem;
- font-weight: 600;
- input:focus{
- outline: 0;
- }
- }
- th:first-child{
- padding-left: 0;
- }
- // for sorting icons
- .sorting_asc,.sorting_desc,.sorting{
- padding-right: inherit;
- &:before{
- font-size: .7rem;
- left: .857rem;
- top: .642rem;
- }
- &:after{
- font-size: .7rem;
- left: .857rem;
- top: 1.071rem;
- }
- }
- // checkbox customization starts
- .dt-checkboxes-select-all{
- input{
- width: 0;
- position: relative;
- &:before{
- border: 2px solid $checkbox-border-color;
- content: "";
- width: 1.071rem;
- height: 1.071rem;
- padding: 0;
- border-radius: 2px;
- transition: all .2s ease;
- transform: rotate(-90deg);
- overflow: hidden;
- transition: all .2s ease;
- position: absolute;
- }
- &:after{
- background-color: $primary;
- border: 2px solid $primary;
- font-family: "feather";
- content: "\e83f";
- font-size: 0.75rem;
- line-height: 1.2;
- color: $white;
- opacity: 0;
- position: absolute;
- width: .928rem;
- height: 1rem;
- transform: translate(100%);
- transform-origin: right;
- transition: all .2s ease;
- overflow: hidden;
- }
- &:active:checked{
- &:after{
- transform: translate(3px);
- }
- }
- &:checked{
- &:before{
- border: 2px solid $primary;
- transform: rotate(0deg);
- }
- &:after{
- transition: all .2s ease;
- opacity: 1;
- transform: translate(0)
- }
- }
- }
- }
- // checkbox customization ends
- }
- tbody{
- // for table row effects
- tr{
- background-color: $white;
- box-shadow: rgba($pure-black, 0.05) 0px 4px 20px 0px;
- cursor: pointer;
- transition: all .3s ease;
- border-radius: .5rem;
- &:hover{
- transform: translateY(-4px);
- transition: all .3s ease;
- }
- td:first-child{
- padding-left: 1rem;
- border-top-left-radius: .5rem;
- border-bottom-left-radius: .5rem;
- }
- td:last-child{
- border-top-right-radius: .5rem;
- border-bottom-right-radius: .5rem;
- }
- &.selected{
- td{
- border-radius: 0;
- }
- }
- }
- // for td effects
- td{
- padding: 1.357rem;
- border: none;
- vertical-align: middle;
- input:focus{
- outline: 0;
- }
- &.product-name{
- font-weight: 500;
- }
- &:focus{
- outline: 0;
- }
- // Check customization starts
- &.dt-checkboxes-cell{
- input{
- width: 0;
- position: relative;
- &:before{
- border: 2px solid $checkbox-border-color;
- position: absolute;
- left: -8px;
- content: "";
- width: 1.071rem;
- height: 1.071rem;
- padding: 0;
- border-radius: 2px;
- transform: rotate(-90deg);
- overflow: hidden;
- transition: all .2s ease;
- }
- &:after{
- background-color: $primary;
- font-family: "feather";
- content: "\e83f";
- font-size: 0.75rem;
- color: $white;
- opacity: 0;
- position: absolute;
- left: -.4285rem;
- width: .857rem;
- height: 1rem;
- overflow: hidden;
- transform: rotate(-90deg) translate(100%);
- transform-origin: right;
- transition: all .2s ease;
- }
- &:active:checked{
- &:after{
- transform: translate(3px); }
- }
- &:checked{
- &:before{
- transform: rotate(0deg);
- border: 2px solid $primary;
- transition: all .2s ease;
- }
- &:after{
- opacity: 1;
- transition: all .2s ease;
- transform: rotate(0deg) translate(0);
- }
- }
- }
- }
- // Check customization ends
- .progress{
- margin-bottom: 0;
- box-shadow: 0 4px 8px 0 rgba($pure-black,.12),0 2px 4px 0 rgba($pure-black,.08);
- }
- }
- }
- }
- // for thumb view images and padding
- table.data-thumb-view.dataTable{
- tbody{
- tr{
- td{
- padding-top: .714rem;
- padding-bottom: .714rem;
- &.product-img{
- img{
- height: 7.857rem;
- }
- }
- }
- }
- }
- }
- // to stack buttons
- @media(max-width: 768px){
- #data-list-view,#data-thumb-view {
- .table-responsive {
- .top{
- flex-direction: column;
- }
- .dt-buttons{
- width: auto;
- text-align: left;
- }
- .dataTables_length,
- .dataTables_filter{
- text-align: right;
- }
- }
- }
- }
- // to position upload text properly in small devices
- @media(max-width: 576px){
- .add-new-data-sidebar{
- .data-items{
- .data-list-upload{
- .dropzone{
- .dz-message{
- &:before{
- top: 3.428rem;
- }
- }
- }
- }
- }
- }
- }
- // IE Specific CSS
- _:-ms-lang(x),
- .data-list-view.dataTable,
- .data-thumb-view.dataTable{
- tbody,thead{
- tr{
- td,th{
- &.dt-checkboxes-cell {
- input{
- width: auto;
- }
- }
- }
- }
- }
- .table-responsive{
- .top{
- .dataTables_filter {
- .form-control{
- height: 1.4rem !important;
- padding: 0rem .5rem !important;
- &:after{
- display: none;
- }
- }
- }
- }
- }
- }
- @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
- #data-list-view,
- #data-thumb-view{
- .table-responsive{
- .top{
- .dataTables_filter {
- .form-control{
- height: 3rem !important;
- padding: 0rem 1rem !important;
- }
- label{
- &:after{
- display: none;
- }
- }
- }
- }
- }
- }
- }
- // Macos Firefox Specific
- @supports (-moz-osx-font-smoothing: auto) {
- .data-list-view,
- .data-thumb-view {
- input{
- width: auto !important;
- }
- }
- }
- // Safari specific
- @media not all and (min-resolution:.001dpcm){
- @supports (-webkit-appearance:none) {
- table{
- &.data-list-view,
- &.data-thumb-view{
- tbody{
- td.dt-checkboxes-cell{
- input:after{
- left: -.485rem;
- }
- }
- }
- }
- }
- .data-list-view,
- .data-thumb-view {
- .dt-checkboxes-cell{
- input{
- -webkit-appearance: none;
- top: -10px;
- }
- }
- }
- }
- }
- // macbook chrome specific
- .data-list-view,
- .data-thumb-view {
- .mac-checkbox{
- -webkit-appearance: none;
- top: -10px;
- }
- }
|