diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-14 05:34:37 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-14 05:34:37 +0000 |
commit | 26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d (patch) | |
tree | 722c655a730a5e9d623609c0c65344b99a405b24 | |
parent | 427c5ac163cd7a79c83102aaa3fcb6572ab59cfb (diff) | |
download | ampache-26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d.tar.gz ampache-26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d.tar.bz2 ampache-26ff4cf67bf1bbc3c6a00343e9e42621f191ea1d.zip |
reduced size of the font when editing
-rw-r--r-- | templates/show_edit_album_row.inc.php | 2 | ||||
-rw-r--r-- | templates/show_edit_artist_row.inc.php | 2 | ||||
-rw-r--r-- | templates/show_edit_live_stream_row.inc.php | 2 | ||||
-rw-r--r-- | templates/show_edit_playlist_song_row.inc.php | 2 | ||||
-rw-r--r-- | templates/show_edit_song_row.inc.php | 4 | ||||
-rw-r--r-- | themes/classic/templates/default.css | 5 | ||||
-rw-r--r-- | themes/greysme/templates/default.css | 5 |
7 files changed, 16 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> diff --git a/themes/classic/templates/default.css b/themes/classic/templates/default.css index d012ef41..9c2313eb 100644 --- a/themes/classic/templates/default.css +++ b/themes/classic/templates/default.css @@ -544,6 +544,11 @@ a.button{padding:1px 3px;} #recently_played .th-bottom {display:none;}
.box_preferences .th-bottom {display:none;}
+/* Inline Editing Tables */
+.inline-edit input, .inline-edit select {
+ font-size: 0.8em;
+}
+
/************************************************/
/* Albums of the moment */
diff --git a/themes/greysme/templates/default.css b/themes/greysme/templates/default.css index 062d23ae..1da42f33 100644 --- a/themes/greysme/templates/default.css +++ b/themes/greysme/templates/default.css @@ -596,6 +596,11 @@ td.cel_track {text-align:right;} #recently_played .th-bottom {display:none;}
.box_preferences .th-bottom {display:none;}
+/* Inline Editing Tables */
+.inline-edit input, .inline-edit select {
+ font-size: 0.8em;
+}
+
/************************************************/
/* Albums of the moment */
/************************************************/
|