browser/themes/shared/devtools/webaudioeditor.inc.css

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
michael@0 3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4
michael@0 5 /* Reload and waiting notices */
michael@0 6 .notice-container {
michael@0 7 margin-top: -50vh;
michael@0 8 }
michael@0 9
michael@0 10 .theme-dark .notice-container {
michael@0 11 background: url(background-noise-toolbar.png), #343c45; /* Toolbars */
michael@0 12 color: #f5f7fa; /* Light foreground text */
michael@0 13 }
michael@0 14
michael@0 15 .theme-light .notice-container {
michael@0 16 background: url(background-noise-toolbar.png), #f0f1f2; /* Toolbars */
michael@0 17 color: #585959; /* Grey foreground text */
michael@0 18 }
michael@0 19
michael@0 20 #reload-notice {
michael@0 21 font-size: 120%;
michael@0 22 }
michael@0 23
michael@0 24 #waiting-notice {
michael@0 25 font-size: 110%;
michael@0 26 }
michael@0 27
michael@0 28 #waiting-notice::before {
michael@0 29 display: inline-block;
michael@0 30 content: "";
michael@0 31 background: url("chrome://global/skin/icons/loading_16.png") center no-repeat;
michael@0 32 width: 16px;
michael@0 33 height: 16px;
michael@0 34 -moz-margin-end: 6px;
michael@0 35 }
michael@0 36
michael@0 37 #requests-menu-reload-notice-button {
michael@0 38 min-height: 2em;
michael@0 39 }
michael@0 40
michael@0 41 /* Context Graph */
michael@0 42 svg {
michael@0 43 position: fixed;
michael@0 44 overflow: hidden;
michael@0 45 }
michael@0 46
michael@0 47 /* Edges in graph */
michael@0 48 .edgePath path {
michael@0 49 stroke-width: 1.5px;
michael@0 50 fill: none;
michael@0 51 }
michael@0 52
michael@0 53 .theme-dark .edgePath path { stroke: #f5f7fa; }
michael@0 54 .theme-light .edgePath path { stroke: #585959; }
michael@0 55
michael@0 56 /* Audio Nodes */
michael@0 57 .nodes rect {
michael@0 58 stroke-width: 2px;
michael@0 59 cursor: pointer;
michael@0 60 }
michael@0 61
michael@0 62 .theme-dark .nodes rect {
michael@0 63 stroke: #585959;
michael@0 64 fill: #f5f7fa;
michael@0 65 }
michael@0 66
michael@0 67 .theme-light .nodes rect {
michael@0 68 fill: #585959;
michael@0 69 stroke: #f5f7fa;
michael@0 70 }
michael@0 71
michael@0 72 .nodes g.selected rect {
michael@0 73 stroke-width: 1.5px;
michael@0 74 animation-duration: 1s;
michael@0 75 animation-iteration-count: infinite;
michael@0 76 animation-timing-function: ease-in-out;
michael@0 77 animation-direction: alternate;
michael@0 78 }
michael@0 79
michael@0 80 .theme-dark .nodes g.selected rect { animation-name: dark-selected-glow; }
michael@0 81 .theme-light .nodes g.selected rect { animation-name: light-selected-glow; }
michael@0 82
michael@0 83 /* Text in nodes */
michael@0 84 text {
michael@0 85 cursor: pointer;
michael@0 86 font-weight: 300;
michael@0 87 font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
michael@0 88 font-size: 14px;
michael@0 89 }
michael@0 90
michael@0 91 .theme-dark text {
michael@0 92 fill: #333;
michael@0 93 /* text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff; */
michael@0 94 }
michael@0 95 .theme-light text {
michael@0 96 fill: #111;
michael@0 97 }
michael@0 98
michael@0 99 /**
michael@0 100 * Animations for graphs
michael@0 101 */
michael@0 102 @keyframes dark-selected-glow {
michael@0 103 0% { fill: #1d4f73; }
michael@0 104 100% { fill: #3CA3ED; }
michael@0 105 }
michael@0 106 @keyframes light-selected-glow {
michael@0 107 0% { fill: #4c9ed9; }
michael@0 108 100% { fill: #59BAFF; }
michael@0 109 }
michael@0 110
michael@0 111 /**
michael@0 112 * Inspector Styles
michael@0 113 */
michael@0 114
michael@0 115 .web-audio-inspector .error {
michael@0 116 background-image: url(chrome://browser/skin/devtools/alerticon-warning.png);
michael@0 117 -moz-appearance: none;
michael@0 118 opacity: 0;
michael@0 119 transition: opacity .5s ease-out 0s;
michael@0 120 }

mercurial