[svn r10989] increase the size of all most important titles (input field) in the platform

skala
Julian Prud'homme 18 years ago
parent 2ef12e4cb5
commit a62dc38259
  1. 9
      main/css/academica/default.css
  2. 9
      main/css/baby/default.css
  3. 9
      main/css/corporativa/default.css
  4. 8
      main/css/default/default.css
  5. 9
      main/css/default_with_tabs/default.css
  6. 9
      main/css/dokeosgrey/default.css
  7. 6
      main/document/create_document.php
  8. 4
      main/exercice/exercise.class.php
  9. 10
      main/forum/forumfunction.inc.php

@ -1386,3 +1386,12 @@ div.system_announcement {
.skip {
display: none;
}
/*
------------------------------------------------------------------------------
OTHERS
------------------------------------------------------------------------------
*/
.input_titles{
width: 300px;
}

@ -1407,3 +1407,12 @@ div.system_announcement {
.skip {
display: none;
}
/*
------------------------------------------------------------------------------
OTHERS
------------------------------------------------------------------------------
*/
.input_titles{
width: 300px;
}

@ -1337,3 +1337,12 @@ div.system_announcement {
.skip {
display: none;
}
/*
------------------------------------------------------------------------------
OTHERS
------------------------------------------------------------------------------
*/
.input_titles{
width: 300px;
}

@ -2011,3 +2011,11 @@ input.forms {
display: none;
}
/*
------------------------------------------------------------------------------
OTHERS
------------------------------------------------------------------------------
*/
.input_titles{
width: 300px;
}

@ -1361,3 +1361,12 @@ padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
.skip {
display: none;
}
/*
------------------------------------------------------------------------------
OTHERS
------------------------------------------------------------------------------
*/
.input_titles{
width: 300px;
}

@ -1333,3 +1333,12 @@ padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;}
}
/*
------------------------------------------------------------------------------
OTHERS
------------------------------------------------------------------------------
*/
.input_titles{
width: 300px;
}

@ -1,5 +1,5 @@
<?php
// $Id: create_document.php 10595 2007-01-05 14:05:42Z elixir_inter $
// $Id: create_document.php 10989 2007-01-30 08:21:34Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -144,7 +144,7 @@ $form = new FormValidator('create_document');
$form->addElement('hidden', 'dir');
$default['dir'] = $dir;
// Filename
$form->add_textfield('filename', get_lang('FileName'));
$form->add_textfield('filename', get_lang('FileName'),true,'class="input_titles"');
$form->addRule('filename', get_lang('FileExists'), 'callback', 'document_exists');
/**
* Check if a document width the choosen filename allready exists
@ -162,7 +162,7 @@ $renderer->setElementTemplate($filename_template, 'filename');
// If allowed, add element for document title
if (get_setting('use_document_title') == 'true')
{
$form->add_textfield('title', get_lang('Title'));
$form->add_textfield('title', get_lang('Title'),true,'class="input_titles"');
}
// HTML-editor
$form->add_html_editor('content', get_lang('Content'), false, true);

@ -22,7 +22,7 @@
* Exercise class: This class allows to instantiate an object of type Exercise
* @package dokeos.exercise
* @author Olivier Brouckaert
* @version $Id: exercise.class.php 10789 2007-01-18 19:18:27Z pcool $
* @version $Id: exercise.class.php 10989 2007-01-30 08:21:34Z elixir_julian $
*/
@ -607,7 +607,7 @@ class Exercise
{
// title
$form -> addElement('text', 'exerciseTitle', get_lang('ExerciseName').' : ');
$form -> addElement('text', 'exerciseTitle', get_lang('ExerciseName').' : ','class="input_titles"');
// fck editor
global $fck_attribute;

@ -149,7 +149,7 @@ function show_add_forumcategory_form($inputvalues=array())
// settting the form elements
$form->addElement('header', '', get_lang('AddForumCategory'));
$form->addElement('text', 'forum_category_title', get_lang('Title'));
$form->addElement('text', 'forum_category_title', get_lang('Title'),'class="input_titles"');
$form->addElement('html_editor', 'forum_category_comment', get_lang('Comment'));
$form->addElement('submit', 'SubmitForumCategory', 'OK');
@ -195,7 +195,7 @@ function show_add_forum_form($inputvalues=array())
}
// The title of the forum
$form->addElement('text', 'forum_title', get_lang('Title'));
$form->addElement('text', 'forum_title', get_lang('Title'),'class="input_titles"');
// The comment of the forum
$form->addElement('html_editor', 'forum_comment', get_lang('Comment'));
@ -357,7 +357,7 @@ function show_edit_forumcategory_form($inputvalues=array())
// settting the form elements
$form->addElement('header', '', get_lang('EditForumCategory'));
$form->addElement('hidden', 'forum_category_id');
$form->addElement('text', 'forum_category_title', get_lang('Title'));
$form->addElement('text', 'forum_category_title', get_lang('Title'),'class="input_titles"');
$form->addElement('html_editor', 'forum_category_comment', get_lang('Comment'));
$form->addElement('submit', 'SubmitEditForumCategory', 'OK');
@ -1627,7 +1627,7 @@ function show_add_post_form($action='', $id='', $form_values='')
$form->addElement('text', 'poster_name', get_lang('Name'));
}
$form->addElement('text', 'post_title', get_lang('Title'));
$form->addElement('text', 'post_title', get_lang('Title'),'class="input_titles"');
$form->addElement('html_editor', 'post_text', get_lang('Text'));
if ($forum_setting['allow_post_notificiation'] AND isset($_user['user_id']))
@ -1792,7 +1792,7 @@ function show_edit_post_form($current_post, $current_thread, $form_values='')
{
$form->addElement('hidden', 'is_first_post_of_thread', '1');
}
$form->addElement('text', 'post_title', get_lang('Title'));
$form->addElement('text', 'post_title', get_lang('Title'),'class="input_titles"');
$form->addElement('html_editor', 'post_text', get_lang('Text'));
if ($forum_setting['allow_post_notificiation'])

Loading…
Cancel
Save