correct issue form columns widths so they will be equal in all fieldsets

This commit is contained in:
mrliptontea
2015-03-11 12:10:11 +01:00
parent ac70bf5af5
commit 502fe435fb
3 changed files with 21 additions and 18 deletions

View File

@@ -55,6 +55,8 @@ Regrettably, optional file include is not possible in SASS, so I would recommend
Latest (master):
* Backlogs: make it possible to click on empty field
* Corrected border radius for changesets divs
* Corrected issue form columns widths so they will be equal in all fieldsets
v1.2.0 (2015-03-03):

View File

@@ -452,7 +452,7 @@ select.bool_cf {
}
}
#all_attributes {
#issue-form {
.splitcontentleft,
.splitcontentright {
width: 100%;
@@ -486,24 +486,25 @@ select.bool_cf {
padding-left: .2em;
text-align: right;
}
}
/**
* Hack: first <p> in issue form ("private" option) is moved to the right with
* inline styles. Don't allow it break the layout
*/
> p[style] {
margin-right: 0 !important;
margin-bottom: 0;
/**
* Hack: first <p> in issue form ("private" option) is moved to the right with
* inline styles. Don't allow it break the layout
*/
#all_attributes > p[style] {
margin-right: 0 !important;
margin-bottom: 0;
padding-left: 0;
input {
top: 2px;
}
label {
margin-right: 0;
padding-left: 0;
input {
top: 2px;
}
label {
margin-right: 0;
padding-left: 0;
}
}
}

File diff suppressed because one or more lines are too long