Skip to content
This repository has been archived by the owner on Oct 22, 2020. It is now read-only.

Commit

Permalink
FLUID-4274: Fixed styling for Demo Settings controls.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Hung committed Jun 2, 2011
1 parent d6bb966 commit a97209f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 14 deletions.
10 changes: 10 additions & 0 deletions css/image-gallery.css
Expand Up @@ -37,6 +37,16 @@
/* no styles yet */
}

.igStyle-fileTypes {
display:block;
margin-left:20px;
}

.ig-settings-field {
margin-bottom:10px;
margin-left:1em;
}

#fileTypes{
margin-left: 20px;
}
34 changes: 20 additions & 14 deletions image-gallery.php
Expand Up @@ -83,21 +83,27 @@

<div class="ig-settings fl-hidden">
<h2>Demo settings</h2>
<label for="fileSizeLimit">File size limit:</label>
<select id="fileSizeLimit">
</select> MB<br />

<label for="fileUploadLimit">Upload queue limit:</label>
<select id="fileUploadLimit">
</select><br />

<div class="ig-settings-field">
<label for="fileSizeLimit">File size limit:</label>
<select id="fileSizeLimit">
</select> MB
</div>

<div class="ig-settings-field">
<label for="fileUploadLimit">Upload queue limit:</label>
<select id="fileUploadLimit">
</select>
</div>

<div class="ig-settings-field">
<span>Allowed image types:</span>
<fieldset>
<span class="fileTypes-row">
<input class="fileTypes-choice" id="fileTypes-choice" type="checkbox" />
<label class="fileTypes-label" for="fileTypes-choice">choice</label>
</span>
</fieldset>
<fieldset>
<span class="igStyle-fileTypes fileTypes-row">
<input class="fileTypes-choice" id="fileTypes-choice" type="checkbox" />
<label class="fileTypes-label" for="fileTypes-choice">choice</label>
</span>
</fieldset>
</div>
</div>

<div>
Expand Down

0 comments on commit a97209f

Please sign in to comment.