1
0
Fork 0
fgdata/Phi/widgets/radiostack.html
Torsten Dreyer 190e8449ce Phi: move URL to the browsers root directory
- rename the directory from webgui to Phi
- let the webserver's root point to Phi instead of Docs
- redirect old /gui/ url to the new location (/)
2015-04-18 13:03:46 +02:00

48 lines
1 KiB
HTML

<style>
.phi-widget {
border: 3px ridge silver;
}
.phi-radiostack {
font-family: "Liberation Mono";
font-size: 11px;
color: silver;
background-color: #101010;
padding: 4px;
}
.phi-radiostack input {
font-family: "Liberation Mono";
}
.phi-radiostack span {
width: 3.5em;
display: inline-block;
padding-left: 0.5em;
}
.phi-radiostack input {
background-color: #404040;
color: red;
font-weight: bold;
border: 2px inset silver;
width: 8ex;
display: inline-block;
}
.phi-radiostack button {
background-color: white;
color: black;
border: 2px outset gray;
padding: 1px 2px 4px 2px;
}
</style>
<div class="phi-radiostack" data-bind="foreach: radios">
<div class="phi-radio">
<span data-bind="text: label"></span>
<input data-bind="value: use, attr: { title: stn }, tooltip: {}, event: { blur: onUseBlur, keyup: onUseKey }"/>
<button data-bind="click: swap">&harr;</button>
<input data-bind="value: stby, event: { blur: onStbyBlur, keyup: onStbyKey }"/>
</div>
</div>