| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- .ngx-datatable.dark {
- box-shadow: none;
- background: #1b1e27;
- border: 1px solid #2f3646;
- color: #fff;
- font-size: 13px;
- .datatable-header {
- background: #181b24;
- color: #72809b;
- .datatable-header-cell {
- text-align: left;
- padding: 0.5rem 1.2rem;
- font-weight: bold;
- .datatable-header-cell-label {
- line-height: 24px;
- }
- }
- }
- .datatable-body {
- background: #1a1e28;
- .datatable-body-row {
- border-top: 1px solid #2f3646;
- .datatable-body-cell {
- text-align: left;
- padding: 0.5rem 1.2rem;
- vertical-align: top;
- }
- &:hover {
- background: #171b24;
- transition-property: background;
- transition-duration: 0.3s;
- transition-timing-function: linear;
- }
- &:focus {
- background-color: #232837;
- }
- &.active {
- background-color: #1483ff;
- color: #fff;
- }
- }
- }
- .datatable-footer {
- background: #232837;
- color: #72809b;
- margin-top: -1px;
- .page-count {
- line-height: 50px;
- height: 50px;
- padding: 0 1.2rem;
- }
- .datatable-pager {
- margin: 0 10px;
- vertical-align: top;
- ul {
- li {
- margin: 10px 0px;
- &:not(.disabled) {
- &.active a,
- &:hover a {
- background-color: #455066;
- font-weight: bold;
- }
- }
- }
- }
- a {
- height: 22px;
- min-width: 24px;
- line-height: 22px;
- padding: 0;
- border-radius: 3px;
- margin: 0 3px;
- text-align: center;
- vertical-align: top;
- text-decoration: none;
- vertical-align: bottom;
- color: #72809b;
- }
- .datatable-icon-left,
- .datatable-icon-skip,
- .datatable-icon-right,
- .datatable-icon-prev {
- font-size: 18px;
- line-height: 27px;
- padding: 0 3px;
- }
- }
- }
- .datatable-summary-row {
- .datatable-body-row {
- background-color: #14171f;
- &:hover {
- background-color: #14171f;
- }
- .datatable-body-cell {
- font-weight: bold;
- }
- }
- }
- }
|