зеркало из https://github.com/mozilla/gecko-dev.git
Bug 607163 - Part 1: Make the Web Console's CSS conform to the Mozilla CSS performance guidelines, r=dao, a=gavin
This commit is contained in:
Родитель
f9a957cead
Коммит
9e5e9a8df0
|
@ -42,10 +42,6 @@
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-group label {
|
|
||||||
padding-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hud-outer-wrapper {
|
.hud-outer-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -62,38 +58,32 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node * {
|
|
||||||
-moz-user-select: text;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
-moz-user-focus: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hud-clickable {
|
.hud-clickable {
|
||||||
cursor: pointer !important;
|
cursor: pointer !important;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-network {
|
.hud-network {
|
||||||
color: blue;
|
color: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-error {
|
.hud-error {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-log {
|
.hud-log {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-warn {
|
.hud-warn {
|
||||||
color: orange;
|
color: orange;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-info {
|
.hud-info {
|
||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-exception {
|
.hud-exception {
|
||||||
color: red;
|
color: red;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@ -102,7 +92,10 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 0.3em;
|
margin-top: 0.3em;
|
||||||
margin-bottom: 0.3em;
|
margin-bottom: 0.3em;
|
||||||
padding-left: 0.3em;
|
padding-left: 1em;
|
||||||
|
-moz-user-select: text;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
-moz-user-focus: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node {
|
.hud-output-node {
|
||||||
|
@ -124,7 +117,7 @@
|
||||||
color: GrayText;
|
color: GrayText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-group:first-child .hud-divider {
|
.hud-group:first-child > .hud-divider {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -151,10 +144,6 @@
|
||||||
-moz-box-direction: reverse;
|
-moz-box-direction: reverse;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsterm-output-node div {
|
|
||||||
-moz-user-select: text;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jsterm-scroll-to-node {
|
.jsterm-scroll-to-node {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
|
@ -174,7 +163,7 @@
|
||||||
-moz-appearance: none !important;
|
-moz-appearance: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsterm-input-node textarea {
|
.jsterm-input-node > .textbox-input-box > .textbox-textarea {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,10 +43,6 @@
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-group label {
|
|
||||||
padding-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hud-outer-wrapper {
|
.hud-outer-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -63,38 +59,32 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node * {
|
|
||||||
-moz-user-select: text;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
-moz-user-focus: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hud-clickable {
|
.hud-clickable {
|
||||||
cursor: pointer !important;
|
cursor: pointer !important;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-network {
|
.hud-network {
|
||||||
color: blue;
|
color: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-error {
|
.hud-error {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-log {
|
.hud-log {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-warn {
|
.hud-warn {
|
||||||
color: orange;
|
color: orange;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-info {
|
.hud-info {
|
||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-exception {
|
.hud-exception {
|
||||||
color: red;
|
color: red;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@ -103,7 +93,10 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 0.3em;
|
margin-top: 0.3em;
|
||||||
margin-bottom: 0.3em;
|
margin-bottom: 0.3em;
|
||||||
padding-left: 0.3em;
|
padding-left: 1em;
|
||||||
|
-moz-user-select: text;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
-moz-user-focus: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node {
|
.hud-output-node {
|
||||||
|
@ -121,7 +114,7 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-group:first-child .hud-divider {
|
.hud-group:first-child > .hud-divider {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,10 +147,6 @@
|
||||||
-moz-box-direction: reverse;
|
-moz-box-direction: reverse;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsterm-output-node div {
|
|
||||||
-moz-user-select: text;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jsterm-scroll-to-node {
|
.jsterm-scroll-to-node {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
|
@ -176,7 +165,7 @@
|
||||||
-moz-appearance: none !important;
|
-moz-appearance: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsterm-input-node textarea {
|
.jsterm-input-node > .textbox-input-box > .textbox-textarea {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,10 +41,6 @@
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-group label {
|
|
||||||
padding-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hud-outer-wrapper {
|
.hud-outer-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -61,38 +57,32 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node * {
|
|
||||||
-moz-user-select: text;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
-moz-user-focus: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hud-clickable {
|
.hud-clickable {
|
||||||
cursor: pointer !important;
|
cursor: pointer !important;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-network {
|
.hud-network {
|
||||||
color: blue;
|
color: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-error {
|
.hud-error {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-log {
|
.hud-log {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-warn {
|
.hud-warn {
|
||||||
color: orange;
|
color: orange;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-info {
|
.hud-info {
|
||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node .hud-exception {
|
.hud-exception {
|
||||||
color: red;
|
color: red;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@ -101,8 +91,10 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 0.3em;
|
margin-top: 0.3em;
|
||||||
margin-bottom: 0.3em;
|
margin-bottom: 0.3em;
|
||||||
padding-left: 0.3em;
|
padding-left: 1em;
|
||||||
/* border-bottom: 1px solid #eee; */
|
-moz-user-select: text;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
-moz-user-focus: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-output-node {
|
.hud-output-node {
|
||||||
|
@ -115,7 +107,8 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-filtered-by-type, .hud-filtered-by-string {
|
.hud-filtered-by-type,
|
||||||
|
.hud-filtered-by-string {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,7 +116,7 @@
|
||||||
color: GrayText;
|
color: GrayText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud-group:first-child .hud-divider {
|
.hud-group:first-child > .hud-divider {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -150,10 +143,6 @@
|
||||||
-moz-box-direction: reverse;
|
-moz-box-direction: reverse;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsterm-output-node div {
|
|
||||||
-moz-user-select: text;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jsterm-scroll-to-node {
|
.jsterm-scroll-to-node {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
|
@ -172,7 +161,7 @@
|
||||||
-moz-appearance: none !important;
|
-moz-appearance: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jsterm-input-node textarea {
|
.jsterm-input-node > .textbox-input-box > .textbox-textarea {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче