sync LCARStrek with windows browser theme changes in Firefox 24
[themes.git] / LCARStrek / chatzilla / chatzilla.css
index 0ea174cdb6219124a37ea088f2cb3ed04e3cb0ce..7912ccdd37099e44fddec5d2f94d37418b042a0d 100644 (file)
@@ -1,30 +1,8 @@
-/*
- * 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 New Dimensions Consulting, Inc. are
- * Copyright (C) 1999 New Dimenstions Consulting, Inc. All
- * Rights Reserved.
- *
- * Contributor(s):
- *  Robert Ginda, rginda@ndcico.com, original author
- *  Robert Kaiser, KaiRo@KaiRo.at, skinning
- * 
- * Styles for UI, See output-default.css for output window styles
- *
- */
+/* 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/. */
 
-@import url(chrome://communicator/skin/);
+@import url("chrome://communicator/skin/");
 
 window {
   width: 640px;
@@ -36,12 +14,7 @@ window {
 }
 
 #tabpanels-contents-box {
-  margin: 3px;
-}
-
-.header-label,
-.header-data {
-  color: #000000;
+  margin: 3px 0;
 }
 
 #header-url:hover {
@@ -49,26 +22,64 @@ window {
 }
 
 #outer-box {
-/*  margin: 5px; */
+  margin: 5px;
 }
 
-#main-splitter {
-  border: none;
+.toolbarbutton-menu-dropmarker {
+  margin-left: 0.5em;
 }
 
 #input-widget,
 #input-widget-multiline {
-  -moz-border-radius: 5px;
+  border-radius: 5px;
   border: 1px solid #9C9CFF;
 }
 
+#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: #000000 !important;
   background: #008484 !important;
 }
 
+#view-tabs {
+  overflow: hidden;
+}
+
+#views-tbar-spacer {
+  -moz-box-flex: 10000;
+}
+
+#tabs-drop-indicator-bar {
+  position: relative;
+  margin-top: -3px;
+  -moz-margin-start: -5px;
+  height: 3px;
+}
+
+#tabs-drop-indicator {
+  position: relative;
+  margin-bottom: -8px;
+  width: 11px;
+  height: 11px;
+  background: url("chrome://chatzilla/skin/images/drop-indicator-bottom.png") 50% 50% no-repeat;
+}
+
 .view-button {
-  color: #FF9F00;
+  /* do NOT set colour, at least not without background. :) */
+  text-align: center;
+  max-width: 30ex;
+  -moz-box-flex: 1;
 }
 
 .view-button[state="current"] {
@@ -91,61 +102,178 @@ window {
   color: #000000;
 }
 
-/* spaces after the 4th and 8th tab, so you can line them up with your Fn
- * keys */
-.view-button[viewKey="4"],
-.view-button[viewKey="8"] {
-  margin-left: 5px;
+.output-container {
+  border-radius: 5px;
+  border: 1px solid #9C9CFF;
 }
 
-.header-box, .usercount-data {
-  padding-top: 2px;
-  padding-bottom: 2px;
-  padding-right: 10px;
+treecol { 
+  border: none;
 }
 
-#server-nick {
-  padding-top: 5px;
+/* 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");
 }
 
-.header-label {
-  font-weight: bold;
-  text-align: right;
-  margin-left: 10px;
+#user-list[mode="graphic"] treechildren::-moz-tree-image {
+  list-style-image: url("chrome://chatzilla/skin/images/no-graphic.png");
 }
 
-.header-data {
-  text-align: left;
-  margin-left: 5px;
+/* voice */
+treechildren::-moz-tree-image(voice-true) {
+  list-style-image: url("chrome://chatzilla/skin/images/voice-symbol.png");
 }
 
-#channel-topic {
-  cursor: default;
+#user-list[mode="graphic"] treechildren::-moz-tree-image(voice-true) {
+  list-style-image: url("chrome://chatzilla/skin/images/voice-graphic.png");
 }
 
-#channel-topic[editable="true"] {
-  cursor: text;
+/* half-chanop */
+treechildren::-moz-tree-image(halfop-true) {
+  list-style-image: url("chrome://chatzilla/skin/images/halfop-symbol.png");
 }
 
-.output-container {
-  -moz-border-radius: 5px;
+#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");
+}
+
+#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");
+}
+
+#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");
+}
+
+#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: #8050B0;
+  font-style: italic;
+}
+
+treechildren::-moz-tree-cell-text(away-false) {
+}
+
+menuitem[header="true"] {
+  text-align: center;
+}
+
+.colorGrid
+{
+  width: 24px;
+  height: 16px;
   border: 1px solid #9C9CFF;
+  -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;
+}
+
+#status-text[notice="true"] {
+  font-weight: bold;
+}
+
+#security-button {
+  min-width: 20px;
+}
+
+#security-button:not([level="high"]):not([level="broken"]) {
+  display: none;
+}
+
+#security-button[level="high"] > image {
+  list-style-image: url("chrome://communicator/skin/icons/lock-secure.gif");
+}
+
+#security-button[level="broken"] > image {
+  list-style-image: url("chrome://communicator/skin/icons/lock-broken.gif");
+}
+
+/* prevent margins of a value-less label from shifting the image */
+#security-button > label:not([value]) {
+  display: none;
+}
+
+#offline-status[offlinestate="offline"] {
+  list-style-image: url("chrome://communicator/skin/icons/offline.gif");
+}
+
+#offline-status[offlinestate="online"] {
+  list-style-image: url("chrome://communicator/skin/icons/online.gif");
 }
 
-/* op image column */
-treechildren::-moz-tree-image(usercol-op, state-true) {
-  list-style-image: url(chrome://chatzilla/skin/images/is-op.gif)
+/* Focus styling for a11y reasons */
+#user-list-box[focusobvious="true"], #browser-box[focusobvious="true"],
+#multiline-hug-box[focusobvious="true"], #singleline-hug-box[focusobvious="true"] {
+  border-color: highlight !important;
 }
 
-treechildren::-moz-tree-image(usercol-op, state-false) {
-  list-style-image: url(chrome://chatzilla/skin/images/isnt-op.gif)
+/* Not setting a right border so the scrollbar remains on the window edge. */
+#browser-box:last-child, #user-list-box:last-child {
+  border-left: 2px solid transparent;
+  border-top: 2px solid transparent;
+  border-bottom: 2px solid transparent;
 }
 
-/* voice image column */
-treechildren::-moz-tree-image(usercol-voice, state-true) {
-  list-style-image: url(chrome://chatzilla/skin/images/is-voice.gif)
+#user-list-box:first-child, #browser-box:first-child {
+  border-right: 2px solid transparent;
+  border-top: 2px solid transparent;
+  border-bottom: 2px solid transparent;
 }
 
-treechildren::-moz-tree-image(usercol-voice, state-false) {
-  list-style-image: url(chrome://chatzilla/skin/images/isnt-voice.gif)
+#singleline-hug-box, #multiline-hug-box {
+  border-right: 2px solid transparent;
+  border-left: 2px solid transparent;
+  border-top: 2px solid transparent;
 }