mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-16 19:35:14 +00:00
fixed code wrapping on the build output page
This commit is contained in:
parent
fa9d3c8277
commit
8f12bd8f80
2 changed files with 11 additions and 0 deletions
|
@ -904,6 +904,11 @@ pre {
|
||||||
.build-details .commit-summary {
|
.build-details .commit-summary {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
.build-details .commit-summary dd {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 450px;
|
||||||
|
}
|
||||||
.build-details.affix {
|
.build-details.affix {
|
||||||
top: 0px;
|
top: 0px;
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
|
|
|
@ -1057,6 +1057,12 @@ pre {
|
||||||
|
|
||||||
.commit-summary {
|
.commit-summary {
|
||||||
float:left;
|
float:left;
|
||||||
|
|
||||||
|
dd {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 450px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
background:#FFF;
|
background:#FFF;
|
||||||
|
|
Loading…
Reference in a new issue