| 1 | /* ***** BEGIN LICENSE BLOCK ***** |
| 2 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 3 | * |
| 4 | * The contents of this file are subject to the Mozilla Public License Version |
| 5 | * 1.1 (the "License"); you may not use this file except in compliance with |
| 6 | * the License. You may obtain a copy of the License at |
| 7 | * http://www.mozilla.org/MPL/ |
| 8 | * |
| 9 | * Software distributed under the License is distributed on an "AS IS" basis, |
| 10 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
| 11 | * for the specific language governing rights and limitations under the |
| 12 | * License. |
| 13 | * |
| 14 | * The Original Code is "Classic" theme of mozilla.org code. |
| 15 | * |
| 16 | * The Initial Developer of the Original Code is |
| 17 | * the Mozilla Organization. |
| 18 | * Portions created by the Initial Developer are Copyright (C) 1998-2001 |
| 19 | * the Initial Developer. All Rights Reserved. |
| 20 | * |
| 21 | * Contributor(s): |
| 22 | * Robert Kaiser <KaiRo@KaiRo.at> |
| 23 | * |
| 24 | * Alternatively, the contents of this file may be used under the terms of |
| 25 | * either the GNU General Public License Version 2 or later (the "GPL"), or |
| 26 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
| 27 | * in which case the provisions of the GPL or the LGPL are applicable instead |
| 28 | * of those above. If you wish to allow use of your version of this file only |
| 29 | * under the terms of either the GPL or the LGPL, and not to allow others to |
| 30 | * use your version of this file under the terms of the MPL, indicate your |
| 31 | * decision by deleting the provisions above and replace them with the notice |
| 32 | * and other provisions required by the GPL or the LGPL. If you do not delete |
| 33 | * the provisions above, a recipient may use your version of this file under |
| 34 | * the terms of any one of the MPL, the GPL or the LGPL. |
| 35 | * |
| 36 | * ***** END LICENSE BLOCK ***** */ |
| 37 | |
| 38 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
| 39 | |
| 40 | .tabbrowser-strip { |
| 41 | border-bottom: 1px solid #FF9F00; |
| 42 | } |
| 43 | |
| 44 | .tabmail-strip { |
| 45 | border-bottom: none; |
| 46 | } |
| 47 | |
| 48 | tabpanels { |
| 49 | } |
| 50 | |
| 51 | .tabbrowser-tabs { |
| 52 | } |
| 53 | |
| 54 | .tabs-left, |
| 55 | .tabs-right { |
| 56 | display: none; |
| 57 | } |
| 58 | |
| 59 | .tab-icon { |
| 60 | margin-top: 1px; |
| 61 | -moz-margin-end: 3px; |
| 62 | width: 16px; |
| 63 | height: 16px; |
| 64 | } |
| 65 | |
| 66 | .tabbrowser-tab { |
| 67 | margin-top: 0px; |
| 68 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); |
| 69 | } |
| 70 | |
| 71 | .tabbrowser-tab[busy] { |
| 72 | list-style-image: url("chrome://global/skin/icons/loading.gif"); |
| 73 | } |
| 74 | |
| 75 | .tabbrowser-tab[busy]:hover { |
| 76 | list-style-image: url("chrome://global/skin/icons/loading-hover.gif"); |
| 77 | } |
| 78 | |
| 79 | tabbrowser > tabbox > tabpanels { |
| 80 | border: none; |
| 81 | padding: 0px; |
| 82 | margin: 0px; |
| 83 | } |
| 84 | |
| 85 | .tabbrowser-tab:-moz-lwtheme { |
| 86 | text-shadow: none; |
| 87 | } |
| 88 | |
| 89 | .scrollbutton-up:-moz-lwtheme, |
| 90 | .scrollbutton-down:-moz-lwtheme:not([selected="true"]), |
| 91 | .tabbrowser-tab:-moz-lwtheme:not([selected="true"]) { |
| 92 | opacity: .8; |
| 93 | } |
| 94 | |
| 95 | .toolbarbutton-text { |
| 96 | display: none; |
| 97 | } |
| 98 | |
| 99 | .toolbarbutton-icon { |
| 100 | margin: 0px !important; /* needs to override communicator.css */ |
| 101 | } |
| 102 | |
| 103 | /* ::::: Tab scrollbox arrow, and all-tabs buttons ::::: */ |
| 104 | |
| 105 | .scrollbutton-up, |
| 106 | .scrollbutton-down { |
| 107 | } |
| 108 | |
| 109 | .tabs-alltabs-button { |
| 110 | margin: 2px 0px 1px; |
| 111 | } |
| 112 | |
| 113 | /* All tabs menupopup */ |
| 114 | .alltabs-item { |
| 115 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); |
| 116 | } |
| 117 | |
| 118 | .alltabs-item[selected="true"] { |
| 119 | font-weight: bold; |
| 120 | } |
| 121 | |
| 122 | .alltabs-item[busy] { |
| 123 | list-style-image: url("chrome://communicator/skin/icons/loading.gif"); |
| 124 | } |
| 125 | |
| 126 | /* ::::: close & new tab buttons ::::: */ |
| 127 | |
| 128 | .tabs-closebutton-box { |
| 129 | -moz-box-orient: vertical; |
| 130 | } |
| 131 | |
| 132 | .tabs-closebutton { |
| 133 | -moz-box-flex: 1; |
| 134 | margin: 0px; |
| 135 | padding: 2px; |
| 136 | list-style-image: url("chrome://global/skin/icons/close-button.gif"); |
| 137 | } |
| 138 | |
| 139 | .tabs-closebutton:hover, |
| 140 | .tabs-closebutton:hover:active { |
| 141 | list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); |
| 142 | } |
| 143 | |
| 144 | .tabs-newbutton { |
| 145 | margin: 0px; |
| 146 | padding: 0px; |
| 147 | list-style-image: url("chrome://navigator/skin/icons/tab-new.gif"); |
| 148 | } |
| 149 | |
| 150 | .tabs-newbutton-box { |
| 151 | -moz-box-orient: vertical; |
| 152 | } |
| 153 | |
| 154 | .tabs-newbutton-box > .tabs-newbutton { |
| 155 | -moz-box-flex: 1; |
| 156 | } |
| 157 | |
| 158 | .tab-drop-indicator-bar { |
| 159 | height: 11px; |
| 160 | margin-top: -11px; |
| 161 | -moz-margin-start: -6px; |
| 162 | position: relative; |
| 163 | } |
| 164 | |
| 165 | .tab-drop-indicator { |
| 166 | height: 11px; |
| 167 | width: 11px; |
| 168 | margin-bottom: -8px; |
| 169 | position: relative; |
| 170 | list-style-image: url('chrome://navigator/skin/icons/tab-drag-indicator.gif'); |
| 171 | } |
| 172 | |
| 173 | tooltip[tabpreview="true"] { |
| 174 | max-width: none; |
| 175 | } |