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): Latest (master):
* Backlogs: make it possible to click on empty field * 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): v1.2.0 (2015-03-03):

View File

@@ -452,7 +452,7 @@ select.bool_cf {
} }
} }
#all_attributes { #issue-form {
.splitcontentleft, .splitcontentleft,
.splitcontentright { .splitcontentright {
width: 100%; width: 100%;
@@ -486,24 +486,25 @@ select.bool_cf {
padding-left: .2em; padding-left: .2em;
text-align: right; 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 * 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; #all_attributes > p[style] {
margin-bottom: 0; margin-right: 0 !important;
margin-bottom: 0;
padding-left: 0;
input {
top: 2px;
}
label {
margin-right: 0;
padding-left: 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