mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-31 09:43:45 -04:00
css/xtml fixes from ccrdude
This commit is contained in:
parent
c5eeac00ae
commit
44d2e6be51
@ -10,7 +10,7 @@ adminroot_DATA = ftr.html linkOpaque.gif about.html aspl-license.txt \
|
|||||||
playlist.html playlist.js smart.html smart.js DAAPApplet-0.1.jar \
|
playlist.html playlist.js smart.html smart.js DAAPApplet-0.1.jar \
|
||||||
smartpopup.html applet.html firefly.js CREDITS status.js \
|
smartpopup.html applet.html firefly.js CREDITS status.js \
|
||||||
config.js config.xml spinner.gif spinner_stopped.gif util.js \
|
config.js config.xml spinner.gif spinner_stopped.gif util.js \
|
||||||
pngfix.js no_access.html
|
pngfix.js no_access.html index.css config.css
|
||||||
|
|
||||||
EXTRA_DIST = ftr.html linkOpaque.gif about.html aspl-license.txt \
|
EXTRA_DIST = ftr.html linkOpaque.gif about.html aspl-license.txt \
|
||||||
gpl-license.txt linkTransparent.gif config-update.html hdr.html \
|
gpl-license.txt linkTransparent.gif config-update.html hdr.html \
|
||||||
@ -19,5 +19,5 @@ EXTRA_DIST = ftr.html linkOpaque.gif about.html aspl-license.txt \
|
|||||||
playlist.html playlist.js smart.html smart.js DAAPApplet-0.1.jar \
|
playlist.html playlist.js smart.html smart.js DAAPApplet-0.1.jar \
|
||||||
smartpopup.html applet.html firefly.js CREDITS status.js \
|
smartpopup.html applet.html firefly.js CREDITS status.js \
|
||||||
config.js config.xml spinner.gif spinner_stopped.gif util.js \
|
config.js config.xml spinner.gif spinner_stopped.gif util.js \
|
||||||
pngfix.js no_access.html index.css
|
pngfix.js no_access.html index.css config.css
|
||||||
|
|
||||||
|
51
admin-root/config.css
Executable file
51
admin-root/config.css
Executable file
@ -0,0 +1,51 @@
|
|||||||
|
label {
|
||||||
|
float: left;
|
||||||
|
width: 11em;
|
||||||
|
font: icon;
|
||||||
|
padding-top: .3em;
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
font: icon;
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
font: icon;
|
||||||
|
}
|
||||||
|
#config_path_label {
|
||||||
|
float: left;
|
||||||
|
width: 11em;
|
||||||
|
font:icon;
|
||||||
|
padding: .3em 0 .5em 1em;
|
||||||
|
}
|
||||||
|
#config_path {
|
||||||
|
float: left;
|
||||||
|
width: 40em;
|
||||||
|
font: icon;
|
||||||
|
padding: .3em 0 .5em 0;
|
||||||
|
}
|
||||||
|
.addItemHref {
|
||||||
|
float: left;
|
||||||
|
margin-left: 11em;
|
||||||
|
font: icon;
|
||||||
|
padding-left: 1.5em;
|
||||||
|
margin-bottom: .5em;
|
||||||
|
}
|
||||||
|
.message_div {
|
||||||
|
background-color: yellow;
|
||||||
|
padding: 1em;
|
||||||
|
border: 1px solid #8CACBB;
|
||||||
|
}
|
||||||
|
#messages {
|
||||||
|
background-color: yellow;
|
||||||
|
padding: .5em;
|
||||||
|
border: 1px solid #8CACBB;
|
||||||
|
width: 40em;
|
||||||
|
float: left;
|
||||||
|
margin-left: 1em;
|
||||||
|
}
|
||||||
|
#buttons {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#buttons input {
|
||||||
|
width: 7em;
|
||||||
|
}
|
@ -1,58 +1,5 @@
|
|||||||
@include hdr.html@
|
@include hdr.html@
|
||||||
<style type="text/css">
|
<h2>Configuration</h2><span id="toggle_basic_advanced"></span>
|
||||||
label {
|
|
||||||
float: left;
|
|
||||||
width: 11em;
|
|
||||||
font: icon;
|
|
||||||
padding-top: .3em;
|
|
||||||
padding-left: 1em;
|
|
||||||
}
|
|
||||||
input {
|
|
||||||
font: icon;
|
|
||||||
}
|
|
||||||
select {
|
|
||||||
font: icon;
|
|
||||||
}
|
|
||||||
#config_path_label {
|
|
||||||
float: left;
|
|
||||||
width: 11em;
|
|
||||||
font:icon;
|
|
||||||
padding: .3em 0 .5em 1em;
|
|
||||||
}
|
|
||||||
#config_path {
|
|
||||||
float: left;
|
|
||||||
width: 40em;
|
|
||||||
font: icon;
|
|
||||||
padding: .3em 0 .5em 0;
|
|
||||||
}
|
|
||||||
.addItemHref {
|
|
||||||
float: left;
|
|
||||||
margin-left: 11em;
|
|
||||||
font: icon;
|
|
||||||
padding-left: 1.5em;
|
|
||||||
margin-bottom: .5em;
|
|
||||||
}
|
|
||||||
.message_div {
|
|
||||||
background-color: yellow;
|
|
||||||
padding: 1em;
|
|
||||||
border: 1px solid #8CACBB;
|
|
||||||
}
|
|
||||||
#messages {
|
|
||||||
background-color: yellow;
|
|
||||||
padding: .5em;
|
|
||||||
border: 1px solid #8CACBB;
|
|
||||||
width: 40em;
|
|
||||||
float: left;
|
|
||||||
margin-left: 1em;
|
|
||||||
}
|
|
||||||
#buttons {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
#buttons input {
|
|
||||||
width: 7em;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<h2>Configuration</span></h2><span id="toggle_basic_advanced"></span>
|
|
||||||
<div id="config_not_writable_warning" class="message_div" style="display: none;">Your config file is not writable, you can not change anything using this webpage</div>
|
<div id="config_not_writable_warning" class="message_div" style="display: none;">Your config file is not writable, you can not change anything using this webpage</div>
|
||||||
<form id="theform" method="get" action="#">
|
<form id="theform" method="get" action="#">
|
||||||
</form>
|
</form>
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
@ispage config.html:<script type="text/javascript" src="lib-js/script.aculo.us/scriptaculous.js"></script>:@
|
@ispage config.html:<script type="text/javascript" src="lib-js/script.aculo.us/scriptaculous.js"></script>:@
|
||||||
@ispage config.html:<script type="text/javascript" src="util.js"></script>:@
|
@ispage config.html:<script type="text/javascript" src="util.js"></script>:@
|
||||||
@ispage config.html:<script type="text/javascript" src="config.js"></script>:@
|
@ispage config.html:<script type="text/javascript" src="config.js"></script>:@
|
||||||
|
@ispage config.html:<link rel="stylesheet" type="text/css" href="config.css"/>:@
|
||||||
@ispage smart.html:<script type="text/javascript" src="lib-js/prototype.js"></script>:@
|
@ispage smart.html:<script type="text/javascript" src="lib-js/prototype.js"></script>:@
|
||||||
@ispage smart.html:<script type="text/javascript" src="lib-js/script.aculo.us/effects.js"></script>:@
|
@ispage smart.html:<script type="text/javascript" src="lib-js/script.aculo.us/effects.js"></script>:@
|
||||||
@ispage smart.html:<script type="text/javascript" src="smart.js"></script>:@
|
@ispage smart.html:<script type="text/javascript" src="smart.js"></script>:@
|
||||||
@ -51,7 +52,6 @@ href="http://www.rokulabs.com">Roku SoundBridge</a> and iTunes
|
|||||||
<!-- <li><a @ispage feedback.html:class="naviselected":@ href="feedback.html">feedback</a></li> -->
|
<!-- <li><a @ispage feedback.html:class="naviselected":@ href="feedback.html">feedback</a></li> -->
|
||||||
<li><a @ispage status.html:class="naviselected":@ href="about.html">about firefly</a></li>
|
<li><a @ispage status.html:class="naviselected":@ href="about.html">about firefly</a></li>
|
||||||
<li><a class="@ispage thanks.html:naviselected:navi@" href="thanks.html">thanks</a></li>
|
<li><a class="@ispage thanks.html:naviselected:navi@" href="thanks.html">thanks</a></li>
|
||||||
<li></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<div class="links">
|
<div class="links">
|
||||||
Version @VERSION@
|
Version @VERSION@
|
||||||
|
@ -6,9 +6,8 @@
|
|||||||
Special thanks to the following people:
|
Special thanks to the following people:
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="description"><pre>
|
<pre class="description">
|
||||||
@include CREDITS@
|
@include CREDITS@
|
||||||
</pre></p>
|
</pre>
|
||||||
|
|
||||||
</div>
|
|
||||||
@include ftr.html@
|
@include ftr.html@
|
||||||
|
Loading…
x
Reference in New Issue
Block a user