|
123456789101112131415161718192021222324 |
- .tableList table tr:nth-child(2n){
- background: none!important;
- }
-
- .tableList input[type='button'] {
- background: #cadbf1;
- color: #1269d3;
- border: none;
- padding: 4px 10px;
- }
-
- .tableList input[type='button']:hover {
- color: #FFFFFF !important;
- border-color: var(--color) !important;
- background-color: var(--color) !important;
- }
-
- .tableList table tr:nth-child(odd){
- background: transparent!important;
- }
-
- .tableList table tr td{
- border-bottom: 1px dashed #d0d0d0;
- }
|