NIHVIVO-193 Changed right float on addNewLink div to left float, to accomodate different window sizes.
This commit is contained in:
parent
7d26f8d322
commit
378808b007
2 changed files with 10 additions and 12 deletions
|
@ -5,19 +5,18 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#content form div {
|
#content form div {
|
||||||
clear: both;
|
clear: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#content form h6 {
|
#content form h6 {
|
||||||
font-size: 110%;
|
font-size: 110%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#addNewLink {
|
#content form div#addNewLink {
|
||||||
/* Right float isn't the right way to do this, because the correct right margin
|
float: left;
|
||||||
depends on window size. Should be floated left instead. */
|
clear: none;
|
||||||
float: right;
|
margin-left: 5em;
|
||||||
margin-right: 15em;
|
margin-top: .9em;
|
||||||
margin-top: .8em;
|
|
||||||
width: 30%;
|
width: 30%;
|
||||||
padding: .6em 0 .6em 1.5em;
|
padding: .6em 0 .6em 1.5em;
|
||||||
border: 1px solid #9c9c9c;
|
border: 1px solid #9c9c9c;
|
||||||
|
@ -27,7 +26,6 @@
|
||||||
#content form #existing {
|
#content form #existing {
|
||||||
float: left;
|
float: left;
|
||||||
clear: none;
|
clear: none;
|
||||||
display: inline-block;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#existingOrNew {
|
#existingOrNew {
|
||||||
|
|
|
@ -308,14 +308,14 @@
|
||||||
|
|
||||||
<form class="${editType}" action="<c:url value="/edit/processRdfForm2.jsp"/>" >
|
<form class="${editType}" action="<c:url value="/edit/processRdfForm2.jsp"/>" >
|
||||||
|
|
||||||
<div id="addNewLink">
|
|
||||||
If your organization is not listed, please <a href="#">add a new organization</a>.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="existing">
|
<div id="existing">
|
||||||
<v:input type="select" label="Select Existing Organization" labelClass="required" id="organizationUri" /><span id="existingOrNew">or</span>
|
<v:input type="select" label="Select Existing Organization" labelClass="required" id="organizationUri" /><span id="existingOrNew">or</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="addNewLink">
|
||||||
|
If your organization is not listed, please <a href="#">add a new organization</a>.
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="new">
|
<div id="new">
|
||||||
<h6>Add a New Organization</h6>
|
<h6>Add a New Organization</h6>
|
||||||
<v:input type="text" label="Organization Name" labelClass="required" id="newOrgName" />
|
<v:input type="text" label="Organization Name" labelClass="required" id="newOrgName" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue