Files
palemoon27/devtools/client/shared/splitview.css
roytam1 37d11a2004 (WIP) import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 1154363 - Assign the selected node from the inspector to a temp variable for use in the console. r=bgrins (7afe225003)
- Bug 1152279 - Give the inspector sidebar a default size so it can be collapsed; r=miker (19e2effa39)
- fix (6fb2d32453)
- Bug 1139644 - Make markupview use sdk timers instead of individual tmers for each window;r=pbrosset (d59bb51a90)
- Bug 1176785 - Disallow dragging of html tag. r=pbrosset (b76e1133d6)
- Bug 1161072 - Fix pending requests in markup view tests. r=pbrosset (e1cc2431e3)
- Bug 1195825 - Fix browser/devtools/inspector/test/browser_inspector_delete-selected-node-01.js race on e10s with markup-view brief show/hide boxmodel requests. r=pbrosset (304eaa809d)
- Bug 1120406 - Indicate which nodes have a pseudo-class lock applied in the markup view;r=gl,r=pbrosset (566cbec05b)
- Bug 1191358 - Always generate markup-view image tooltips when they are shown. r=pbrosset (023108862a)
- Bug 1188613 - Handle attribute mutations with null value. r=pbrosset (32ad576ebd)
- Bug 1136931 - Prevent racing hideBoxModel during connection shutdown. r=bgrins (6212cc7f7a)
- Bug 1184525 - Reset previous search results on markup-mutations to make sure we search again. r=pbrosset (42e749e876)
- fix locale (8b06ade070)
- Bug 835896 - Strings for inspector text search;r=pbrosset Bug 835896 - Update inspector search string for better localization practice;r=flod (3a93591a09)
- align tests (948848e3ac)
- Bug 1154371 - Avoid displaying autocomplete popup when ',' is pressed. r=ttromey (2fb9c52a0d)
- Bug 964939 - Allow clicking on autocomplete items for CSS source editor. r=pbrosset (3ce46d5550)
- Bug 1149346 - DevTools sourceeditor: make selection of an autocomplete item include the full text of the item;r=pbrosset (55ddb5bf09)
- Bug 1196431 - generalize detectIndentation and move to new file. r=pbro (07237f4e4f)
- Bug 1089428 - Allow script injection into source editor component. r=bgrins (db208be7c1)
- Bug 1153474 - CMD + G in style editor does not find next if you haven't hit enter first. r=bgrins (b9815e3153)
- Bug 1159001 - Select text in the Style Editor search input when it is reopened. r=bgrins (2007a4d63d)
- update paths (f59cc246a3)
- includes/contains (5fcc7d30b9)
- Bug 1165482 - Suppress errors that occur is Developer Toolbar tab change handler if the tab is closed during the update operation. r=bgrins (fc66d997a7)
- Bug 976559 - Splitter in narrow-width style editor is inconsistent with other panels. r=bgrins (699b8f1cc1)
- Bug 992947 - Add "Open Link In New Tab" item to stylesheet list. r=bgrins (4eedfc910a)
- Bug 1178120 - Change CSS label to crop center in Style Editor. r=bgrins (4a7db9f709)
- Bug 1146591 - Avoid unsafe CPOW usage in helper_outerhtml_test_runner.js; r=bgrins (dcda5ed7b1)
- Bug 1184316 - Remove Test:SynthesizeMouse content handler from DevTools. r=bgrins (3c9daca817)
- Bug 1166506 - Use the devtools-monospace font for text nodes and comments in the markup view;r=pbrosset (ec5bb8fe95)
- Bug 1198569 - Added the 'white-space: normal' rule to the comments template. r=pbro (5ab2fc1434)
- align tests (71e506649f)
2022-07-06 13:49:34 +08:00

84 lines
1.7 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/. */
box,
.splitview-nav {
-moz-box-flex: 1;
-moz-box-orient: vertical;
}
.splitview-nav-container {
-moz-box-pack: center;
}
.loading .splitview-nav-container > .placeholder {
display: none !important;
}
.splitview-controller,
.splitview-main {
-moz-box-flex: 0;
}
.splitview-controller {
min-height: 3em;
max-height: 14em;
max-width: 400px;
min-width: 200px;
}
.splitview-nav {
display: -moz-box;
overflow-x: hidden;
overflow-y: auto;
}
/* only the active details pane is shown */
.splitview-side-details > * {
display: none;
}
.splitview-side-details > .splitview-active {
display: -moz-box;
}
/* this is to keep in sync with SplitView.jsm's LANDSCAPE_MEDIA_QUERY */
@media (min-width: 701px) {
.splitview-root {
-moz-box-orient: horizontal;
}
.splitview-controller {
max-height: none;
}
.splitview-details {
display: none;
}
.splitview-details.splitview-active {
display: -moz-box;
}
}
/* filtered items are hidden */
ol.splitview-nav > li.splitview-filtered {
display: none;
}
/* "empty list" and "all filtered" placeholders are hidden */
.splitview-nav:empty,
.splitview-nav.splitview-all-filtered,
.splitview-nav + .splitview-nav.placeholder {
display: none;
}
.splitview-nav.splitview-all-filtered ~ .splitview-nav.placeholder.all-filtered,
.splitview-nav:empty ~ .splitview-nav.placeholder.empty {
display: -moz-box;
}
/* portrait mode */
@media (max-width: 700px) {
.splitview-controller {
max-width: none;
}
}