node-red-contrib-musiccast
Version:
A Node-RED collection for monitoring and controlling a Yamaha Musiccast network.
156 lines (121 loc) • 2.8 kB
CSS
pre .musiccast-attributes-example {
white-space: pre;
font-size: 9px;
outline: 1px solid #ccc;
padding: 5px;
margin: 5px;
}
.string {color: green;}
.number {color: darkorange;}
.null {color: magenta;}
.key {color: red;}
.o {color: lightgray;}
.musiccast-metadata {
color: lightgray;
}
table.musiccast-table {
border: solid 1px #aaa;
border-collapse: collapse;
border-spacing: 0;
}
table.musiccast-table th {
background-color: #000;
border: solid 1px #aaa;
color: #fff;
text-align: left;
}
table.musiccast-table > tr > td {
font-family: monospace;
font-size: 10pt;
border: solid 1px #aaa;
color: #333;
background: #eee;
}
.musiccast-form-row > label {
width: 180px;
}
.musiccast-form-row-ah {
visibility: hidden;
}
.musiccast-tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.musiccast-tooltip .musiccast-tooltip-text {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.musiccast-tooltip:hover .musiccast-tooltip-text {
visibility: visible;
}
div .musiccast-cmd-reference {
padding-left: 5px
}
input.musiccast-config-input:disabled {
border-style: hidden;
color: white;
background-color: white;
}
input.musiccast-config-input-address:disabled {
color: lightgray;
}
select.musiccast-config-input:disabled {
border-style: hidden;
color: white;
background-color: white;
}
.musiccast-form-tip {
background: #ffe;
padding: 6px 6px;
vertical-align: middle;
font-size: 12px;
line-height: 20px;
box-sizing: border-box;
overflow: auto;
word-break: keep-all;
}
.musiccast-form-section-collapsible {
cursor: pointer;
width: 100%;
border: none;
text-align: left;
outline: none;
}
.musiccast-form-section-collapsible-active, .musiccast-form-section-collapsible:hover {
cursor: pointer;
}
.musiccast-form-section-collapsible-content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.musiccast-form-section {
width: 100%;
border: none;
text-align: left;
outline: none;
}
.musiccast-form-section-content {
padding: 0 18px;
}
.musiccast-form-section-description {
padding: 6px 6px;
vertical-align: middle;
font-size: 12px;
line-height: 20px;
box-sizing: border-box;
overflow: auto;
word-break: keep-all;
}