mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
146 lines
1.9 KiB
CSS
146 lines
1.9 KiB
CSS
/* -*- Mode: javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
/**
|
|
* Debugger content
|
|
*/
|
|
|
|
.dbg-default {
|
|
cursor: default;
|
|
}
|
|
|
|
/**
|
|
* Stack frames
|
|
*/
|
|
|
|
#stack {
|
|
width: 200px;
|
|
}
|
|
|
|
#stackframes {
|
|
overflow: auto;
|
|
}
|
|
|
|
.dbg-stackframe {
|
|
display: block;
|
|
}
|
|
|
|
.dbg-stackframe-name {
|
|
float: left;
|
|
}
|
|
|
|
.dbg-stackframe-details {
|
|
float: right;
|
|
}
|
|
|
|
.dbg-stackframe-name:-moz-locale-dir(rtl) {
|
|
float: right;
|
|
}
|
|
|
|
.dbg-stackframe-details:-moz-locale-dir(rtl) {
|
|
float: left;
|
|
}
|
|
|
|
/**
|
|
* Properties elements
|
|
*/
|
|
|
|
#properties {
|
|
width: 250px;
|
|
}
|
|
|
|
#variables {
|
|
overflow: auto;
|
|
}
|
|
|
|
/**
|
|
* Scope element
|
|
*/
|
|
|
|
.scope {
|
|
display: -moz-box;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
.scope > .details {
|
|
display: none;
|
|
}
|
|
|
|
.scope > .details[open] {
|
|
display: -moz-box;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/**
|
|
* Variable element
|
|
*/
|
|
|
|
.variable {
|
|
display: -moz-box;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
.variable > .title {
|
|
white-space: nowrap;
|
|
display: block;
|
|
}
|
|
|
|
.variable > .details {
|
|
display: none;
|
|
}
|
|
|
|
.variable > .details[open] {
|
|
display: -moz-box;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
/**
|
|
* Property element
|
|
*/
|
|
|
|
.property {
|
|
display: -moz-box;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
.property > .title {
|
|
white-space: nowrap;
|
|
display: block;
|
|
}
|
|
|
|
.property > .details {
|
|
display: none;
|
|
}
|
|
|
|
.property > .details[open] {
|
|
display: -moz-box;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
.value[offscreen] {
|
|
position: fixed;
|
|
top: -100000px;
|
|
left: -100000px;
|
|
}
|
|
|
|
/**
|
|
* Expand/collapse arrow
|
|
*/
|
|
|
|
.arrow {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/**
|
|
* Display helpers
|
|
*/
|
|
|
|
.unselectable {
|
|
-moz-user-select: -moz-none;
|
|
cursor: default;
|
|
}
|