diff --git a/codepot/src/codepot/views/file_delete.php b/codepot/src/codepot/views/file_delete.php
index f378cf8a..2a9d428a 100644
--- a/codepot/src/codepot/views/file_delete.php
+++ b/codepot/src/codepot/views/file_delete.php
@@ -42,27 +42,28 @@ $this->load->view (
'.htmlspecialchars($message).''; ?>
+
diff --git a/codepot/src/codepot/views/file_edit.php b/codepot/src/codepot/views/file_edit.php
index af25c330..dc3f32b0 100644
--- a/codepot/src/codepot/views/file_edit.php
+++ b/codepot/src/codepot/views/file_edit.php
@@ -79,59 +79,60 @@ $this->load->view (
'.htmlspecialchars($message).''; ?>
+
=form_open_multipart("file/$mode/{$project->id}/" . $this->converter->AsciiToHex($file->name))?>
- =form_fieldset()?>
-
- =form_label($this->lang->line('Name').': ', 'file_name')?>
- name), $extra);
- else
- print form_upload('file_name', set_value('file_name', $file->name), $extra);
- ?>
- =form_error('file_name');?>
-
-
- =form_label($this->lang->line('Tag').': ', 'file_tag')?>
-
- =form_input('file_tag', set_value('file_tag', $file->tag), $extra)?>
- =form_error('file_tag');?>
-
-
-
- =form_label($this->lang->line('Summary').': ', 'file_summary')?>
- =form_error('file_summary');?>
-
-
-
- =form_input('file_summary', set_value('file_summary', $file->summary), $extra)?>
-
-
-
-
- =form_textarea('file_description', set_value('file_description', $file->description), 'id=file_edit_mainarea_description')?>
-
-
+
+ =form_label($this->lang->line('Name').': ', 'file_name')?>
+ name), $extra);
+ else
+ print form_upload('file_name', set_value('file_name', $file->name), $extra);
+ ?>
+ =form_error('file_name');?>
+
-
- =form_hidden('file_projectid', set_value('file_projectid', $file->projectid))?>
+
+ =form_label($this->lang->line('Tag').': ', 'file_tag')?>
+
+ =form_input('file_tag', set_value('file_tag', $file->tag), $extra)?>
+ =form_error('file_tag');?>
+
+
+
+ =form_label($this->lang->line('Summary').': ', 'file_summary')?>
+ =form_error('file_summary');?>
+
+
+
+ =form_input('file_summary', set_value('file_summary', $file->summary), $extra)?>
+
+
+
+
+ =form_textarea('file_description', set_value('file_description', $file->description), 'id=file_edit_mainarea_description')?>
+
+
- lang->line('Update'): $this->lang->line('Create'); ?>
- =form_submit('file', $caption)?>
+
+ =form_hidden('file_projectid', set_value('file_projectid', $file->projectid))?>
+
+ lang->line('Update'): $this->lang->line('Create'); ?>
+ =form_submit('file', $caption)?>
- =form_fieldset_close()?>
=form_close();?>
+
diff --git a/codepot/src/codepot/views/issue_delete.php b/codepot/src/codepot/views/issue_delete.php
index a042313b..4c0da436 100644
--- a/codepot/src/codepot/views/issue_delete.php
+++ b/codepot/src/codepot/views/issue_delete.php
@@ -21,8 +21,8 @@
load->view (
- 'projectbar',
- array (
+ 'projectbar',
+ array (
'banner' => NULL,
'page' => array (
@@ -31,8 +31,8 @@ $this->load->view (
'project' => $project,
),
- 'ctxmenuitems' => array ()
- )
+ 'ctxmenuitems' => array ()
+ )
);
?>
@@ -42,27 +42,28 @@ $this->load->view (
'.htmlspecialchars($message).''; ?>
+
diff --git a/codepot/src/codepot/views/issue_edit.php b/codepot/src/codepot/views/issue_edit.php
index ce3ed63e..cbd4328a 100644
--- a/codepot/src/codepot/views/issue_edit.php
+++ b/codepot/src/codepot/views/issue_edit.php
@@ -86,71 +86,71 @@ $this->load->view (
}
?>
+
=form_open("issue/{$mode}/{$project->id}/".$this->converter->AsciiToHex($issue->id))?>
- =form_fieldset()?>
-
- =form_hidden('issue_id', set_value('issue_id', $issue->id))?>
- =form_hidden('issue_projectid', set_value('issue_projectid', $issue->projectid))?>
- =form_hidden('issue_status', set_value('issue_status', $issue->status))?>
- =form_hidden('issue_priority', set_value('issue_priority', $issue->priority))?>
- =form_hidden('issue_owner', set_value('issue_owner', $issue->owner))?>
-
+
+ =form_hidden('issue_id', set_value('issue_id', $issue->id))?>
+ =form_hidden('issue_projectid', set_value('issue_projectid', $issue->projectid))?>
+ =form_hidden('issue_status', set_value('issue_status', $issue->status))?>
+ =form_hidden('issue_priority', set_value('issue_priority', $issue->priority))?>
+ =form_hidden('issue_owner', set_value('issue_owner', $issue->owner))?>
+
-
- type));
- }
- else
- {
- print form_label($this->lang->line('Type').': ', 'issue_type');
- print form_dropdown (
- 'issue_type',
- $issue_type_array,
- set_value('issue_type', $issue->type),
- 'id="issue_edit_mainarea_type"');
- print form_error('issue_type');
- }
+
+ type));
+ }
+ else
+ {
+ print form_label($this->lang->line('Type').': ', 'issue_type');
+ print form_dropdown (
+ 'issue_type',
+ $issue_type_array,
+ set_value('issue_type', $issue->type),
+ 'id="issue_edit_mainarea_type"');
+ print form_error('issue_type');
+ }
+ ?>
+
+
+
+ =form_label($this->lang->line('Summary').': ', 'issue_summary')?>
+ =form_error('issue_summary');?>
+
+
+ =form_input('issue_summary',
+ set_value('issue_summary', $issue->summary),
+ 'size="80" id="issue_edit_mainarea_summary"')
?>
-
+
-
- =form_label($this->lang->line('Summary').': ', 'issue_summary')?>
- =form_error('issue_summary');?>
-
-
- =form_input('issue_summary',
- set_value('issue_summary', $issue->summary),
- 'size="80" id="issue_edit_mainarea_summary"')
- ?>
-
-
-
-
- 'issue_description',
- 'value' => set_value ('issue_description', $issue->description),
- 'id' => 'issue_edit_mainarea_description',
- 'rows' => 20,
- 'cols' => 80
- );
- print form_textarea ($xdata);
- ?>
-
-
+
+
+ 'issue_description',
+ 'value' => set_value ('issue_description', $issue->description),
+ 'id' => 'issue_edit_mainarea_description',
+ 'rows' => 20,
+ 'cols' => 80
+ );
+ print form_textarea ($xdata);
+ ?>
+
+
- lang->line('Update'): $this->lang->line('Create'); ?>
- =form_submit('issue', $caption)?>
+ lang->line('Update'): $this->lang->line('Create'); ?>
+ =form_submit('issue', $caption)?>
- =form_fieldset_close()?>
=form_close();?>
+
diff --git a/codepot/src/codepot/views/login.php b/codepot/src/codepot/views/login.php
index 7299da5f..47bff265 100644
--- a/codepot/src/codepot/views/login.php
+++ b/codepot/src/codepot/views/login.php
@@ -28,7 +28,7 @@
$this->load->view (
'projectbar',
array (
- 'banner' => NULL,
+ 'banner' => NULL,
'page' => array (
'type' => 'login',
@@ -45,59 +45,57 @@ $this->load->view (
$message"; ?>
+
diff --git a/codepot/src/codepot/views/project_delete.php b/codepot/src/codepot/views/project_delete.php
index 6a8de4b1..72167f5f 100644
--- a/codepot/src/codepot/views/project_delete.php
+++ b/codepot/src/codepot/views/project_delete.php
@@ -41,27 +41,28 @@ $this->load->view (
$message"; ?>
+
diff --git a/codepot/src/codepot/views/project_edit.php b/codepot/src/codepot/views/project_edit.php
index c2525295..b39906b6 100644
--- a/codepot/src/codepot/views/project_edit.php
+++ b/codepot/src/codepot/views/project_edit.php
@@ -81,96 +81,96 @@ $this->load->view (
if ($mode == 'update') $formurl .= '/'.$project->id;
?>
+
=form_open($formurl)?>
- =form_fieldset()?>
-
- =form_label($this->lang->line('ID').': ', 'project_id')?>
-
- =form_input('project_id', set_value('project_id', $project->id), $extra)?>
- =form_error('project_id')?>
-
+
+ =form_label($this->lang->line('ID').': ', 'project_id')?>
+
+ =form_input('project_id', set_value('project_id', $project->id), $extra)?>
+ =form_error('project_id')?>
+
-
- =form_label($this->lang->line('Name').': ', 'project_name')?>
- =form_error('project_name')?>
-
-
-
- =form_input('project_name', set_value('project_name', $project->name), $extra)?>
-
+
+ =form_label($this->lang->line('Name').': ', 'project_name')?>
+ =form_error('project_name')?>
+
+
+
+ =form_input('project_name', set_value('project_name', $project->name), $extra)?>
+
-
- =form_label($this->lang->line('Summary').': ', 'project_summary')?>
- =form_error('project_summary')?>
-
-
-
- =form_input('project_summary', set_value('project_summary', $project->summary), $extra)?>
-
+
+ =form_label($this->lang->line('Summary').': ', 'project_summary')?>
+ =form_error('project_summary')?>
+
+
+
+ =form_input('project_summary', set_value('project_summary', $project->summary), $extra)?>
+
-
-
- 'project_description',
- 'value' => set_value ('project_description', $project->description),
- 'id' => 'project_edit_mainarea_description',
- 'rows' => 20,
- 'cols' => 80
- );
- print form_textarea ($xdata);
- ?>
-
-
+
+
+ 'project_description',
+ 'value' => set_value ('project_description', $project->description),
+ 'id' => 'project_edit_mainarea_description',
+ 'rows' => 20,
+ 'cols' => 80
+ );
+ print form_textarea ($xdata);
+ ?>
+
+
-
-
- =form_label($this->lang->line('Members').': ', 'project_members')?>
- =form_error('project_members')?>
-
-
- lang->line('Update'): $this->lang->line('Create'); ?>
- =form_submit('project', $caption)?>
+ lang->line('Update'): $this->lang->line('Create'); ?>
+ =form_submit('project', $caption)?>
- =form_fieldset_close()?>
=form_close();?>
+
diff --git a/codepot/src/codepot/views/site_delete.php b/codepot/src/codepot/views/site_delete.php
index 2f79ab81..24f1384e 100644
--- a/codepot/src/codepot/views/site_delete.php
+++ b/codepot/src/codepot/views/site_delete.php
@@ -40,27 +40,28 @@ $this->load->view (
$message"; ?>
+
diff --git a/codepot/src/codepot/views/site_edit.php b/codepot/src/codepot/views/site_edit.php
index a9a35a8f..5449da51 100644
--- a/codepot/src/codepot/views/site_edit.php
+++ b/codepot/src/codepot/views/site_edit.php
@@ -83,49 +83,49 @@ $this->load->view (
if ($mode == 'update') $formurl .= '/'.$site->id;
?>
+
=form_open($formurl, 'id="site_edit_form"')?>
- =form_fieldset()?>
-
-
- =form_label($this->lang->line('Name').': ', 'site_name')?>
- =form_input('site_name',
- set_value('site_name', $site->name),
- 'maxlength="80" size="40" class="name"');
- ?>
- =form_error('site_name')?>
-
+
+ =form_label($this->lang->line('Name').': ', 'site_name')?>
+ =form_input('site_name',
+ set_value('site_name', $site->name),
+ 'maxlength="80" size="40" class="name"');
+ ?>
+ =form_error('site_name')?>
+
-
-
- =form_textarea('site_text',
- set_value('site_text', $site->text),
- 'class="text" id="site_edit_mainarea_text"')
- ?>
-
-
+
+
+ =form_textarea('site_text',
+ set_value('site_text', $site->text),
+ 'class="text" id="site_edit_mainarea_text"')
+ ?>
+
+
- lang->line('Update'): $this->lang->line('Create'); ?>
- =form_submit('site', $caption)?>
- =form_fieldset_close()?>
+ lang->line('Update'): $this->lang->line('Create'); ?>
+ =form_submit('site', $caption)?>
=form_close();?>
+
diff --git a/codepot/src/codepot/views/user_settings.php b/codepot/src/codepot/views/user_settings.php
index f2904749..0cd659cc 100644
--- a/codepot/src/codepot/views/user_settings.php
+++ b/codepot/src/codepot/views/user_settings.php
@@ -61,43 +61,35 @@ $this->load->view (
diff --git a/codepot/src/codepot/views/wiki_delete.php b/codepot/src/codepot/views/wiki_delete.php
index a79c33d2..c50e65b0 100644
--- a/codepot/src/codepot/views/wiki_delete.php
+++ b/codepot/src/codepot/views/wiki_delete.php
@@ -21,8 +21,8 @@
load->view (
- 'projectbar',
- array (
+ 'projectbar',
+ array (
'banner' => NULL,
'page' => array (
@@ -31,8 +31,8 @@ $this->load->view (
'project' => $project,
),
- 'ctxmenuitems' => array ()
- )
+ 'ctxmenuitems' => array ()
+ )
);
?>
@@ -42,27 +42,28 @@ $this->load->view (
'.htmlspecialchars($message).''; ?>
+
diff --git a/codepot/src/codepot/views/wiki_edit.php b/codepot/src/codepot/views/wiki_edit.php
index 8b5c287b..946fdddb 100644
--- a/codepot/src/codepot/views/wiki_edit.php
+++ b/codepot/src/codepot/views/wiki_edit.php
@@ -110,113 +110,112 @@ $this->load->view (
'.htmlspecialchars($message).''; ?>
-
+
=form_open_multipart("wiki/{$mode}/{$project->id}/".$this->converter->AsciiToHex($wiki->name))?>
-
-
- =form_label($this->lang->line('Name').': ', 'wiki_name')?>
- =form_error('wiki_name');?>
-
-
-
- =form_input('wiki_name', set_value('wiki_name', $wiki->name), $extra)?>
- =($mode == 'update')? form_hidden('wiki_original_name', set_value('wiki_original_name', $wiki->name)): ''?>
-
-
- =form_label($this->lang->line('Text').': ', 'wiki_text')?>
-
=$this->lang->line('Preview')?>
+
+ =form_label($this->lang->line('Name').': ', 'wiki_name')?>
+ =form_error('wiki_name');?>
+
+
+
+ =form_input('wiki_name', set_value('wiki_name', $wiki->name), $extra)?>
+ =($mode == 'update')? form_hidden('wiki_original_name', set_value('wiki_original_name', $wiki->name)): ''?>
+
- 'wiki_columns',
- 'id' => 'wiki_edit_mainarea_text_column_count',
- 'value' => set_value('wiki_columns', $wiki->columns),
- 'size' => '2',
- 'min' => '1',
- 'max' => '9',
- 'type' => 'number');
- print form_input ($attrs);
- ?>
-
- =$this->lang->line('Columns')?>(1-9)
+
-
- 'wiki_text',
- 'value' => set_value ('wiki_text', $wiki->text),
- 'id' => 'wiki_edit_mainarea_text',
- 'rows' => 20,
- 'cols' => 80
- );
- print form_textarea ($xdata);
- ?>
-
-
-
- attachments)): ?>
-
- =form_label($this->lang->line('WIKI_ATTACHMENTS').': ', 'wiki_edit_attachment_list')?>
- =form_error('wiki_attachment_list');?>
-
-
-
-
-
-
-
-
+ 'wiki_columns',
+ 'id' => 'wiki_edit_mainarea_text_column_count',
+ 'value' => set_value('wiki_columns', $wiki->columns),
+ 'size' => '2',
+ 'min' => '1',
+ 'max' => '9',
+ 'type' => 'number');
+ print form_input ($attrs);
+ ?>
-
- =form_hidden('wiki_projectid', set_value('wiki_projectid', $wiki->projectid))?>
-
+ =$this->lang->line('Columns')?>(1-9)
-
- lang->line('Update'): $this->lang->line('Create'); ?>
- =form_submit('wiki', $caption)?>
-
+ =form_error('wiki_text');?>
+
+
+ 'wiki_text',
+ 'value' => set_value ('wiki_text', $wiki->text),
+ 'id' => 'wiki_edit_mainarea_text',
+ 'rows' => 20,
+ 'cols' => 80
+ );
+ print form_textarea ($xdata);
+ ?>
+
+
+
+ attachments)): ?>
+
+ =form_label($this->lang->line('WIKI_ATTACHMENTS').': ', 'wiki_edit_attachment_list')?>
+ =form_error('wiki_attachment_list');?>
+
+
+
+
+
+
+
+
+
+
+ =form_hidden('wiki_projectid', set_value('wiki_projectid', $wiki->projectid))?>
+
+
+
+ lang->line('Update'): $this->lang->line('Create'); ?>
+ =form_submit('wiki', $caption)?>
+
-
=form_close();?>
-
+
diff --git a/codepot/src/css/common.css b/codepot/src/css/common.css
index 14f65882..dbc74c7f 100644
--- a/codepot/src/css/common.css
+++ b/codepot/src/css/common.css
@@ -135,8 +135,8 @@ body {
text-transform: uppercase;
white-space: nowrap;
- //text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
- // 0px -5px 35px rgba(255,255,255,0.3);
+ /*text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
+ 0px -5px 35px rgba(255,255,255,0.3); */
text-shadow: 1px 1px 0 #7A7A7A;
letter-spacing: 0.1em;
}
@@ -213,46 +213,108 @@ body {
background-color: #BBCCDD;
}
+.content .mainarea .form_container {
+ padding: 0.3em 0.5em 0.3em 0.5em;
+ border: 1px solid #BBCCDD;
+ line-height: 2.2em;
+ margin: 0;
+}
+
.content .mainarea form {
margin: 0;
}
-.content .mainarea form fieldset {
- margin: 0;
- border: 1px solid #BBCCDD;
-}
-
-.content .mainarea form label {
- font-style: italic;
+.content .mainarea form label
+{
font-weight: bold;
-}
-
-.content .mainarea form input[type="text"] {
- border: 1px solid #BBCCDD;
-}
-
-.content .mainarea form input[type="password"] {
- border: 1px solid #BBCCDD;
-}
-
-.content .mainarea form textarea {
- border: 1px solid #BBCCDD;
- font-family: consolas, "Andale Mono", monospace;
font-size: inherit;
}
-.content .mainarea .form_input_label {
- margin-bottom: 0.2em;
+.content .mainarea form input
+{
+ vertical-align: middle;
+ border: none;
+ -moz-box-shadow: 0 2px 4px #bbb inset;
+ -webkit-box-shadow: 0 2px 4px #BBB inset;
+ box-shadow: 0 2px 4px #BBB inset;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+
+ height: 1.8em;
+ font-size: inherit;
+ padding-left: 0.2em;
+ padding-right: 0.2em;
}
-.content .mainarea .form_input_label .ui-button {
+.content .mainarea form input:focus {
+ background-color: #E1E1E1;
+ outline: 0;
+}
+
+.content .mainarea form input[type="submit"]
+{
+ cursor: pointer;
+ height: 2em;
+ vertical-align: middle;
+ padding-left: 5px;
+ padding-right: 5px;
+ text-transform: uppercase;
+
+ background: #3498db;
+ background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
+ background-image: -moz-linear-gradient(top, #3498db, #2980b9);
+ background-image: -ms-linear-gradient(top, #3498db, #2980b9);
+ background-image: -o-linear-gradient(top, #3498db, #2980b9);
+ background-image: linear-gradient(to bottom, #3498db, #2980b9);
+ -webkit-border-radius: 28;
+ -moz-border-radius: 28;
+ border-radius: 5px;
+ text-shadow: 1px 1px 3px #666666;
+ color: #ffffff;
+ text-decoration: none;
+
+ font-size: 1em;
+ border: 0 none;
+}
+
+.content .mainarea form input[type="submit"]:hover
+{
+ background: #3cb0fd;
+ background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
+ background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
+ background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
+ background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
+ background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
+ text-decoration: none;
+}
+
+.content .mainarea form textarea
+{
+ vertical-align: middle;
+ border: 1px solid #B9BDC1;
+ -moz-box-shadow: 0 2px 4px #bbb inset;
+ -webkit-box-shadow: 0 2px 4px #BBB inset;
+ box-shadow: 0 2px 4px #BBB inset;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+
+ font-family: consolas, "Andale Mono", monospace;
+ font-size: inherit;
+ padding: 0.2em 0.2em 0.2em 0.2em;
+}
+
+.content .mainarea form textarea:focus
+{
+ background-color: #E1E1E1;
+ outline: 0;
+}
+
+.content .mainarea form .ui-button
+{
+ /* jquery-ui button inside the form */
font-size: 80%;
- font-style: italic;
-}
-
-
-.content .mainarea .form_input_field {
- margin-bottom: 0.5em;
}
.content .mainarea .form_input_preview {
@@ -260,14 +322,13 @@ body {
/*border: 1px solid #DDDDDD;*/
background-color: #FFFFF0;
font-size: 90%;
+ padding: 0.2em 0.2em 0.2em 0.2em;
+ line-height: 1.2em;
}
.content .mainarea .form_input_preview pre {
- /*background-color: inherit;*/
background-color: #F8F8FA;
- padding: 0.3em;
- /*background-color: #FDF5D6;*/
- /*border: none;*/
+ padding: 0.2em 0.2em 0.2em 0.2em;
}
.content .mainarea .icon {
@@ -732,96 +793,48 @@ pre.prettyprint li.L9 { background: #eee }
/* ================ login page =================== */
-#login_user_name {
+#login_user_name
+{
background: url("images/username.png") no-repeat scroll 0% 0% rgb(234, 231, 231);
background-position: 0px 3px !important;
padding-left: 24px;
height: 2.2em;
- vertical-align: middle;
-
- border: 1px solid #B9BDC1;
- -moz-box-shadow: 0 2px 4px #bbb inset;
- -webkit-box-shadow: 0 2px 4px #BBB inset;
- box-shadow: 0 2px 4px #BBB inset;
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-
- font-size: 1em;
- border: 0 none;
}
-#login_user_name:focus {
- background-color: #E7E8E7;
+#login_user_name:focus
+{
+ background-color: #E1E1E1;
outline: 0;
}
-#login_user_pass {
+#login_user_pass
+{
background: url("images/password.png") no-repeat scroll 0% 0% rgb(234, 231, 231);
background-position: 0px 3px !important;
padding-left: 24px;
-
height: 2.2em;
- vertical-align: middle;
-
- border: 1px solid #B9BDC1;
- -moz-box-shadow: 0 2px 4px #bbb inset;
- -webkit-box-shadow: 0 2px 4px #BBB inset;
- box-shadow: 0 2px 4px #BBB inset;
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-
- font-size: 1em;
- border: 0 none;
}
-#login_user_pass:focus {
- background-color: #E7E8E7;
+#login_user_pass:focus
+{
+ background-color: #E1E1E1;
outline: 0;
}
-#login_signin_button {
- cursor: pointer;
- height: 2em;
- vertical-align: middle;
- padding-left: 5px;
- padding-right: 5px;
- text-transform: uppercase;
-
- background: #3498db;
- background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
- background-image: -moz-linear-gradient(top, #3498db, #2980b9);
- background-image: -ms-linear-gradient(top, #3498db, #2980b9);
- background-image: -o-linear-gradient(top, #3498db, #2980b9);
- background-image: linear-gradient(to bottom, #3498db, #2980b9);
- -webkit-border-radius: 28;
- -moz-border-radius: 28;
- border-radius: 5px;
- text-shadow: 1px 1px 3px #666666;
- color: #ffffff;
- text-decoration: none;
-
- font-size: 1em;
- border: 0 none;
+#login_signin_button
+{
+ /* make it higher than the standard submit buttons */
+ height: 2.5em;
}
-#login_signin_button:hover {
- background: #3cb0fd;
- background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
- background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
- background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
- background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
- background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
- text-decoration: none;
-}
-
-
-#login_mainarea .login_form_field_div { // keep it similar to taskbar
+#login_mainarea .form_container form .form_input_field
+{
+ /* keep it similar to taskbar and make it higher than normal form */
text-transform: uppercase;
padding-top: 0.3em;
padding-bottom: 0.3em;
vertical-align: middle;
font-size: 1em;
}
+
diff --git a/codepot/src/css/wiki.css b/codepot/src/css/wiki.css
index c2eb92b2..80b29485 100644
--- a/codepot/src/css/wiki.css
+++ b/codepot/src/css/wiki.css
@@ -65,3 +65,6 @@
column-gap: 2em;
}
+#wiki_edit_mainarea_text_column_count {
+ font-size: 80%;
+}