Skip to content

Commit

Permalink
Fixed issue #06196: Misplaced PopUpEditor icon
Browse files Browse the repository at this point in the history
Dev Cleaned up HTML and styles
  • Loading branch information
tpartner committed Jun 12, 2012
1 parent fac9144 commit d84f199
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
8 changes: 4 additions & 4 deletions application/views/admin/assessments_view.php
Expand Up @@ -111,7 +111,9 @@
<ul><li><label for='name_<?php echo $assessmentlang;?>'><?php $clang->eT("Heading");?>:</label>
<input type='text' name='name_<?php echo $assessmentlang;?>' id='name_<?php echo $assessmentlang;?>' size='80' value='<?php echo $heading;?>'/></li>
<li><label for='assessmentmessage_<?php echo $assessmentlang;?>'><?php $clang->eT("Message");?>:</label>
<textarea name='assessmentmessage_<?php echo $assessmentlang;?>' id='assessmentmessage_<?php echo $assessmentlang;?>' rows='10' cols='80'><?php echo $message;?></textarea></li>
<textarea name='assessmentmessage_<?php echo $assessmentlang;?>' id='assessmentmessage_<?php echo $assessmentlang;?>' rows='10' cols='80'><?php echo $message;?></textarea>
<?php echo getEditor("assessment-text","assessmentmessage_$assessmentlang", "[".$clang->gT("Message:", "js")."]",$surveyid,$gid,null,$action); ?>
</li>
<li style="text-align:center;"><input type='submit' value='<?php $clang->eT("Save");?>'/></li></ul>
</div>
<?php } ?>
Expand All @@ -123,7 +125,5 @@
<input type='hidden' name='id' value='<?php echo $editId;?>' />
</div>
</form>
<?php foreach ($assessmentlangs as $assessmentlang) {
echo getEditor("assessment-text","assessmentmessage_$assessmentlang", "[".$clang->gT("Message:", "js")."]",$surveyid,$gid,null,$action);
}
<?php
} ?>
5 changes: 4 additions & 1 deletion styles/blobblueish/adminstyle.css
Expand Up @@ -668,7 +668,6 @@ ul.assessmentscope li label:first-child {
}

#assessmentsform #languagetabs input[type="text"] {
width: 565px;
margin-bottom: 5px;
}

Expand Down Expand Up @@ -1205,6 +1204,10 @@ textarea.updater-changelog {
padding-bottom:5px;
}

.editorLink {
vertical-align: top;
}

.form30 ul.editor-parent {
min-width:1000px;
}
Expand Down
4 changes: 4 additions & 0 deletions styles/gartergrey/adminstyle.css
Expand Up @@ -519,6 +519,10 @@ html>body .menubar-right .arrow-wrapper { /* For real browsers */
padding-bottom:5px;
}

.editorLink {
vertical-align: top;
}

.form30 ul.editor-parent {
min-width:1000px;
}
Expand Down
5 changes: 4 additions & 1 deletion styles/gringegreen/adminstyle.css
Expand Up @@ -676,7 +676,6 @@ ul.assessmentscope li label:first-child {
}

#assessmentsform #languagetabs input[type="text"] {
width: 565px;
margin-bottom: 5px;
}

Expand Down Expand Up @@ -1218,6 +1217,10 @@ textarea.updater-changelog {
padding-bottom:5px;
}

.editorLink {
vertical-align: top;
}

.form30 ul.editor-parent {
min-width:1000px;
}
Expand Down

0 comments on commit d84f199

Please sign in to comment.