<!-- 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/. -->
-<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="#FFCF00">
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="#000000">
<g fill-rule="evenodd">
<path d="M15 9.004C14.51 12.394 11.578 15 8.035 15 4.15 15 1 11.866 1 8s3.15-7 7.036-7c1.941 0 3.7.783 4.972 2.048l-.709.709A6.027 6.027 0 0 0 8.036 2c-3.33 0-6.03 2.686-6.03 6s2.7 6 6.03 6a6.023 6.023 0 0 0 5.946-4.993l1.017-.003z"/>
<path d="M4.137 9H3.1a5.002 5.002 0 0 0 9.8 0h-.965a4.023 4.023 0 0 1-3.9 3 4.023 4.023 0 0 1-3.898-3z" fill-opacity=".5"/>
padding: 0;
}
+#toolbar-labels {
+ overflow: hidden;
+}
+
+.devtools-toolbar-container {
+ display: flex;
+ justify-content: space-between;
+}
+
+.devtools-toolbar-group {
+ display: flex;
+ flex: 0 0 auto;
+ flex-wrap: nowrap;
+ align-items: stretch;
+}
+
+/**
+ * Collapsed details pane needs to be truly hidden to prevent both accessibility
+ * tools and keyboard from accessing its contents.
+ */
+#details-pane.pane-collapsed {
+ visibility: hidden;
+}
+
+#details-pane-toggle[disabled] {
+ display: none;
+}
+
+#custom-pane {
+ overflow: auto;
+}
+
+#response-content-image-box {
+ overflow: auto;
+}
+
+#network-statistics-charts {
+ overflow: auto;
+}
+
+.cropped-textbox .textbox-input {
+ /* workaround for textbox not supporting the @crop attribute */
+ text-overflow: ellipsis;
+}
+
+/* Responsive sidebar */
+@media (max-width: 700px) {
+ #toolbar-spacer,
+ #details-pane-toggle,
+ #details-pane.pane-collapsed,
+ .requests-menu-waterfall,
+ #requests-menu-network-summary-button > .summary-info-text {
+ display: none;
+ }
+}
+
:root.theme-dark,
:root.theme-light {
--table-splitter-color: #A09090;
#requests-menu-toolbar {
}
+#requests-menu-filter-buttons {
+ display: flex;
+ flex-wrap: nowrap;
+}
+
#requests-menu-toolbar > .toolbar-box > .toolbar-startcap,
#requests-menu-toolbar > .toolbar-box > .toolbar-endcap {
display: none;
list-style-image: var(--theme-pane-expand-image);
}
+#details-pane-toggle:-moz-locale-dir(ltr)::before,
+#details-pane-toggle.pane-collapsed:-moz-locale-dir(rtl)::before {
+ background-image: var(--theme-pane-collapse-image);
+}
+
+#details-pane-toggle.pane-collapsed:-moz-locale-dir(ltr)::before,
+#details-pane-toggle:-moz-locale-dir(rtl)::before {
+ background-image: var(--theme-pane-expand-image);
+}
+
/* Network request details tabpanels */
.tabpanel-content {
/* Performance analysis buttons */
#requests-menu-network-summary-button {
+ display: flex;
+ flex-wrap: nowrap;
+ align-items: center;
+ font: inherit;
box-shadow: none;
border-color: transparent;
list-style-image: url("images/profiler-stopwatch-tbutton.svg");
.menu-filter-button {
border: none;
/* min-height: 32px; */
+ font: inherit;
background-color: var(--theme-button-background);
color: var(--theme-button-color);
border-radius: 300px;
position: relative;
}
+button + .devtools-searchbox {
+ margin-inline-start: 2px;
+}
+
/* The spacing is accomplished with a padding on the searchbox */
.devtools-searchbox > .devtools-textinput,
.devtools-searchbox > .devtools-searchinput {