Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

various fixes to material theme, arrows direction, cell padding #778

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions html/src/theme.material3.scss
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,6 @@ input[type='number'],
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
}
.el-pagination button.btn-next .el-icon-arrow-right {
rotate: -90deg;
}
.el-pagination button.btn-next {
border-top-right-radius: 16px;
border-bottom-right-radius: 16px;
Expand Down Expand Up @@ -573,6 +570,12 @@ input[type='number'],
font-weight: var(--md-sys-typescale-body-small-weight);
letter-spacing: var(--md-sys-typescale-body-small-tracking);
}

// unset table word break, breaks words such as the "note export" menus last cell.
.el-table .cell {
word-break: unset;
}

.el-table .el-table__body-wrapper table tr:first-child th,
.el-table table tr:first-child td {
border-top: none;
Expand Down Expand Up @@ -1661,16 +1664,7 @@ i.x-user-status {
font-variation-settings: 'FILL' 1;
}

/* table expend */
.el-icon-arrow-right::before {
content: 'expand_more';
font-family: 'Material Symbols Rounded';
font-size: 16px;
line-height: 12px;
vertical-align: bottom;
font-variation-settings: 'FILL' 1;
color: rgb(var(--md-sys-color-outline));
}


/* right arrow */
.el-icon-right::before {
Expand Down