mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-23 00:46:30 +00:00
set the width on user dashboard commit-summary so text is not unneccesarily cut off
This commit is contained in:
parent
7646e9e5d3
commit
f6a15d33d8
2 changed files with 7 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
body {
|
||||
body {
|
||||
background: #FFF;
|
||||
}
|
||||
.container {
|
||||
|
@ -894,15 +894,16 @@ pre {
|
|||
}
|
||||
.build-details img {
|
||||
float: left;
|
||||
border-radius: 50%;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
margin-right: 30px;
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
}
|
||||
.build-details .commit-summary {
|
||||
float: left;
|
||||
width: 500px;
|
||||
}
|
||||
.build-details .commit-summary dd {
|
||||
overflow: hidden;
|
||||
|
|
|
@ -1047,9 +1047,9 @@ pre {
|
|||
|
||||
img {
|
||||
float:left;
|
||||
border-radius:50%;
|
||||
-webkit-border-radius:50%;
|
||||
-moz-border-radius:50%;
|
||||
-webkit-border-radius:50%;
|
||||
-moz-border-radius:50%;
|
||||
border-radius:50%;
|
||||
margin-right: 30px;
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
|
@ -1057,6 +1057,7 @@ pre {
|
|||
|
||||
.commit-summary {
|
||||
float:left;
|
||||
width: 500px;
|
||||
|
||||
dd {
|
||||
overflow: hidden;
|
||||
|
|
Loading…
Reference in a new issue