Files
Orchard/src/Orchard.Web/Modules/TinyMce/Scripts/plugins/addmedia/addmedia.htm
Nathan Heskew ef5f7edca7 Changing the width of the addmedia input
From a character count to fixed (to fit in a fixed-width window w/ different font sizes)

--HG--
branch : dev
2010-03-07 00:42:42 -08:00

36 lines
1.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>{#addmedia_dlg.title}</title>
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
<script type="text/javascript" src="js/addmedia.js"></script>
</head>
<body>
<form enctype="multipart/form-data" method="post" onsubmit="return AddMediaDialog.addMedia(this);">
<div class="tabs">
<ul>
<li id="general_tab" class="current"><span><a href="#general_tab">{#addmedia_dlg.title}</a></span></li>
</ul>
</div>
<div class="panel_wrapper">
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<td class="nowrap"><label for="pageTitle">{#addmedia_dlg.path_label}</label></td>
<td><input id="MediaItemPath" name="MediaItemPath" type="file" class="text" style="width:410px;" /></td>
</tr>
</table>
<input type="hidden" id="MediaPath" name="MediaPath" />
</div>
<div class="mceActionPanel">
<div style="float:left">
<input name="__RequestVerificationToken" type="hidden" />
<input type="submit" name="insert" value="{#insert}" id="insert" />
</div>
<div style="float:right">
<input type="button" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" id="cancel" />
</div>
</div>
</form>
</body>
</html>