mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
Backport #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 ![Screenshot from 2022-07-05 10-22-12](https://user-images.githubusercontent.com/1824502/177295867-7ba8cf60-8f61-4227-892f-e5a0477e4146.png) ## MediaLg ![Screenshot from 2022-07-05 10-24-37](https://user-images.githubusercontent.com/1824502/177296301-e066e206-10f7-4a15-a68b-0f772a95f369.png) ## MediaMd ![Screenshot from 2022-07-05 10-23-03](https://user-images.githubusercontent.com/1824502/177295965-69397649-16ca-456a-bc0c-ed507fcb7f44.png) ## MediaSm ![Screenshot from 2022-07-05 10-26-44](https://user-images.githubusercontent.com/1824502/177296700-ca2a853b-c47b-4592-baf4-4bc08a7e1c9c.png) Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
01a4fb0ae6
commit
c88a59bb23
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…
Reference in a new issue