summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-14 05:34:37 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-14 05:34:37 +0000
commit26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d (patch)
tree722c655a730a5e9d623609c0c65344b99a405b24 /templates
parent427c5ac163cd7a79c83102aaa3fcb6572ab59cfb (diff)
downloadampache-26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d.tar.gz
ampache-26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d.tar.bz2
ampache-26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d.zip
reduced size of the font when editing
Diffstat (limited to 'templates')
-rw-r--r--templates/show_edit_album_row.inc.php2
-rw-r--r--templates/show_edit_artist_row.inc.php2
-rw-r--r--templates/show_edit_live_stream_row.inc.php2
-rw-r--r--templates/show_edit_playlist_song_row.inc.php2
-rw-r--r--templates/show_edit_song_row.inc.php4
5 files changed, 6 insertions, 6 deletions
diff --git a/templates/show_edit_album_row.inc.php b/templates/show_edit_album_row.inc.php
index 0e19c080..c6168972 100644
--- a/templates/show_edit_album_row.inc.php
+++ b/templates/show_edit_album_row.inc.php
@@ -21,7 +21,7 @@
?>
<td colspan="7">
<form method="post" id="edit_album_<?php echo $album->id; ?>" action="#">
-<table cellpadding="3" cellspacing="0">
+<table class="inline-edit" cellpadding="3" cellspacing="0">
<tr>
<td>
<input type="textbox" name="name" value="<?php echo scrub_out($album->full_name); ?>" />
diff --git a/templates/show_edit_artist_row.inc.php b/templates/show_edit_artist_row.inc.php
index 0741fd6f..9e8ec913 100644
--- a/templates/show_edit_artist_row.inc.php
+++ b/templates/show_edit_artist_row.inc.php
@@ -21,7 +21,7 @@
?>
<td colspan="5">
<form method="post" id="edit_artist_<?php echo $artist->id; ?>">
-<table cellpadding="3" cellspacing="0">
+<table class="inline-edit" cellpadding="3" cellspacing="0">
<tr>
<td>
<input type="textbox" name="name" value="<?php echo scrub_out($artist->f_full_name); ?>" />
diff --git a/templates/show_edit_live_stream_row.inc.php b/templates/show_edit_live_stream_row.inc.php
index 0a88bc57..b86c401e 100644
--- a/templates/show_edit_live_stream_row.inc.php
+++ b/templates/show_edit_live_stream_row.inc.php
@@ -21,7 +21,7 @@
?>
<td colspan="6">
<form method="post" id="edit_live_stream_<?php echo $radio->id; ?>">
-<table cellpadding="3" cellspacing="0">
+<table class="inline-edit" cellpadding="3" cellspacing="0">
<tr>
<th><?php echo _('Name'); ?></th>
<th><?php echo _('Stream URL'); ?></th>
diff --git a/templates/show_edit_playlist_song_row.inc.php b/templates/show_edit_playlist_song_row.inc.php
index 4c34cf9c..520b2fb6 100644
--- a/templates/show_edit_playlist_song_row.inc.php
+++ b/templates/show_edit_playlist_song_row.inc.php
@@ -21,7 +21,7 @@
?>
<td colspan="8">
<form method="post" id="edit_song_<?php echo $song->id; ?>" action="#">
-<table cellpadding="3" cellspacing="0">
+<table class="inline-edit" cellpadding="3" cellspacing="0">
<tr>
<td>
<input type="textbox" name="name" value="<?php echo scrub_out($song->title); ?>" />
diff --git a/templates/show_edit_song_row.inc.php b/templates/show_edit_song_row.inc.php
index 28f95b7a..97eb47b1 100644
--- a/templates/show_edit_song_row.inc.php
+++ b/templates/show_edit_song_row.inc.php
@@ -1,7 +1,7 @@
<?php
/*
- Copyright (c) 2001 - 2007 Ampache.org
+ Copyright (c) 2001 - 2008 Ampache.org
All rights reserved.
This program is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
?>
<td colspan="8">
<form method="post" id="edit_song_<?php echo $song->id; ?>">
-<table cellpadding="3" cellspacing="0">
+<table class="inline-edit" cellpadding="3" cellspacing="0">
<td>
<input type="textbox" name="title" value="<?php echo scrub_out($song->title); ?>" />
</td>