Use fixed width for project list checkbox cell (#23778)

* Use fixed width for project list checkbox
* Set word-break: break-word for project owner name (#23783)

GitOrigin-RevId: 4d3f443f99f366a43a1b59a7556c0341c06d7af9
This commit is contained in:
Alf Eaton
2025-02-21 13:19:18 +00:00
committed by Copybot
parent 717454dbbc
commit 549080df1e

View File

@@ -379,12 +379,12 @@
.dash-cell-name {
hyphens: auto;
width: 50%;
word-break: break-word;
}
.dash-cell-owner {
width: 20%;
word-break: break-word;
}
.dash-cell-date {
@@ -420,11 +420,11 @@
@include media-breakpoint-up(sm) {
.dash-cell-checkbox {
width: 4%;
width: 25px;
}
.dash-cell-name {
width: 50%;
width: calc(54% - 25px);
}
.dash-cell-owner {
@@ -442,11 +442,11 @@
@include media-breakpoint-up(md) {
.dash-cell-checkbox {
width: 4%;
width: 25px;
}
.dash-cell-name {
width: 44%;
width: calc(48% - 25px);
}
.dash-cell-owner {
@@ -469,11 +469,11 @@
@include media-breakpoint-up(lg) {
.dash-cell-checkbox {
width: 3%;
width: 25px;
}
.dash-cell-name {
width: 46%;
width: calc(49% - 25px);
}
.dash-cell-owner {
@@ -497,11 +497,11 @@
@include media-breakpoint-up(xl) {
.dash-cell-checkbox {
width: 3%;
width: 25px;
}
.dash-cell-name {
width: 46%;
width: calc(49% - 25px);
}
.dash-cell-owner {
@@ -519,11 +519,11 @@
@include media-breakpoint-up(xxl) {
.dash-cell-checkbox {
width: 2%;
width: 25px;
}
.dash-cell-name {
width: 49%;
width: calc(51% - 25px);
}
.dash-cell-owner {