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

75 lines
1.5 KiB
SCSS
Raw Normal View History

2024-08-15 14:44:53 +03:00
.table {
2024-08-14 22:04:34 +03:00
min-width: 600px;
2023-10-02 23:10:49 +03:00
overflow: auto;
2024-08-15 14:44:53 +03:00
border-radius: 12px;
padding: 20px;
background: var(--background);
filter: brightness(97%);
2023-10-02 23:10:49 +03:00
table {
2024-08-15 14:44:53 +03:00
width: 100%;
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;
&.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;
2024-08-15 14:44:53 +03:00
2023-10-02 23:10:49 +03:00
overflow: hidden;
&.is-sort {
background-color: rgba($primary, 0.1);
}
2024-08-15 14:44:53 +03:00
img{
width: 48px;
}
.status{
color:var(--accent);
font-size: 80%;
}
.row-name{
display: flex;
align-items: center;
gap: 6px;
}
2023-10-02 23:10:49 +03:00
}
tr {
&:hover {
box-shadow: inset 0em 0em 0em 10em rgba(0, 0, 0, 0.1);
}
}
tr:nth-child(odd) {
2024-08-15 14:44:53 +03:00
//background-color: #f9f9f9;
2023-10-02 23:10:49 +03:00
}
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;
}
}