X-Git-Url: https://git-public.kairo.at/?a=blobdiff_plain;ds=sidebyside;f=LCARStrek%2Fbrowser%2Fdevtools%2Fwebaudioeditor.css;h=82c11107bd55618337fb00181d62759b38eb3c57;hb=9e756f9d6d35b95bee30bdc8361db9d1001ea9bc;hp=552c29aeb67403b64cf5260fe26c6e3b7377931b;hpb=acc20e5dafc253d32dd6f55076943b9eeae398ca;p=themes.git diff --git a/LCARStrek/browser/devtools/webaudioeditor.css b/LCARStrek/browser/devtools/webaudioeditor.css index 552c29ae..82c11107 100644 --- a/LCARStrek/browser/devtools/webaudioeditor.css +++ b/LCARStrek/browser/devtools/webaudioeditor.css @@ -39,10 +39,27 @@ svg { .edgePath path { stroke-width: 1px; fill: none; + + stroke: #A09090; /* Grey foreground text */ } -.edgePath path { - stroke: #9C9CFF; /* Grey foreground text */ +/* AudioParam connection edges */ +g.edgePath.param-connection { + stroke-dasharray: 5,5; +} + +.edgePath.param-connection path { + stroke: #A09090; /* Grey foreground text */ +} + +/* Labels in AudioParam connection should have background that match + * the main background so there's whitespace around the label, on top of the + * dotted lines. */ +g.edgeLabel rect { + fill: #000000; +} +g.edgeLabel tspan { + fill: #9C9CFF; /* Grey foreground text */ } /* Audio Nodes */ @@ -79,6 +96,10 @@ g.selected text { * Inspector Styles */ +#web-audio-inspector-title { + margin: 6px; +} + .web-audio-inspector .error { background-image: url("alerticon-warning.png"); background-size: 13px 12px; @@ -146,3 +167,19 @@ g.selected text { margin-right: 0px !important; } } + +#inspector-pane-toggle { + background: none; + box-shadow: none; + border: none; + list-style-image: url("debugger-collapse.png"); + -moz-image-region: rect(0px,16px,16px,0px); +} + +#inspector-pane-toggle[pane-collapsed] { + list-style-image: url("debugger-expand.png"); +} + +#inspector-pane-toggle:active { + -moz-image-region: rect(0px,32px,16px,16px); +}