123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- .grid-column-header {
- a {
- color: darken($dark70, 5%);
- font-size: 1rem;
- }
- a:hover, a.active {
- color: $primary-darker;
- }
- }
- // 排序图标
- .grid-sort {
- display: inline-block;
- margin: -2px -4px 0 3px;
- height: 15px;
- .up:before {
- font-family: "feather";
- padding-right: 0.3rem;
- font-size: 0.7rem;
- content: "\E845";
- }
- .down {
- margin: 6px 0 0 -1.17rem;
- }
- .down:after {
- font-family: "feather";
- content: "\E842";
- font-size: 0.7rem;
- }
- }
- .dcat-box.card {
- margin-bottom: 0;
- .card-header {
- border-bottom: 0;
- padding: 1.3rem 1.5rem;
- margin-bottom: .5rem;
- }
- .card-body {
- padding: 1rem 0 0;
- }
- .box-footer {
- border:0;
- padding: 1rem 1.5rem 1.3rem;
- }
- }
- // 过滤器滑动面板
- .right-side-filter-container .header {
- border-bottom: 1px solid $divider-color;
- width: 100%;
- background: #fff;
- z-index: 10;
- top: 0;
- margin-left: -1rem;
- }
- // 快捷新增
- .quick-create {
- td {
- padding-left: 45px;
- background-color: #f3f3f3;
- vertical-align: middle;
- //border-radius: .5rem;
- height: 42px;
- color: #777;
- border-bottom: $table-border-color;
- }
- }
- .grid-modal {
- .modal-body {
- //background:$body-bg;
- padding:1.5rem
- }
- }
- .simple-grid {
- .filter-box {
- background: transparent;
- box-shadow: none!important;
- padding: 0!important;
- margin: .5rem 0 -1rem!important;
- padding-bottom: 0!important;
- .form-group {
- margin-bottom: 1rem;
- }
- }
- .dcat-box.card {
- .card-header {
- padding: .8rem 0
- }
- .box-footer {
- padding: 1rem 1.5rem 0;
- }
- }
- }
- body:not(.dark-mode) .simple-grid {
- .card {
- box-shadow: none;
- }
- .table-collapse {
- box-shadow: none;
- background: transparent;
- //border: 1px solid #ededf1!important;
- .custom-data-table {
- background: transparent;
- }
- .custom-data-table.data-table tbody td {
- height: 48px;
- }
- .custom-data-table.data-table thead th {
- height: 20px;
- }
- .custom-data-table {
- padding: 5px 0 0;
- //border-top: 1px solid $table-border-color;
- border-bottom: 1px solid $table-border-color;
- }
- table.data-table thead tr:last-child th {
- border-bottom: 2px solid $table-border-color;
- }
- }
- }
|