diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-09 06:46:43 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-09 06:46:43 -0500 |
commit | ac46df8daea09899ce30dc8fd70986e258c746bf (patch) | |
tree | 2750d3125fc253fd5b0671e4bd268eff1fd97296 /addon-sdk/source/examples/actor-repl/data/main.css | |
parent | 8cecf8d5208f3945b35f879bba3015bb1a11bec6 (diff) | |
download | UXP-ac46df8daea09899ce30dc8fd70986e258c746bf.tar UXP-ac46df8daea09899ce30dc8fd70986e258c746bf.tar.gz UXP-ac46df8daea09899ce30dc8fd70986e258c746bf.tar.lz UXP-ac46df8daea09899ce30dc8fd70986e258c746bf.tar.xz UXP-ac46df8daea09899ce30dc8fd70986e258c746bf.zip |
Move Add-on SDK source to toolkit/jetpack
Diffstat (limited to 'addon-sdk/source/examples/actor-repl/data/main.css')
-rw-r--r-- | addon-sdk/source/examples/actor-repl/data/main.css | 117 |
1 files changed, 0 insertions, 117 deletions
diff --git a/addon-sdk/source/examples/actor-repl/data/main.css b/addon-sdk/source/examples/actor-repl/data/main.css deleted file mode 100644 index 03499944b..000000000 --- a/addon-sdk/source/examples/actor-repl/data/main.css +++ /dev/null @@ -1,117 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -body -{ - position: absolute; - width: 100%; - margin: 0; - padding: 0; - background: white; -} - - -pre -{ - margin: 0; -} - -section -{ - border-top: 1px solid rgba(150, 150, 150, 0.5); -} - -.CodeMirror { - height: auto; -} -.CodeMirror-scroll { - overflow-y: hidden; - overflow-x: auto; -} - -.request, -.response, -.input -{ - border-left: 5px solid; - padding-left: 10px; -} - -.request:not(:empty), -.response.pending -{ - padding: 5px; -} - -.input -{ - padding-left: 6px; - border-color: lightgreen; -} -.input.invalid -{ - border-color: orange; -} - -.request -{ - border-color: lightgrey; -} - -.response -{ - border-color: grey; -} -.response.error -{ - border-color: red; -} - -.response.message -{ - border-color: lightblue; -} - -.response .one, -.response .two, -.response .three -{ - width: 0; - height: auto; -} - - - -.response.pending .one, -.response.pending .two, -.response.pending .three -{ - width: 10px; - height: 10px; - background-color: rgba(150, 150, 150, 0.5); - - border-radius: 100%; - display: inline-block; - animation: bouncedelay 1.4s infinite ease-in-out; - /* Prevent first frame from flickering when animation starts */ - animation-fill-mode: both; -} - -.response.pending .one -{ - animation-delay: -0.32s; -} - -.response.pending .two -{ - animation-delay: -0.16s; -} - -@keyframes bouncedelay { - 0%, 80%, 100% { - transform: scale(0.0); - } 40% { - transform: scale(1.0); - } -} |