We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd182ca commit 1ed23bbCopy full SHA for 1ed23bb
src/css/manage.scss
@@ -140,11 +140,22 @@
140
141
td.column-date, th.column-date {
142
white-space: nowrap;
143
- min-inline-size: 110px;
144
- max-inline-size: 200px;
+ inline-size: 130px; /* fixed column width */
+ min-inline-size: 130px;
145
+ max-inline-size: 130px;
146
text-align: right;
147
padding-inline-start: 8px;
148
padding-inline-end: 8px;
149
+ overflow: hidden;
150
+ text-overflow: ellipsis;
151
+ }
152
+
153
+ /* Ensure the name column can shrink/ellipsis instead of pushing the date. */
154
+ td.column-name, th.column-name {
155
+ max-inline-size: calc(100% - 140px);
156
157
158
+ white-space: nowrap;
159
}
160
161
0 commit comments