Layout fiddeling on config.html closes #163

This commit is contained in:
Anders Betnér 2006-06-25 17:55:03 +00:00
parent 234432dda5
commit 97728bee87
4 changed files with 14 additions and 8 deletions

View File

@ -13,12 +13,17 @@ input {
select { select {
font: icon; font: icon;
} }
#config_path { #config_path_label {
float: left; float: left;
width: 11em; width: 11em;
font:icon; font:icon;
padding-top: .3em; padding: .3em 0 .5em 1em;
padding-left: 1em; }
#config_path {
float: left;
width: 50em;
font: icon;
padding: .3em 0 .5em 0;
} }
.addItemHref { .addItemHref {
float: left; float: left;

View File

@ -169,8 +169,10 @@ var Config ={
var body = document.createElement('div'); var body = document.createElement('div');
body.className = 'navibox'; body.className = 'navibox';
if ('Server' == sectionName) { if ('Server' == sectionName) {
body.appendChild(Builder.node('span',{id:'config_path'},'Config File Location')); body.appendChild(Builder.node('span',{id:'config_path_label'},'Config File Location'));
body.appendChild(document.createTextNode(Config.configPath)); var span = Builder.node('span',{id:'config_path'});
span.appendChild(document.createTextNode(Config.configPath));
body.appendChild(span);
body.appendChild(Builder.node('br')); body.appendChild(Builder.node('br'));
body.appendChild(Builder.node('div',{style: 'clear: both;'})); body.appendChild(Builder.node('div',{style: 'clear: both;'}));
} }

View File

@ -151,7 +151,7 @@
<item id="scanning:concat_compilations"> <item id="scanning:concat_compilations">
<name>Group compilations</name> <name>Group compilations</name>
<short_description> <short_description>
Compilations are grouped under &amp;Various artists&amp; Compilations are grouped under "Various artist"
</short_description> </short_description>
<type default_value="0">select</type> <type default_value="0">select</type>
<options> <options>
@ -188,7 +188,7 @@
<item id="general:rescan_interval" restart="true"> <item id="general:rescan_interval" restart="true">
<name>Rescan Interval</name> <name>Rescan Interval</name>
<short_description> <short_description>
How often should mt-daapd look for new files? In seconds. How often should Firefly look for new files? In seconds.
</short_description> </short_description>
<type size="20">text</type> <type size="20">text</type>
</item> </item>

View File

@ -205,7 +205,6 @@ td.text
/* config.html */ /* config.html */
#toggle_basic_advanced { #toggle_basic_advanced {
font: icon !important; font: icon !important;
margin-left: 30em;
} }
/* smart.html */ /* smart.html */
#pl_editor { #pl_editor {