mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-04 08:14:43 +01:00
Adjust max-widths for the repository file table (#20243)
Adjust the max-widths for the repository file table to allow for nicer resizing of the names and commit messages. Fix #20040 Signed-off-by: Andrew Thornton <art27@cantab.net> ## Screenshots ## MediaXL  ## MediaLg  ## MediaMd  ## MediaSm 
This commit is contained in:
parent
c4368fc6bc
commit
8ee823037f
1 changed files with 22 additions and 2 deletions
|
@ -352,11 +352,31 @@
|
|||
overflow: initial;
|
||||
|
||||
&.name {
|
||||
max-width: 150px;
|
||||
@media @mediaXl {
|
||||
max-width: 150px;
|
||||
}
|
||||
@media @mediaLg {
|
||||
max-width: 200px;
|
||||
}
|
||||
@media @mediaMd {
|
||||
max-width: 300px;
|
||||
}
|
||||
width: 33%;
|
||||
|
||||
max-width: calc(100vw - 140px);
|
||||
}
|
||||
|
||||
&.message {
|
||||
max-width: 400px;
|
||||
@media @mediaXl {
|
||||
max-width: 400px;
|
||||
}
|
||||
@media @mediaLg {
|
||||
max-width: 350px;
|
||||
}
|
||||
@media @mediaMd {
|
||||
max-width: 250px;
|
||||
}
|
||||
width: 66%;
|
||||
}
|
||||
|
||||
&.age {
|
||||
|
|
Loading…
Add table
Reference in a new issue