summaryrefslogtreecommitdiffstats
path: root/devtools/client/webide/themes/addons.css
diff options
context:
space:
mode:
authorNew Tobin Paradigm <email@mattatobin.com>2019-07-14 09:12:34 -0400
committerGitHub <noreply@github.com>2019-07-14 09:12:34 -0400
commit91a27750b3fccaba162ec988d189a57d947776e4 (patch)
treebda6d2b282c27710e183030d09649c45e1b82be5 /devtools/client/webide/themes/addons.css
parentee33f35b324110857b2854b30dd37936b2090e58 (diff)
parent197f4cbaa47e5e8b9b1fb578b10046914eb6486e (diff)
downloadUXP-91a27750b3fccaba162ec988d189a57d947776e4.tar
UXP-91a27750b3fccaba162ec988d189a57d947776e4.tar.gz
UXP-91a27750b3fccaba162ec988d189a57d947776e4.tar.lz
UXP-91a27750b3fccaba162ec988d189a57d947776e4.tar.xz
UXP-91a27750b3fccaba162ec988d189a57d947776e4.zip
Merge pull request #1177 from MoonchildProductions/remove_webide
Remove WebIDE devtools component.
Diffstat (limited to 'devtools/client/webide/themes/addons.css')
-rw-r--r--devtools/client/webide/themes/addons.css79
1 files changed, 0 insertions, 79 deletions
diff --git a/devtools/client/webide/themes/addons.css b/devtools/client/webide/themes/addons.css
deleted file mode 100644
index 1ae41f2d9..000000000
--- a/devtools/client/webide/themes/addons.css
+++ /dev/null
@@ -1,79 +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/. */
-
-button {
- line-height: 20px;
- font-size: 1em;
- height: 30px;
- max-height: 30px;
- min-width: 120px;
- padding: 3px;
- color: #737980;
- border: 1px solid rgba(23,50,77,.4);
- border-radius: 5px;
- background-color: #f1f1f1;
- background-image: linear-gradient(#fff, rgba(255,255,255,.1));
- box-shadow: 0 1px 1px 0 #fff, inset 0 2px 2px 0 #fff;
- text-shadow: 0 1px 1px #fefffe;
- -moz-appearance: none;
- -moz-border-top-colors: none !important;
- -moz-border-right-colors: none !important;
- -moz-border-bottom-colors: none !important;
- -moz-border-left-colors: none !important;
-}
-
-button:hover {
- background-image: linear-gradient(#fff, rgba(255,255,255,.6));
- cursor: pointer;
-}
-
-button:hover:active {
- background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.6));
-}
-
-progress {
- height: 30px;
- vertical-align: middle;
- padding: 0;
- width: 120px;
-}
-
-li {
- margin: 20px 0;
-}
-
-.name {
- display: inline-block;
- min-width: 280px;
-}
-
-.status {
- display: inline-block;
- min-width: 120px;
-}
-
-.warning {
- color: #F06;
- margin: 0;
- font-size: 0.9em;
-}
-
-li[status="unknown"],
-li > .uninstall-button,
-li > .install-button,
-li > progress {
- display: none;
-}
-
-li[status="installed"] > .uninstall-button,
-li[status="uninstalled"] > .install-button,
-li[status="preparing"] > progress,
-li[status="downloading"] > progress,
-li[status="installing"] > progress {
- display: inline;
-}
-
-li:not([status="uninstalled"]) > .warning {
- display: none;
-}