Browse Source

[svn r19459] Changed style button new courses (learn path) see FS#3688 and FS#3917

Arthur Portugal 16 years ago
parent
commit
86c2ab7733
2 changed files with 11 additions and 4 deletions
  1. 1 1
      main/css/public_admin/default.css
  2. 10 3
      main/newscorm/lp_add.php

+ 1 - 1
main/css/public_admin/default.css

@@ -2294,7 +2294,7 @@ float:left;
  *****************************************************/
 /* BUTTONS */
 button {
-    margin:0 5px 3px 3px !important;
+    margin:2px 5px 3px 3px !important;
     background-color: #DFDFDF;
     border-width: 1px;
 /*    -moz-border-radius-topright : 5px;

+ 10 - 3
main/newscorm/lp_add.php

@@ -119,11 +119,18 @@ echo '</div>';
 Display::display_normal_message(get_lang('AddLpIntro'),false);
 
 echo '<p>'.get_lang('AddLpToStart').' :</p>';
+
+echo '<div style="width:465px;">';
 echo '<form method="post">';
-	echo '<label for="idTitle">'.get_lang('Title').' : </label><input id="idTitle" name="learnpath_name" type="text" /> ';
-	echo '<button class="save"type="submit"/>'.get_lang('CreateLearningPath').'</button>';
-					echo '<input name="post_time" type="hidden" value="' . time() . '" />';
+echo '<div>';
+echo '<label for="idTitle">'.get_lang('Title').' : </label><input id="idTitle" name="learnpath_name" type="text" size="50" /> ';
+echo '</div>';
+echo '<div>';
+echo '<button  class="save" style="width:150px; float: right;" type="submit"/>'.get_lang('CreateLearningPath').'</button>';
+echo '</div>';
+echo '<input name="post_time" type="hidden" value="' . time() . '" />';
 echo '</form>';
+echo '</div>';
 
 // footer
 Display::display_footer();