mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 17:30:18 +01:00
318 lines
8.1 KiB
CSS
318 lines
8.1 KiB
CSS
|
/* ***** BEGIN LICENSE BLOCK *****
|
||
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||
|
*
|
||
|
* The contents of this file are subject to the Mozilla Public License Version
|
||
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
||
|
* the License. You may obtain a copy of the License at
|
||
|
* http://www.mozilla.org/MPL/
|
||
|
*
|
||
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||
|
* for the specific language governing rights and limitations under the
|
||
|
* License.
|
||
|
*
|
||
|
* The Original Code is Mozilla JSIRC Library.
|
||
|
*
|
||
|
* The Initial Developer of the Original Code is
|
||
|
* New Dimensions Consulting, Inc.
|
||
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
||
|
* the Initial Developer. All Rights Reserved.
|
||
|
*
|
||
|
* Contributor(s):
|
||
|
* Robert Ginda, rginda@ndcico.com, original author
|
||
|
*
|
||
|
* Alternatively, the contents of this file may be used under the terms of
|
||
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||
|
* of those above. If you wish to allow use of your version of this file only
|
||
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||
|
* use your version of this file under the terms of the MPL, indicate your
|
||
|
* decision by deleting the provisions above and replace them with the notice
|
||
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||
|
* the provisions above, a recipient may use your version of this file under
|
||
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
||
|
*
|
||
|
* ***** END LICENSE BLOCK ***** */
|
||
|
|
||
|
@import url(chrome://communicator/skin/);
|
||
|
|
||
|
window {
|
||
|
width: 640px;
|
||
|
height: 480px;
|
||
|
}
|
||
|
|
||
|
#menu-view-none {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#tabpanels-contents-box {
|
||
|
margin: 3px 0;
|
||
|
}
|
||
|
|
||
|
#header-url:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
#outer-box {
|
||
|
margin: 5px;
|
||
|
}
|
||
|
|
||
|
.toolbarbutton-menu-dropmarker {
|
||
|
margin-left: 0.5em;
|
||
|
}
|
||
|
|
||
|
#input-widget,
|
||
|
#input-widget-multiline {
|
||
|
border: thin silver inset;
|
||
|
}
|
||
|
|
||
|
#button-multiline-expand {
|
||
|
list-style-image:url("chrome://chatzilla/skin/images/multiline-expand.png");
|
||
|
}
|
||
|
|
||
|
#button-multiline-contract {
|
||
|
list-style-image:url("chrome://chatzilla/skin/images/multiline-contract.png");
|
||
|
}
|
||
|
|
||
|
#button-input {
|
||
|
list-style-image:url("chrome://chatzilla/skin/images/input-send.png");
|
||
|
}
|
||
|
|
||
|
.highlight-menu-item:hover {
|
||
|
color: white !important;
|
||
|
background: darkslategrey !important;
|
||
|
}
|
||
|
|
||
|
#view-tabs {
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|
||
|
#views-tbar-spacer {
|
||
|
-moz-box-flex: 10000;
|
||
|
}
|
||
|
|
||
|
.view-button {
|
||
|
/* do NOT set colour, at least not without background. :) */
|
||
|
text-align: center;
|
||
|
max-width: 30ex;
|
||
|
-moz-box-flex: 1;
|
||
|
}
|
||
|
|
||
|
.view-button[state="current"] {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.view-button[state="superfluous"] {
|
||
|
color: darkblue;
|
||
|
}
|
||
|
|
||
|
.view-button[state="activity"] {
|
||
|
color: darkgreen;
|
||
|
}
|
||
|
|
||
|
.view-button[state="attention"] {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
.output-container {
|
||
|
border: thin silver inset;
|
||
|
border-left: none;
|
||
|
border-right: none;
|
||
|
}
|
||
|
|
||
|
treecol {
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
/* we need to define both the : and :: versions of the treechildren selector
|
||
|
* so that we work on both 1.5 and pre 1.5 builds.
|
||
|
*
|
||
|
* The userlist can be in one of two state. In "symbol", the user's
|
||
|
* channel mode is shown as a @ or + image, while in "graphic" mode, the
|
||
|
* image is one of the LED images.
|
||
|
*/
|
||
|
|
||
|
/* no mode */
|
||
|
treechildren:-moz-tree-image {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/no-symbol.png);
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-image {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/no-symbol.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren:-moz-tree-image {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/no-graphic.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren::-moz-tree-image {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/no-graphic.png);
|
||
|
}
|
||
|
|
||
|
/* voice */
|
||
|
treechildren:-moz-tree-image(voice-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/voice-symbol.png);
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-image(voice-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/voice-symbol.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren:-moz-tree-image(voice-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/voice-graphic.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren::-moz-tree-image(voice-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/voice-graphic.png);
|
||
|
}
|
||
|
|
||
|
/* half-chanop */
|
||
|
treechildren:-moz-tree-image(halfop-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/halfop-symbol.png);
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-image(halfop-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/halfop-symbol.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren:-moz-tree-image(halfop-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/halfop-graphic.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren::-moz-tree-image(halfop-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/halfop-graphic.png);
|
||
|
}
|
||
|
|
||
|
/* chanop */
|
||
|
treechildren:-moz-tree-image(op-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/op-symbol.png);
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-image(op-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/op-symbol.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren:-moz-tree-image(op-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/op-graphic.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren::-moz-tree-image(op-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/op-graphic.png);
|
||
|
}
|
||
|
|
||
|
/* admin */
|
||
|
treechildren:-moz-tree-image(admin-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/admin-symbol.png);
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-image(admin-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/admin-symbol.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren:-moz-tree-image(admin-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/admin-graphic.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren::-moz-tree-image(admin-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/admin-graphic.png);
|
||
|
}
|
||
|
|
||
|
/* founder */
|
||
|
treechildren:-moz-tree-image(founder-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/founder-symbol.png);
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-image(founder-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/founder-symbol.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren:-moz-tree-image(founder-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/founder-graphic.png);
|
||
|
}
|
||
|
|
||
|
#user-list[mode="graphic"] treechildren::-moz-tree-image(founder-true) {
|
||
|
list-style-image: url(chrome://chatzilla/skin/images/founder-graphic.png);
|
||
|
}
|
||
|
|
||
|
/* away */
|
||
|
treechildren:-moz-tree-cell-text(away-true) {
|
||
|
color: GrayText;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-cell-text(away-true) {
|
||
|
color: GrayText;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
treechildren:-moz-tree-cell-text(away-false) {
|
||
|
}
|
||
|
|
||
|
treechildren::-moz-tree-cell-text(away-false) {
|
||
|
}
|
||
|
|
||
|
menuitem[header="true"] {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.colorGrid
|
||
|
{
|
||
|
width: 24px;
|
||
|
height: 16px;
|
||
|
border: 1px solid black;
|
||
|
-moz-box-align: center;
|
||
|
-moz-box-pack: center;
|
||
|
}
|
||
|
|
||
|
#colorTooltip
|
||
|
{
|
||
|
padding: 0px;
|
||
|
-moz-box-align: center;
|
||
|
-moz-box-pack: center;
|
||
|
}
|
||
|
|
||
|
/* Feel the hacks. */
|
||
|
progressmeter[mode="undetermined"] {
|
||
|
-moz-appearance: none;
|
||
|
}
|
||
|
|
||
|
[dir="ltr"] {
|
||
|
direction: ltr;
|
||
|
}
|
||
|
|
||
|
[dir="rtl"] {
|
||
|
direction: rtl;
|
||
|
}
|
||
|
|
||
|
/* Hack; Stop the status-bar from distorting without a security icon */
|
||
|
#status-text {
|
||
|
min-height: 17px;
|
||
|
}
|
||
|
|
||
|
#security-button {
|
||
|
min-width: 20px;
|
||
|
}
|
||
|
|
||
|
#security-button:not([level="high"]):not([level="low"]):not([level="broken"]) {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#security-button[level="high"] > image {
|
||
|
list-style-image: url("chrome://chatzilla/skin/images/secure.png");
|
||
|
}
|
||
|
|
||
|
#security-button[level="low"] > image {
|
||
|
list-style-image: url("chrome://chatzilla/skin/images/secure.png");
|
||
|
}
|
||
|
|
||
|
#security-button[level="broken"] > image {
|
||
|
list-style-image: url("chrome://chatzilla/skin/images/secure-broken.png");
|
||
|
}
|
||
|
|
||
|
/* prevent margins of a value-less label from shifting the image */
|
||
|
#security-button > label:not([value]) {
|
||
|
display: none;
|
||
|
}
|
||
|
|