diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
commit | 6d614170cbfa958564eb5f824234ad5a9e484344 (patch) | |
tree | 3e1eb384382f30987cb2e64bd654afa8b74fd06b /application/basilisk/themes/shared/webRTC-indicator.css | |
parent | 2a6b605d64b19411a300efdbbd7f78c349f90206 (diff) | |
download | UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.gz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.lz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.xz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.zip |
Revert "Add Basilisk"
This reverts commit e72ef92b5bdc43cd2584198e2e54e951b70299e8.
Diffstat (limited to 'application/basilisk/themes/shared/webRTC-indicator.css')
-rw-r--r-- | application/basilisk/themes/shared/webRTC-indicator.css | 116 |
1 files changed, 0 insertions, 116 deletions
diff --git a/application/basilisk/themes/shared/webRTC-indicator.css b/application/basilisk/themes/shared/webRTC-indicator.css deleted file mode 100644 index 938d64318..000000000 --- a/application/basilisk/themes/shared/webRTC-indicator.css +++ /dev/null @@ -1,116 +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/. */ - -window { - border: 1px solid #ff9500; -} - -#audioVideoButton, -#screenShareButton, -#firefoxButton { - height: 29px; - margin: 0; - -moz-appearance: none; - border-style: none; -} - -#firefoxButton { - background-image: url("chrome://branding/content/icon48.png"); - background-repeat: no-repeat; - background-size: 22px; - background-position: center center; - min-width: 29px; - background-color: white; -} - -#firefoxButton:hover { - background-color: #f2f2f2; -} - -#screenShareButton { - background-image: url("chrome://browser/skin/notification-icons.svg#screen-indicator"); - background-position: center center; - background-repeat: no-repeat; - background-size: 16px; - min-width: 27px; - display: none; -} - -window[sharingscreen] > #screenShareButton { - display: -moz-box; -} - -#audioVideoButton { - display: none; - background-repeat: no-repeat; -} - -/* When screen sharing, need to pull in the separator: */ -window[sharingscreen] > #audioVideoButton { - margin-right: -1px; -} - -/* Single icon button: */ -window[sharingvideo] > #audioVideoButton, -window[sharingaudio] > #audioVideoButton { - display: -moz-box; - background-position: center center; - background-size: 16px; - min-width: 26px; -} - -window[sharingvideo] > #audioVideoButton { - background-image: url("chrome://browser/skin/notification-icons.svg#camera-indicator"); -} - -window[sharingaudio] > #audioVideoButton { - background-image: url("chrome://browser/skin/notification-icons.svg#microphone-indicator"); -} - -/* Multi-icon button: */ -window[sharingaudio][sharingvideo] > #audioVideoButton { - background-image: url("chrome://browser/skin/notification-icons.svg#camera-indicator"), - url("chrome://browser/skin/notification-icons.svg#microphone-indicator"); - background-position: 6px center, 26px center; - background-size: 16px, 16px; - min-width: 46px; -} - -/* Hover styles */ -#audioVideoButton, -#screenShareButton { - background-color: #ffaa33; -} - -#audioVideoButton:hover, -#screenShareButton:hover { - background-color: #ff9500; -} - -/* Don't show the dropmarker for the type="menu" case */ -#audioVideoButton > .box-inherit > .button-menu-dropmarker, -#screenShareButton > .box-inherit > .button-menu-dropmarker { - display: none; -} - -/* Separator in case of screen sharing + video/audio sharing */ -#shareSeparator { - width: 1px; - margin: 4px -1px 4px 0; - background-color: #FFCA80; - /* Separator needs to show above either button when they're hovered: */ - position: relative; - z-index: 1; - display: none; -} - -window[sharingscreen][sharingvideo] > #shareSeparator, -window[sharingscreen][sharingaudio] > #shareSeparator { - display: -moz-box; -} - -:-moz-any(#audioVideoButton, #screenShareButton, - #firefoxButton):-moz-focusring > .button-box { - border: none; -} |