2012-05-29 08:52:43 -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/. */
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-container {
|
2011-07-11 10:18:11 -07:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-controls {
|
2011-07-11 10:18:11 -07:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-outline-container {
|
2011-07-11 10:18:11 -07:00
|
|
|
overflow: hidden;
|
2012-08-24 05:18:23 -07:00
|
|
|
position: relative;
|
2011-07-11 10:18:11 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-outline {
|
2012-08-24 05:18:23 -07:00
|
|
|
position: absolute;
|
2011-07-11 10:18:11 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-outline[hidden] {
|
2012-08-24 05:18:23 -07:00
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
display: -moz-box;
|
2011-07-11 10:18:11 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-outline:not([disable-transitions]) {
|
2012-08-24 05:18:23 -07:00
|
|
|
transition-property: opacity, top, left, width, height;
|
|
|
|
transition-duration: 0.1s;
|
|
|
|
transition-timing-function: linear;
|
2011-07-11 10:18:11 -07:00
|
|
|
}
|
|
|
|
|
2011-09-27 13:01:24 -07:00
|
|
|
/*
|
|
|
|
* Node Infobar
|
|
|
|
*/
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container {
|
2011-09-27 13:01:24 -07:00
|
|
|
position: absolute;
|
2012-01-30 11:27:53 -08:00
|
|
|
max-width: 95%;
|
2011-10-11 06:10:13 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container[hidden] {
|
2012-08-24 05:18:23 -07:00
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
display: -moz-box;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container:not([disable-transitions]),
|
|
|
|
.highlighter-nodeinfobar-container[disable-transitions][force-transitions] {
|
2012-08-24 05:18:23 -07:00
|
|
|
transition-property: transform, opacity, top, left;
|
2012-07-10 19:13:55 -07:00
|
|
|
transition-duration: 0.1s;
|
|
|
|
transition-timing-function: linear;
|
2011-09-27 13:01:24 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-text {
|
2012-01-30 11:27:53 -08:00
|
|
|
overflow: hidden;
|
2012-04-04 11:40:48 -07:00
|
|
|
white-space: nowrap;
|
2012-01-30 11:27:53 -08:00
|
|
|
text-overflow: ellipsis;
|
2012-04-04 11:40:48 -07:00
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.highlighter-nodeinfobar-button > .toolbarbutton-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container:not([locked]):not(:hover) > .highlighter-nodeinfobar > .highlighter-nodeinfobar-button {
|
2012-04-04 11:40:48 -07:00
|
|
|
visibility: hidden;
|
2011-09-27 13:01:24 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container[locked] > .highlighter-nodeinfobar,
|
|
|
|
.highlighter-nodeinfobar-container:not([locked]):hover > .highlighter-nodeinfobar {
|
2011-11-29 01:18:42 -08:00
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
html|*.highlighter-nodeinfobar-id,
|
|
|
|
html|*.highlighter-nodeinfobar-classes,
|
|
|
|
html|*.highlighter-nodeinfobar-pseudo-classes,
|
|
|
|
html|*.highlighter-nodeinfobar-tagname {
|
2011-11-29 01:18:42 -08:00
|
|
|
-moz-user-select: text;
|
2013-01-24 10:25:11 -08:00
|
|
|
-moz-user-focus: normal;
|
2011-11-29 01:18:42 -08:00
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
2011-09-27 13:01:24 -07:00
|
|
|
.highlighter-nodeinfobar-arrow {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container[position="top"]:not([hide-arrow]) > .highlighter-nodeinfobar-arrow-bottom {
|
2011-09-27 13:01:24 -07:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container[position="bottom"]:not([hide-arrow]) > .highlighter-nodeinfobar-arrow-top {
|
2011-09-27 13:01:24 -07:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
.highlighter-nodeinfobar-container[disabled] {
|
2011-09-27 13:01:24 -07:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2012-11-30 00:07:59 -08:00
|
|
|
html|*.highlighter-nodeinfobar-tagname {
|
2011-09-27 13:01:24 -07:00
|
|
|
text-transform: lowercase;
|
|
|
|
}
|