Firefox:DOM 检查器 - 突出显示元素(如 chrome/firebug)

Firefox:DOM 检查器 - 突出显示元素(如 chrome/firebug)

在 Firefox 中,当您使用检查器将鼠标悬停在 DOM 元素上时,它会被一个带有虚线边框的透明框标记。

Firefox DOM 检查器
(来源:mozillademos.org

在 chrome 和 firebug 中,DOM 元素被突出显示,以不同的半透明颜色显示内容区域、填充、边框和边距(Firebug 也这样做)。

Chrome DOM 检查器

是否有一个userChrome.css调整可以将此行为添加到默认的 Firefox DOM 检查器?或者也许是一个扩展检查器的轻量级插件?

更新:

我看到目前有一个未决问题已经分配并正在进行的任务。甚至还有初步的屏幕截图!

截屏

答案1

答案2

使用这个插件,它将让你给 DOM Firefox 着色,自定义,添加许多其他效果

点击此处下载:https://addons.mozilla.org/en-US/firefox/addon/stylish/

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url("chrome://browser/content/devtools/markup-view.xhtml") {

    body { background: white !important }

}

以上仅为背景的示例。另一个 css 示例如下。


/* 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/. */

* {
  padding: 0;
  margin: 0;
}

body {
  color: hsl(0,0%,50%);
  background: black !important;
}

.text {
  color: white !important;
}

.newattr {
  cursor: pointer;
}

.selected {
  background-color: hsl(0,0%,90%);
}

/* Give some padding to focusable elements to match the editor input
 * that will replace them. */
span[tabindex] {
  display: inline-block;
  padding: 1px 0;
}

li.container {
  position: relative;
  padding: 2px 0 0 2px;
}

.codebox {
  padding-left: 14px;
}

.expander {
  position: absolute;
  -moz-appearance: treetwisty;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
}

.expander[expanded] {
  -moz-appearance: treetwistyopen;
}

.more-nodes {
  padding-left: 16px;
}

.styleinspector-propertyeditor {
  border: 1px solid #CCC;
}


}

相关内容