| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
-
- .iwb-table, .iwb-bootstrap-table {
- &.table-box {
- text-decoration: none;
- }
- .table-box-header {
- padding: 10px 1rem 0;
- .table-tool, .tableTool {
- height: 30px;
- .tool-menu {
- .menu-btn {
- color: $iwb-color;
- }
- }
- }
- }
- .table-box-content {
- padding: 10px 1rem 0;
- }
- .bootstrap-table {
- .table {
- width: 100% !important;
- thead {
- > tr {
- > th {
- /*padding: 0;
- margin: 0;*/
- background: scale-color($iwb-color,$lightness:60%);
- /*color:color-yiq($white);*/
- color: $white;
- }
- }
- }
- tbody {
- > tr {
- cursor: pointer;
- background: scale-color($iwb-color,$lightness:90%);
- &:nth-of-type(even) {
- background-image: linear-gradient(rgba(0,0,0,.03),rgba(0,0,0,.03))
- }
- > td {
- padding: 5px 2px;
- /*padding: 0;*/
- /*line-height: 32px;*/
- margin: 0;
- border-left: 1px solid $gray-300;
- /*padding: 0;
- margin: 0;
- background: scale-color($iwb-color,$lightness:20%);
- color: $white;*/
- &.bs-checkbox > .iwb-checkbox {
- padding-left: 20px;
- > span {
- top: -5px;
- left: 6px;
- }
- }
- .table-action {
- color: $iwb-color;
- margin: 0 3px;
- padding: 0 5px;
- &:hover {
- padding-bottom: 1px;
- border-bottom: 2px solid;
- }
- }
- }
- &:hover {
- > td {
- background: scale-color($iwb-color,$lightness:30%);
- color: $white;
- }
- .iwb-checkbox {
- > span {
- color: $white;
- }
- }
- .table-action {
- color: $white;
- }
- }
- &.no-records-found, &.selected {
- > td {
- background: scale-color($iwb-color,$lightness:20%);
- color: $white;
- }
- .iwb-checkbox {
- > span {
- color: $white;
- }
- }
- .table-action {
- color: $white;
- }
- }
- }
- }
- }
- .fixed-table-pagination {
- .pagination-detail {
- margin-top: 0;
- margin-bottom: 0;
- .pagination-info {
- font-size: .8rem;
- color: $iwb-color;
- }
- }
- .pagination {
- .page-item {
- .page-link {
- border-color: $iwb-color;
- &.active {
- color: $iwb-color;
- }
- }
- }
- }
- }
- }
- }
|