mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 951674 - Vertical splitter isn't shown for the Events tab, r=fitzgen
This commit is contained in:
parent
daa31a03d4
commit
bd10846bdf
@ -907,7 +907,6 @@ VariablesView.prototype = {
|
|||||||
label.className = "variables-view-empty-notice";
|
label.className = "variables-view-empty-notice";
|
||||||
label.setAttribute("value", this._emptyTextValue);
|
label.setAttribute("value", this._emptyTextValue);
|
||||||
|
|
||||||
this._parent.setAttribute("empty", "");
|
|
||||||
this._parent.appendChild(label);
|
this._parent.appendChild(label);
|
||||||
this._emptyTextNode = label;
|
this._emptyTextNode = label;
|
||||||
},
|
},
|
||||||
@ -920,7 +919,6 @@ VariablesView.prototype = {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this._parent.removeAttribute("empty");
|
|
||||||
this._parent.removeChild(this._emptyTextNode);
|
this._parent.removeChild(this._emptyTextNode);
|
||||||
this._emptyTextNode = null;
|
this._emptyTextNode = null;
|
||||||
},
|
},
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#sources-and-editor-splitter {
|
#sources-and-editor-splitter {
|
||||||
-moz-border-start-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Sources toolbar */
|
/* Sources toolbar */
|
||||||
@ -485,7 +485,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#globalsearch + .devtools-horizontal-splitter {
|
#globalsearch + .devtools-horizontal-splitter {
|
||||||
-moz-border-top-colors: #bfbfbf;
|
border-color: #bfbfbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dbg-source-results {
|
.dbg-source-results {
|
||||||
|
@ -271,7 +271,7 @@
|
|||||||
|
|
||||||
.side-menu-widget-container {
|
.side-menu-widget-container {
|
||||||
/* Hack: force hardware acceleration */
|
/* Hack: force hardware acceleration */
|
||||||
transform: translateX(0px);
|
transform: translateZ(1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-menu-widget-container[theme="dark"] {
|
.side-menu-widget-container[theme="dark"] {
|
||||||
@ -437,9 +437,9 @@
|
|||||||
|
|
||||||
/* VariablesView */
|
/* VariablesView */
|
||||||
|
|
||||||
.variables-view-container:not([empty]) {
|
.variables-view-container {
|
||||||
/* Hack: force hardware acceleration */
|
/* Hack: force hardware acceleration */
|
||||||
transform: translateX(1px);
|
transform: translateZ(1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.variables-view-empty-notice {
|
.variables-view-empty-notice {
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#sources-and-editor-splitter {
|
#sources-and-editor-splitter {
|
||||||
-moz-border-start-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Sources toolbar */
|
/* Sources toolbar */
|
||||||
@ -487,7 +487,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#globalsearch + .devtools-horizontal-splitter {
|
#globalsearch + .devtools-horizontal-splitter {
|
||||||
-moz-border-top-colors: #bfbfbf;
|
border-color: #bfbfbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dbg-source-results {
|
.dbg-source-results {
|
||||||
|
@ -271,7 +271,7 @@
|
|||||||
|
|
||||||
.side-menu-widget-container {
|
.side-menu-widget-container {
|
||||||
/* Hack: force hardware acceleration */
|
/* Hack: force hardware acceleration */
|
||||||
transform: translateX(0px);
|
transform: translateZ(1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-menu-widget-container[theme="dark"] {
|
.side-menu-widget-container[theme="dark"] {
|
||||||
@ -431,9 +431,9 @@
|
|||||||
|
|
||||||
/* VariablesView */
|
/* VariablesView */
|
||||||
|
|
||||||
.variables-view-container:not([empty]) {
|
.variables-view-container {
|
||||||
/* Hack: force hardware acceleration */
|
/* Hack: force hardware acceleration */
|
||||||
transform: translateX(1px);
|
transform: translateZ(1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.variables-view-empty-notice {
|
.variables-view-empty-notice {
|
||||||
|
@ -26,23 +26,23 @@
|
|||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: 1px solid black;
|
border: 0;
|
||||||
border-width: 1px 0 0 0;
|
border-bottom: 1px solid black;
|
||||||
min-height: 3px;
|
min-height: 3px;
|
||||||
height: 3px;
|
height: 3px;
|
||||||
margin-bottom: -3px;
|
margin-top: -3px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.devtools-side-splitter {
|
.devtools-side-splitter {
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
border: 0;
|
|
||||||
-moz-border-start: 1px solid black;
|
|
||||||
min-width: 0;
|
|
||||||
width: 3px;
|
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
-moz-margin-end: -3px;
|
border: 0;
|
||||||
|
-moz-border-end: 1px solid black;
|
||||||
|
min-width: 3px;
|
||||||
|
width: 3px;
|
||||||
|
-moz-margin-start: -3px;
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: e-resize;
|
cursor: e-resize;
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.profiler-sidebar + .devtools-side-splitter {
|
.profiler-sidebar + .devtools-side-splitter {
|
||||||
-moz-border-start-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profiler-sidebar-item {
|
.profiler-sidebar-item {
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#shaders-pane + .devtools-side-splitter {
|
#shaders-pane + .devtools-side-splitter {
|
||||||
-moz-border-start-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-menu-widget-item-checkbox {
|
.side-menu-widget-item-checkbox {
|
||||||
@ -88,7 +88,7 @@
|
|||||||
/* Shader source editors */
|
/* Shader source editors */
|
||||||
|
|
||||||
#editors-splitter {
|
#editors-splitter {
|
||||||
-moz-border-start-color: rgb(61,69,76);
|
border-color: rgb(61,69,76);
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-label {
|
.editor-label {
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#sources-and-editor-splitter {
|
#sources-and-editor-splitter {
|
||||||
-moz-border-start-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Sources toolbar */
|
/* Sources toolbar */
|
||||||
@ -485,7 +485,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#globalsearch + .devtools-horizontal-splitter {
|
#globalsearch + .devtools-horizontal-splitter {
|
||||||
-moz-border-top-colors: #bfbfbf;
|
border-color: #bfbfbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dbg-source-results {
|
.dbg-source-results {
|
||||||
|
@ -275,7 +275,7 @@
|
|||||||
|
|
||||||
.side-menu-widget-container {
|
.side-menu-widget-container {
|
||||||
/* Hack: force hardware acceleration */
|
/* Hack: force hardware acceleration */
|
||||||
transform: translateX(0px);
|
transform: translateZ(1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.side-menu-widget-container[theme="dark"] {
|
.side-menu-widget-container[theme="dark"] {
|
||||||
@ -434,9 +434,9 @@
|
|||||||
|
|
||||||
/* VariablesView */
|
/* VariablesView */
|
||||||
|
|
||||||
.variables-view-container:not([empty]) {
|
.variables-view-container {
|
||||||
/* Hack: force hardware acceleration */
|
/* Hack: force hardware acceleration */
|
||||||
transform: translateX(1px);
|
transform: translateZ(1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.variables-view-empty-notice {
|
.variables-view-empty-notice {
|
||||||
|
Loading…
Reference in New Issue
Block a user