mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
6ee349c5ae
- Bug 1196785 - Alphabetically sort redirected about:pages. r=jst (ba0f254ae5) - Bug 1196785 - Make the common category style work in HTML. r=jaws (09b3f854e4) - Bug 1196785 - Drive-by fix DevTools ESLint config. r=pbrosset (6566069e0a) - Bug 1196785 - Create an about:debugging page to list debuggable devtools targets. r=jryans (f7590b8b4b) - bits of Bug 1203159 - Rewrite DevTools resource URLs. r=ochameau (bec0e5f909) - Bug 1169679 - Update add-on manager entry design to match in-content prefs styling. r=dao (61e54049fb) - fix category-extensions icon (a160edaaef) - fix typo (a1af7da009) - reapply Bug 1207245 - part 3 (b00b836ec2) - Bug 1219494 - Part 1. TextureD3D11 and gfxDevCrash instead of MOZ_CRASH where appropriate. r=mchang (2ba6492c83) - Bug 1195531 - Don't discard d3d11 textures when we move the TextureSource to a new compositor. r=jrmuizel,nical (a4b9674552) - Bug 1176570 - Make sure all shared texture handles are opened correctly before attempting to use them. r=jrmuizel (75856f47a0) - misspatch Bug 1145513 (f4e6e6c52a) - Null-check D3D10 devices in a few places. (bug 1225645, r=bas) (2f7372a29d) - Bug 1200595 - D3D11 TextureData implementation. r=Bas (8935487dae) - Bug 1216366: Ensure D3D11 uploads the entire surface the first time for component alpha textures. r=nical (789985252d) - Bug 1194335. Disable partial present on Nvidia hardware. r=bas (3da45b4ce9) - Bug 1167326, fix up VR distortion constant buffer; r=bas (396b34e5da) - Bug 1204922 - Part 3. Report failed before HandleError call. r=bas (4f8ca8b0d6) - Fail gracefully when we can't get a texture sync handle. (bug 1207665 part 4, r=bas,vladan) (d8cbab3307) - Bug 1144136. Remove unneeded Flush() from D3D11 compositor. r=bas (8f49efa0aa) - Bug 1163840 - Lazy-init blocker stack in AsyncShutdown to save startup time; r=Yoric (89f728be0f) - Bug 1209581 - Add in new about:debugging icons namespaced with debugging-. r=janx (511ef4c07e) - Bug 1209581 - Use the cool new about:debugging icons. r=jryans (040b3b9ea5) - fix some file permissions (90a9e33990) - Bug 1132203 - Libs for JSON Viewer. r=bgrins, a=me (bb9709e2b6) - Bug 1132203 - Libs for JSON Viewer; r=jlong (ca79b26d45) - memory module cleanup (f5ff7d6169) - Bug 1132203 - JSON Viewer for application/json documents; r=jlong (a1d56cc8b9) - Bug 1132203 - Tests for JSON Viewer; r=jryans (6b0691d5a3) - Bug 1132203 - Load JSON viewer dynamically on demand; r=jryans (b766bd3165) - Bug 1132203 - Fixing theme and intermittent test failure; r=jryans (7329c64fd9) - Bug 1211918 - Expose variables.css and use it in the JSON Viewer. r=jryans (9b7767b49e) - Bug 1132203 - Load JSON viewer only for top level documents; r=bz (992c26899e) - Bug 1214629 - Lazy load modules for the JSON Viewer; r=jryans (d69ac0c10e) - Bug 1164886 - Add optional logging for async shutdown barriers. r=Yoric (88a29ccb27) - bump revision (aa06b79013) - Bug 1213280 - fix OSX font selection under 10.11. r=jfkthame (a5c21cacb0) - fix trivial duplication (45aa811797) - Bug 1167284 - implement localized name lookup for fontconfig font families. r=karlt (098cb7067e) - Bug 1173260 - support multiple families for generics. r=heycam (19bab2c23d) - Bug 1163487 - sniff LANGUAGE when determining language for lang group. r=karlt (207283f74d) - Bug 1224965 p1 - add pref for max substitutions for generics under fontconfig. r=m_kato (b64c53e636) - Bug 1224965 p2 - tweak the handling of generic substitutions. r=karlt (a5c2688808) - First version of patch 1469116, this helps fix patch 1209812 without skia. (dd570d1e71)
153 lines
2.8 KiB
CSS
153 lines
2.8 KiB
CSS
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* 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/. */
|
|
|
|
.domTable {
|
|
font-size: 11px;
|
|
font-family: Lucida Grande, Tahoma, sans-serif;
|
|
line-height: 15px;
|
|
width: 100%;
|
|
}
|
|
|
|
.domTable > tbody > tr > td {
|
|
border-bottom: 1px solid #EFEFEF;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.memberLabelCell {
|
|
padding: 2px 0 2px 0px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.memberValueCell {
|
|
padding: 2px 0 2px 5px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.memberLabel {
|
|
cursor: default;
|
|
overflow: hidden;
|
|
padding-left: 18px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.memberLabelPrefix {
|
|
color: gray;
|
|
margin-right: 3px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.memberValueIcon > div {
|
|
width: 15px;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
/* Read Only Properties */
|
|
|
|
.memberValueCell.readOnly {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.memberValueIcon.readOnly {
|
|
background: url("read-only-prop.svg") no-repeat;
|
|
background-position: 4px 4px;
|
|
background-size: 10px 10px;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
.memberRow.hasChildren > .memberLabelCell > .memberLabel:hover,
|
|
.memberRow.cropped > .memberLabelCell > .memberLabel:hover {
|
|
cursor: pointer;
|
|
color: blue;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.memberRow:hover {
|
|
background-color: #EFEFEF;
|
|
}
|
|
|
|
.panelNode-dom .memberRow td,
|
|
.panelNode-domSide .memberRow td {
|
|
border-bottom: 1px solid #EFEFEF;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
.userLabel,
|
|
.userClassLabel,
|
|
.userFunctionLabel {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.userLabel {
|
|
color: #000000;
|
|
}
|
|
|
|
.userClassLabel {
|
|
color: #E90000;
|
|
}
|
|
|
|
.userFunctionLabel {
|
|
color: #025E2A;
|
|
}
|
|
|
|
.domLabel {
|
|
color: #000000;
|
|
}
|
|
|
|
.domClassLabel {
|
|
color: #E90000;
|
|
}
|
|
|
|
.domFunctionLabel {
|
|
color: #025E2A;
|
|
}
|
|
|
|
.ordinalLabel {
|
|
color: SlateBlue;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
/* Twisties */
|
|
|
|
.memberRow.hasChildren > .memberLabelCell > .memberLabel,
|
|
.memberRow.cropped > .memberLabelCell > .memberLabel {
|
|
background-image: url(twisty-closed.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: 2px calc(0.5em - 3px);
|
|
min-height: 12px;
|
|
}
|
|
|
|
.memberRow.hasChildren.opened > .memberLabelCell > .memberLabel,
|
|
.memberRow.cropped.opened > .memberLabelCell > .memberLabel {
|
|
background-image: url(twisty-open.svg);
|
|
background-repeat: no-repeat;
|
|
min-height: 12px;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
/* Layout support */
|
|
|
|
.memberChildren {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.memberLabelCell,
|
|
.memberValueCell {
|
|
display: table-cell;
|
|
}
|
|
|
|
.memberLabelCell {
|
|
min-width: 30px;
|
|
}
|
|
|
|
.memberRow:hover {
|
|
background-color: transparent !important;
|
|
}
|