This repository has been archived by the owner on Nov 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge inbound to mozilla-central. a=merge
- Loading branch information
Showing
127 changed files
with
1,363 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 changes: 138 additions & 0 deletions
138
devtools/client/netmonitor/src/assets/styles/CustomRequestPanel.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
/* 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/. */ | ||
|
||
.network-monitor .custom-method-and-url .custom-method-value-label { | ||
grid-column: 1 / 1; | ||
grid-row: 1 / 1; | ||
} | ||
|
||
.network-monitor .custom-method-and-url .custom-url-value{ | ||
grid-column: 2 / 2; | ||
grid-row: 2 / 2; | ||
} | ||
|
||
.network-monitor .custom-method-and-url .custom-method-value { | ||
grid-column: 1 / 1; | ||
grid-row: 2 / 2; | ||
} | ||
|
||
|
||
.network-monitor .custom-method-and-url .custom-url-value-label { | ||
grid-column: 2 / 2; | ||
grid-row: 1 / 1 ; | ||
margin-left: 12px; | ||
} | ||
|
||
.network-monitor .tabpanel-summary-container.custom-method-and-url { | ||
display: grid; | ||
grid-template-columns: auto 1fr; | ||
} | ||
|
||
.network-monitor .custom-method-and-url input { | ||
font-weight: 400; | ||
margin-top: 4px; | ||
padding: 2px 3px; | ||
} | ||
|
||
.network-monitor .custom-request-panel textarea { | ||
font-weight: 400; | ||
margin-top: 4px; | ||
padding: 8px; | ||
} | ||
|
||
.network-monitor .custom-method-and-url .custom-url-value { | ||
margin-left: 12px; | ||
} | ||
|
||
.network-monitor .custom-request-panel { | ||
padding-left: 0; | ||
padding-right: 0; | ||
} | ||
|
||
.network-monitor .custom-request-panel > div:not(.custom-request) { | ||
margin-bottom: 12px; | ||
padding-left: 16px; | ||
padding-right: 16px; | ||
} | ||
|
||
.network-monitor .custom-request { | ||
flex-direction: row-reverse; | ||
flex-wrap: wrap; | ||
padding: 0; | ||
} | ||
|
||
.network-monitor .custom-request-panel .custom-request-label { | ||
font-weight: 400; | ||
} | ||
|
||
.network-monitor .custom-request button { | ||
align-self: flex-end; | ||
height: 24px; | ||
padding-left: 8px; | ||
padding-right: 8px; | ||
width: auto; | ||
} | ||
|
||
.network-monitor .custom-request #custom-request-send-button { | ||
background-color: var(--blue-60); | ||
color: white; | ||
margin-left: 4px; | ||
margin-right: 16px; | ||
} | ||
|
||
.network-monitor .custom-request .custom-header { | ||
border-bottom-width: 1px; | ||
border-style: solid; | ||
border-width: 0; | ||
flex: 1 0 100%; | ||
height: 24px; | ||
margin-bottom: 16px; | ||
padding: 4px 16px; | ||
} | ||
|
||
:root.theme-dark .network-details-panel .custom-request-panel { | ||
background-color: var(--grey-85); | ||
} | ||
|
||
:root.theme-dark .network-monitor #custom-request-close-button { | ||
background-color: var(--toolbarbutton-background); | ||
border: 1px solid var(--theme-splitter-color); | ||
} | ||
|
||
:root.theme-dark .network-monitor .custom-request-label.custom-header { | ||
background-color: var(--grey-80); | ||
border-bottom: 1px solid var(--theme-splitter-color); | ||
} | ||
|
||
:root.theme-dark .network-details-panel .custom-request-panel input, | ||
:root.theme-dark .network-details-panel .custom-request-panel textarea { | ||
background-color: var(--grey-70); | ||
border: 1px solid var(--grey-85); | ||
color: white; | ||
} | ||
|
||
:root.theme-dark .network-monitor .custom-request-label { | ||
color: var(--grey-40); | ||
} | ||
|
||
:root.theme-light .network-details-panel .custom-request-label.custom-header { | ||
background-color: var(--grey-10); | ||
border-bottom: 1px solid var(--grey-25); | ||
} | ||
|
||
:root.theme-light .network-monitor #custom-request-close-button { | ||
background-color: var(--grey-20); | ||
} | ||
|
||
:root.theme-light .network-details-panel .custom-request-panel input, | ||
:root.theme-light .network-details-panel .custom-request-panel textarea { | ||
background-color: white; | ||
border: 1px solid var(--grey-25); | ||
color: var(--grey-90); | ||
} | ||
|
||
:root.theme-light .network-monitor .custom-request-label { | ||
color: var(--grey-60); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.