mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-23 08:56:29 +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;
|
background: #FFF;
|
||||||
}
|
}
|
||||||
.container {
|
.container {
|
||||||
|
@ -894,15 +894,16 @@ pre {
|
||||||
}
|
}
|
||||||
.build-details img {
|
.build-details img {
|
||||||
float: left;
|
float: left;
|
||||||
border-radius: 50%;
|
|
||||||
-webkit-border-radius: 50%;
|
-webkit-border-radius: 50%;
|
||||||
-moz-border-radius: 50%;
|
-moz-border-radius: 50%;
|
||||||
|
border-radius: 50%;
|
||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
width: 58px;
|
width: 58px;
|
||||||
height: 58px;
|
height: 58px;
|
||||||
}
|
}
|
||||||
.build-details .commit-summary {
|
.build-details .commit-summary {
|
||||||
float: left;
|
float: left;
|
||||||
|
width: 500px;
|
||||||
}
|
}
|
||||||
.build-details .commit-summary dd {
|
.build-details .commit-summary dd {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
|
@ -1047,9 +1047,9 @@ pre {
|
||||||
|
|
||||||
img {
|
img {
|
||||||
float:left;
|
float:left;
|
||||||
border-radius:50%;
|
-webkit-border-radius:50%;
|
||||||
-webkit-border-radius:50%;
|
-moz-border-radius:50%;
|
||||||
-moz-border-radius:50%;
|
border-radius:50%;
|
||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
width: 58px;
|
width: 58px;
|
||||||
height: 58px;
|
height: 58px;
|
||||||
|
@ -1057,6 +1057,7 @@ pre {
|
||||||
|
|
||||||
.commit-summary {
|
.commit-summary {
|
||||||
float:left;
|
float:left;
|
||||||
|
width: 500px;
|
||||||
|
|
||||||
dd {
|
dd {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
Loading…
Reference in a new issue