Files
lucent-laravel/front/sass/_table.scss
T

58 lines
1.2 KiB
SCSS
Raw Normal View History

2023-10-02 23:10:49 +03:00
.lx-table {
2024-08-14 22:04:34 +03:00
min-width: 600px;
2023-10-02 23:10:49 +03:00
overflow: auto;
table {
2024-08-14 22:04:34 +03:00
min-width: 600px;
2023-10-02 23:10:49 +03:00
}
th {
font-size: 15px;
font-weight: normal;
white-space: nowrap;
2023-11-21 14:06:41 +02:00
max-width: 400px;
2023-10-02 23:10:49 +03:00
// height: 34px;
padding: 8px 16px;
// border-bottom: 1px solid #ccc;
background: #eee;
&.is-sort {
background-color: rgba($primary, 0.1);
}
}
td {
font-size: 15px;
font-weight: normal;
white-space: nowrap;
2023-11-21 14:06:41 +02:00
max-width: 400px;
2023-10-02 23:10:49 +03:00
height: 48px;
padding: 4px 16px;
overflow: hidden;
&.is-sort {
background-color: rgba($primary, 0.1);
}
}
tr {
background-color: #fff;
&:hover {
box-shadow: inset 0em 0em 0em 10em rgba(0, 0, 0, 0.1);
}
}
tr:nth-child(odd) {
background-color: #f9f9f9;
}
td:nth-child(odd) {
// border-left: 1px solid #e4e4e4;
// border-right: 1px solid #e4e4e4;
}
th:nth-child(odd) {
border-left: 1px solid #e4e4e4;
border-right: 1px solid #e4e4e4;
}
.field-ui-number {
text-align: right;
}
}