mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 02:51:57 +02:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user