mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 09:51:01 +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 {
|
||||
float: left;
|
||||
}
|
||||
.build-details .commit-summary dd {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 450px;
|
||||
}
|
||||
.build-details.affix {
|
||||
top: 0px;
|
||||
padding-top: 15px;
|
||||
|
|
|
@ -1057,6 +1057,12 @@ pre {
|
|||
|
||||
.commit-summary {
|
||||
float:left;
|
||||
|
||||
dd {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 450px;
|
||||
}
|
||||
}
|
||||
|
||||
background:#FFF;
|
||||
|
|
Loading…
Reference in a new issue