2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
body {
|
|
|
|
background-color: transparent;
|
2011-02-08 10:14:31 -08:00
|
|
|
font: message-box;
|
2010-09-08 16:47:58 -07:00
|
|
|
color: rgba(0, 0, 0, 0.6);
|
2010-09-01 13:14:37 -07:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bg {
|
2013-01-23 15:08:16 -08:00
|
|
|
background: linear-gradient(#C4C4C4, #9E9E9E);
|
2011-01-25 11:10:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#bg:-moz-window-inactive {
|
2013-01-23 15:08:16 -08:00
|
|
|
background: linear-gradient(#EDEDED, #D8D8D8);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tabs
|
|
|
|
----------------------------------*/
|
|
|
|
|
|
|
|
.tab {
|
2011-07-04 15:23:35 -07:00
|
|
|
margin: 8px;
|
2010-11-07 22:38:24 -08:00
|
|
|
padding-top: 4px;
|
|
|
|
-moz-padding-end: 6px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
-moz-padding-start: 4px;
|
2011-07-04 15:23:35 -07:00
|
|
|
background-color: rgb(240,240,240);
|
2010-09-09 08:21:47 -07:00
|
|
|
border-radius: 0.4em;
|
2010-09-01 13:14:37 -07:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab canvas,
|
|
|
|
.cached-thumb {
|
2010-09-08 16:47:58 -07:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-09-08 16:47:58 -07:00
|
|
|
.thumb {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.2);
|
2010-10-06 13:17:53 -07:00
|
|
|
background-color: white;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .thumb {
|
|
|
|
box-shadow: -1px 2px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.favicon {
|
2011-07-04 15:23:35 -07:00
|
|
|
background-color: rgb(240,240,240);
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow:
|
2010-09-08 16:47:58 -07:00
|
|
|
0 -1px 0 rgba(225, 225, 225, 0.8) inset,
|
|
|
|
-1px 0 0 rgba(225, 225, 225, 0.8) inset;
|
2010-11-07 22:38:24 -08:00
|
|
|
padding-top: 4px;
|
|
|
|
-moz-padding-end: 6px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
-moz-padding-start: 4px;
|
2010-09-01 13:14:37 -07:00
|
|
|
top: 4px;
|
|
|
|
left: 4px;
|
2010-11-07 22:38:24 -08:00
|
|
|
-moz-border-end: 1px solid rgba(0, 0, 0, 0.3);
|
2010-09-08 16:47:58 -07:00
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=ltr] .favicon {
|
|
|
|
border-bottom-right-radius: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[dir=rtl] .favicon {
|
|
|
|
border-bottom-left-radius: 0.4em;
|
|
|
|
box-shadow:
|
|
|
|
0 -1px 0 rgba(225, 225, 225, 0.8) inset,
|
|
|
|
1px 0 0 rgba(225, 225, 225, 0.8) inset;
|
|
|
|
left: auto;
|
|
|
|
right: 2px;
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.favicon img {
|
|
|
|
border: none;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2010-07-29 12:37:25 -07:00
|
|
|
.close {
|
2010-09-01 13:14:37 -07:00
|
|
|
top: 6px;
|
|
|
|
right: 6px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2011-02-10 17:03:47 -08:00
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/close.png), 0, 16, 16, 0);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
.close:hover {
|
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/close.png), 0, 32, 16, 16);
|
|
|
|
}
|
|
|
|
.close:active {
|
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/close.png), 0, 48, 16, 32);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .close {
|
|
|
|
right: auto;
|
|
|
|
left: 6px;
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.expander {
|
2010-09-08 16:47:58 -07:00
|
|
|
bottom: 8px;
|
2010-09-01 13:14:37 -07:00
|
|
|
right: 6px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
background: url(chrome://global/skin/icons/resizer.png) no-repeat;
|
2012-07-10 19:13:55 -07:00
|
|
|
transition-property: opacity;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
2010-09-01 13:14:37 -07:00
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .expander {
|
|
|
|
right: auto;
|
|
|
|
left: 6px;
|
2012-07-16 08:10:27 -07:00
|
|
|
transform: scaleX(-1);
|
2010-11-07 22:38:24 -08:00
|
|
|
}
|
|
|
|
|
2011-02-04 09:45:41 -08:00
|
|
|
.expander:hover,
|
|
|
|
.appTabIcon:hover {
|
2012-07-10 19:13:55 -07:00
|
|
|
transition-property: opacity;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
2010-09-01 13:14:37 -07:00
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.favicon img:hover,
|
|
|
|
.expander img:hover {
|
|
|
|
opacity: 1;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-title {
|
2010-09-08 16:47:58 -07:00
|
|
|
bottom: -20px;
|
2010-09-01 13:14:37 -07:00
|
|
|
text-align: center;
|
|
|
|
width: 94.5%;
|
2011-01-25 11:10:00 -08:00
|
|
|
text-shadow: 0 1px rgba(255, 255, 255, 0.6);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.stacked {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacked .thumb {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: rgba(0,0,0,.2) 1px 1px 4px;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .stacked .thumb {
|
|
|
|
box-shadow: rgba(0,0,0,.2) -1px 1px 4px;
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.stack-trayed .tab-title {
|
2010-09-11 09:27:12 -07:00
|
|
|
text-shadow: rgba(0,0,0,1) 1px 1px 1.5px;
|
2010-09-01 13:14:37 -07:00
|
|
|
color: #EEE;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .stack-trayed .tab-title {
|
|
|
|
text-shadow: rgba(0,0,0,1) -1px 1px 1.5px;
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.stack-trayed .thumb {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: none !important;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-09-08 16:47:58 -07:00
|
|
|
.tab.focus {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 0 0 5.5px -moz-mac-menuselect/*#0060D6*/;
|
2010-09-08 16:47:58 -07:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.6);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tab: Zooming
|
|
|
|
----------------------------------*/
|
|
|
|
|
|
|
|
.front .tab-title,
|
|
|
|
.front .close,
|
|
|
|
.front .favicon,
|
|
|
|
.front .expander,
|
|
|
|
.front .thumb-shadow {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2010-09-08 16:47:58 -07:00
|
|
|
.front .thumb {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: none !important;
|
2010-09-08 16:47:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.front.focus {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: none !important;
|
2010-09-08 16:47:58 -07:00
|
|
|
border: none !important;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tab GroupItem
|
|
|
|
----------------------------------*/
|
|
|
|
|
|
|
|
.groupItem {
|
2011-07-01 20:08:47 -07:00
|
|
|
cursor: pointer;
|
2011-02-09 12:33:43 -08:00
|
|
|
background-color: rgb(240,240,240);
|
2010-09-09 08:21:47 -07:00
|
|
|
border-radius: 0.4em;
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
|
2010-09-08 16:47:58 -07:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.groupItem.activeGroupItem {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow:
|
2011-02-09 12:33:43 -08:00
|
|
|
rgba(0,0,0,0.8) 2px 2px 8px;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .groupItem.activeGroupItem {
|
|
|
|
box-shadow:
|
2011-02-09 12:33:43 -08:00
|
|
|
rgba(0,0,0,0.8) -2px 2px 8px;
|
2010-11-07 22:38:24 -08:00
|
|
|
}
|
|
|
|
|
2011-02-17 12:33:53 -08:00
|
|
|
.groupItem .close {
|
|
|
|
z-index: 10;
|
2011-08-14 23:12:21 -07:00
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
background-position: bottom left;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[dir=rtl] .groupItem .close {
|
|
|
|
right: auto;
|
|
|
|
left: 0px;
|
|
|
|
background-position: bottom right;
|
2011-02-17 12:33:53 -08:00
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.phantom {
|
2010-09-08 16:47:58 -07:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-12-12 14:36:19 -08:00
|
|
|
.dragRegion {
|
|
|
|
background: rgba(235, 235, 235, 0.4);
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.overlay {
|
|
|
|
background-color: rgba(0,0,0,.7) !important;
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 3px 3px 5.5px rgba(0,0,0,.5);
|
2010-09-09 08:21:47 -07:00
|
|
|
border-radius: 0.4em;
|
2010-11-07 22:38:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
html[dir=rtl] .overlay {
|
|
|
|
box-shadow: -3px 3px 5.5px rgba(0,0,0,.5);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2011-02-04 09:45:41 -08:00
|
|
|
.appTabTrayContainer {
|
2010-09-10 02:50:14 -07:00
|
|
|
top: 34px;
|
|
|
|
right: 1px;
|
2011-02-04 09:45:41 -08:00
|
|
|
-moz-border-start: 1px solid #E1E1E1;
|
|
|
|
padding: 0 5px;
|
2011-02-11 11:10:00 -08:00
|
|
|
overflow: -moz-hidden-unscrollable;
|
2011-02-04 09:45:41 -08:00
|
|
|
text-align: start;
|
|
|
|
line-height: 0;
|
2010-09-10 02:50:14 -07:00
|
|
|
}
|
|
|
|
|
2011-02-04 09:45:41 -08:00
|
|
|
html[dir=rtl] .appTabTrayContainer {
|
2010-11-07 22:38:24 -08:00
|
|
|
right: auto;
|
|
|
|
left: 1px;
|
|
|
|
}
|
|
|
|
|
2011-02-04 09:45:41 -08:00
|
|
|
.appTabTray {
|
|
|
|
display: inline-block;
|
|
|
|
-moz-column-width: 16px;
|
|
|
|
-moz-column-gap: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.appTabTrayContainerTruncated {
|
|
|
|
padding-bottom: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.appTabTrayContainerTruncated:after {
|
|
|
|
content: "…";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 2px;
|
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 15px;
|
|
|
|
line-height: 15px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
2010-09-10 02:50:14 -07:00
|
|
|
.appTabIcon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
cursor: pointer;
|
2011-02-04 09:45:41 -08:00
|
|
|
opacity: 0.8;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
display: block;
|
2010-09-10 02:50:14 -07:00
|
|
|
}
|
|
|
|
|
2010-09-10 07:40:27 -07:00
|
|
|
.undo {
|
|
|
|
background-color: #A0A0A0;
|
2011-03-08 17:14:00 -08:00
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
-moz-padding-start: 5px;
|
|
|
|
-moz-padding-end: 20px;
|
|
|
|
width: 135px;
|
|
|
|
line-height: 25px;
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 0px 1px 0px rgba(255,255,255,.5), 0px -1px 0px rgba(0,0,0,.24);
|
2010-09-10 07:40:27 -07:00
|
|
|
text-shadow: 0px -1px 0px rgba(255,255,255,.2);
|
|
|
|
color: rgba( 0,0,0, .8);
|
|
|
|
border-radius: 0.4em;
|
|
|
|
text-align: center;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.undo:hover {
|
|
|
|
background-color: #949494;
|
|
|
|
}
|
|
|
|
|
|
|
|
.undo .close {
|
2011-03-08 17:14:00 -08:00
|
|
|
top: 7px;
|
|
|
|
right: 7px;
|
2010-09-10 07:40:27 -07:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .undo .close {
|
2011-03-08 17:14:00 -08:00
|
|
|
right: auto;
|
|
|
|
left: 7px;
|
2010-11-07 22:38:24 -08:00
|
|
|
}
|
|
|
|
|
2010-09-10 07:40:27 -07:00
|
|
|
.undo .close:hover{
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
/* Trenches
|
|
|
|
----------------------------------*/
|
|
|
|
|
|
|
|
.guideTrench {
|
|
|
|
opacity: 0.9;
|
|
|
|
border: 1px dashed rgba(0,0,0,.12);
|
|
|
|
border-bottom: none;
|
2010-11-07 22:38:24 -08:00
|
|
|
-moz-border-end: none;
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 1px 1px 0 rgba(255,255,255,.15);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .guideTrench {
|
|
|
|
box-shadow: -1px 1px 0 rgba(255,255,255,.15);
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.visibleTrench {
|
|
|
|
opacity: 0.05;
|
|
|
|
}
|
|
|
|
|
|
|
|
.activeVisibleTrench {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.activeVisibleTrench.activeTrench {
|
|
|
|
opacity: 0.45;
|
|
|
|
}
|
|
|
|
|
|
|
|
.visibleTrench.border,
|
|
|
|
.activeVisibleTrench.border {
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.visibleTrench.guide,
|
|
|
|
.activeVisibleTrench.guide {
|
|
|
|
background-color: blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Other
|
|
|
|
----------------------------------*/
|
|
|
|
|
|
|
|
.active {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 5px 5px 3px rgba(0,0,0,.5);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .active {
|
|
|
|
box-shadow: -5px 5px 3px rgba(0,0,0,.5);
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.acceptsDrop {
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 2px 2px 7px -1px rgba(0,0,0,.6);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .acceptsDrop {
|
|
|
|
box-shadow: -2px 2px 7px -1px rgba(0,0,0,.6);
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.titlebar {
|
2011-07-01 20:08:47 -07:00
|
|
|
cursor: move;
|
2010-09-01 13:14:37 -07:00
|
|
|
font-size: 12px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.name {
|
|
|
|
background: transparent;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
color: #999;
|
2010-11-07 22:38:24 -08:00
|
|
|
margin-top: 3px;
|
|
|
|
-moz-margin-end: 0;
|
|
|
|
margin-bottom: 0;
|
2011-01-11 20:36:05 -08:00
|
|
|
-moz-margin-start: 3px;
|
2010-09-01 13:14:37 -07:00
|
|
|
padding: 1px;
|
2010-11-07 22:38:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
html[dir=rtl] input.name {
|
|
|
|
background-position: right top;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2011-01-11 20:36:05 -08:00
|
|
|
.title-container:hover input.name,
|
|
|
|
.title-container input.name:focus {
|
2010-09-01 13:14:37 -07:00
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-container:hover input.name-locked {
|
|
|
|
border: 1px solid transparent !important;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.name:focus {
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2012-11-09 02:24:23 -08:00
|
|
|
input.name::-moz-placeholder {
|
2012-11-09 02:30:54 -08:00
|
|
|
opacity: 1.0;
|
2010-09-01 13:14:37 -07:00
|
|
|
font-style: italic !important;
|
2011-01-25 11:10:00 -08:00
|
|
|
color: transparent;
|
2011-01-11 20:36:05 -08:00
|
|
|
background-image: url(chrome://browser/skin/tabview/edit-light.png);
|
|
|
|
background-repeat: no-repeat;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2012-11-09 02:24:23 -08:00
|
|
|
.title-container:hover input.name::-moz-placeholder {
|
2010-09-01 13:14:37 -07:00
|
|
|
color: #CCC;
|
2013-01-23 15:05:46 -08:00
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.name:focus::-moz-placeholder {
|
|
|
|
background-image: none;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.title-shield {
|
2010-11-07 22:38:24 -08:00
|
|
|
margin-top: 3px;
|
|
|
|
-moz-margin-end: 0;
|
|
|
|
margin-bottom: 0;
|
2011-01-11 20:36:05 -08:00
|
|
|
-moz-margin-start: 3px;
|
2010-09-01 13:14:37 -07:00
|
|
|
padding: 1px;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
2011-10-09 22:48:25 -07:00
|
|
|
width: -moz-available;
|
2011-02-17 05:09:20 -08:00
|
|
|
cursor: text;
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .title-shield {
|
|
|
|
left: auto;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.transparentBorder {
|
|
|
|
border: 1px solid transparent !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stackExpander {
|
|
|
|
cursor: pointer;
|
2011-01-16 01:58:53 -08:00
|
|
|
bottom: 8px;
|
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/stack-expander.png), 0, 48, 24, 24);
|
2010-09-01 13:14:37 -07:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stackExpander:hover {
|
2011-01-16 01:58:53 -08:00
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/stack-expander.png), 0, 24, 24, 0);
|
2010-09-01 13:14:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Resizable
|
|
|
|
----------------------------------*/
|
|
|
|
.resizer {
|
|
|
|
background-image: url(chrome://global/skin/icons/resizer.png);
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
|
|
|
opacity: .2;
|
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .resizer {
|
|
|
|
right: auto;
|
|
|
|
left: 0;
|
2012-07-16 08:10:27 -07:00
|
|
|
transform: scaleX(-1);
|
2010-11-07 22:38:24 -08:00
|
|
|
}
|
|
|
|
|
2010-09-01 13:14:37 -07:00
|
|
|
.iq-resizable-handle {
|
|
|
|
font-size: 0.1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.iq-resizable-se {
|
|
|
|
cursor: se-resize;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2011-01-25 14:02:22 -08:00
|
|
|
padding-right: 3px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
right: -2px;
|
|
|
|
bottom: -2px;
|
2010-09-08 11:37:50 -07:00
|
|
|
}
|
2010-09-10 07:51:08 -07:00
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] .iq-resizable-se {
|
|
|
|
cursor: sw-resize;
|
|
|
|
right: auto;
|
|
|
|
left: 1px;
|
|
|
|
}
|
|
|
|
|
2010-09-10 07:51:08 -07:00
|
|
|
/* Exit button
|
|
|
|
+----------------------------------*/
|
|
|
|
#exit-button {
|
2010-11-24 18:53:35 -08:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2011-01-13 15:09:46 -08:00
|
|
|
-moz-margin-end: 3px;
|
|
|
|
margin-top: 0px;
|
2010-11-23 09:28:02 -08:00
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 100, 20, 80);
|
|
|
|
background-attachment: scroll;
|
|
|
|
background-repeat: no-repeat;
|
2011-01-13 15:09:46 -08:00
|
|
|
border: none;
|
2010-11-23 09:28:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#exit-button[groups="0"] {
|
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 20, 20, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#exit-button[groups="1"] {
|
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 40, 20, 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
#exit-button[groups="2"] {
|
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 60, 20, 40);
|
|
|
|
}
|
|
|
|
|
|
|
|
#exit-button[groups="3"] {
|
|
|
|
background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 80, 20, 60);
|
2010-09-10 07:51:08 -07:00
|
|
|
}
|
2010-09-08 11:37:50 -07:00
|
|
|
|
|
|
|
/* Search
|
|
|
|
----------------------------------*/
|
2010-10-12 16:20:00 -07:00
|
|
|
#searchshade{
|
2010-09-08 11:37:50 -07:00
|
|
|
background-color: rgba(0,0,0,.42);
|
|
|
|
width: 100%;
|
2010-11-24 18:53:35 -08:00
|
|
|
height: 100%;
|
2010-09-08 11:37:50 -07:00
|
|
|
}
|
|
|
|
|
2011-01-25 11:10:00 -08:00
|
|
|
#searchshade:-moz-window-inactive {
|
2013-01-23 15:08:16 -08:00
|
|
|
background: linear-gradient(rgba(237,237,237,0.42), rgba(216,216,216,0.42));
|
2011-01-25 11:10:00 -08:00
|
|
|
}
|
|
|
|
|
2010-10-12 16:20:00 -07:00
|
|
|
#search{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
#searchbox {
|
2010-09-08 11:37:50 -07:00
|
|
|
width: 270px;
|
2012-07-23 09:13:04 -07:00
|
|
|
max-width: -moz-available;
|
|
|
|
-moz-margin-start: 20px;
|
2010-09-08 11:37:50 -07:00
|
|
|
height: 30px;
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow: 0px 1px 0px rgba(255,255,255,.5), 0px -1px 0px rgba(0,0,0,1), 0px 0px 13px rgba(0,0,0,.8);
|
2010-09-08 11:37:50 -07:00
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
background-color: #272727;
|
2010-09-09 08:21:47 -07:00
|
|
|
border-radius: 0.4em;
|
2010-11-07 22:38:24 -08:00
|
|
|
-moz-padding-start: 5px;
|
|
|
|
-moz-padding-end: 5px;
|
2010-09-08 11:37:50 -07:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2011-01-25 11:10:00 -08:00
|
|
|
#searchbox:-moz-window-inactive {
|
|
|
|
background-color: #BBBBBB;
|
|
|
|
box-shadow: 0px 1px 0px rgba(255,255,255,.1), 0px -1px 0px rgba(0,0,0,0.3), 0px 0px 13px rgba(0,0,0,.2);
|
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
#actions {
|
2011-01-13 15:09:46 -08:00
|
|
|
width: 29px;
|
2010-09-08 11:37:50 -07:00
|
|
|
text-align: center;
|
2011-01-13 15:09:46 -08:00
|
|
|
background-color: #EBEBEB;
|
|
|
|
border-radius: 0.4em;
|
|
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
2010-09-08 11:37:50 -07:00
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
#actions #searchbutton {
|
2010-09-08 11:37:50 -07:00
|
|
|
background: transparent url(chrome://browser/skin/tabview/search.png) no-repeat;
|
|
|
|
border: none;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2010-11-24 18:53:35 -08:00
|
|
|
margin-top: 3px;
|
2011-01-13 15:09:46 -08:00
|
|
|
-moz-margin-end: 1px;
|
2010-09-08 11:37:50 -07:00
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
.notMainMatch {
|
2010-09-08 11:37:50 -07:00
|
|
|
opacity: .70;
|
|
|
|
}
|
2010-09-21 14:56:52 -07:00
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
#otherresults {
|
2010-09-21 14:56:52 -07:00
|
|
|
left: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
|
|
|
background-color: rgba(0,0,0,.3);
|
2010-10-07 04:35:10 -07:00
|
|
|
box-shadow: 0 -1px 0 rgba(255,255,255,.1), inset 0 2px 5px rgba(0,0,0,.3);
|
2010-09-21 14:56:52 -07:00
|
|
|
}
|
|
|
|
|
2010-11-07 22:38:24 -08:00
|
|
|
html[dir=rtl] #otherresults {
|
|
|
|
left: auto;
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
#otherresults .label {
|
2010-09-21 14:56:52 -07:00
|
|
|
color: #999;
|
2010-10-07 04:38:35 -07:00
|
|
|
line-height: 30px;
|
2010-11-07 22:38:24 -08:00
|
|
|
-moz-margin-start: 5px;
|
|
|
|
-moz-margin-end: 5px;
|
2010-09-21 14:56:52 -07:00
|
|
|
}
|
|
|
|
|
2011-10-11 05:04:35 -07:00
|
|
|
#otherresults .label:-moz-window-inactive {
|
|
|
|
color: #404040;
|
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
.inlineMatch {
|
2010-09-21 14:56:52 -07:00
|
|
|
background-color: #EBEBEB;
|
|
|
|
border-radius: 0.4em;
|
2010-10-07 04:35:10 -07:00
|
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
|
2010-09-21 14:56:52 -07:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
2010-11-07 22:38:24 -08:00
|
|
|
-moz-padding-start: 3px;
|
|
|
|
-moz-padding-end: 3px;
|
2010-09-21 14:56:52 -07:00
|
|
|
height: 20px;
|
2010-11-07 22:38:24 -08:00
|
|
|
-moz-margin-end: 5px;
|
2010-09-21 14:56:52 -07:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
.inlineMatch:hover {
|
2010-09-21 14:56:52 -07:00
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
.inlineMatch > img {
|
2010-11-07 22:38:24 -08:00
|
|
|
-moz-margin-end: 5px;
|
2010-09-21 14:56:52 -07:00
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
2011-09-26 19:33:01 -07:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2010-09-21 14:56:52 -07:00
|
|
|
}
|
|
|
|
|
2010-10-07 04:38:35 -07:00
|
|
|
.inlineMatch > span {
|
2011-09-26 19:33:01 -07:00
|
|
|
max-width: 200px;
|
2010-09-21 14:56:52 -07:00
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
|