Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: third_party/WebKit/Source/devtools/front_end/security/originView.css

Issue 1942523002: DevTools: render parsed manifest data in the resources panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/security/originView.css
diff --git a/third_party/WebKit/Source/devtools/front_end/security/originView.css b/third_party/WebKit/Source/devtools/front_end/security/originView.css
index 539ebf0c65ee15c99e88b57597cad0b58182e3b2..ba8273ef8494c6585a84073a115093ba9c04ea9b 100644
--- a/third_party/WebKit/Source/devtools/front_end/security/originView.css
+++ b/third_party/WebKit/Source/devtools/front_end/security/originView.css
@@ -3,6 +3,11 @@
* found in the LICENSE file.
*/
+.title-section {
+ padding-bottom: 10px;
+ border-bottom: 1px solid rgb(230, 230, 230);
+}
+
.security-origin-view {
overflow-x: hidden;
overflow-y: scroll;
@@ -11,16 +16,18 @@
}
.security-origin-view .origin-view-section {
- padding: 1.5em 1.5em 1.5em;
border-bottom: 1px solid rgb(230, 230, 230);
+ padding: 12px 6px;
}
-.security-origin-view .title-section {
- padding-bottom: 1.5em;
+.security-origin-view .origin-display {
+ padding-left: 38px;
+ display: flex;
+ align-items: center;
}
-.security-origin-view .origin-display {
- padding-left: 18px;
+.title-section > .link {
+ padding: 6px 0 0 39px
}
.security-origin-view .origin-display .security-property {
@@ -31,22 +38,17 @@
}
.security-origin-view .origin-view-title {
- font-size: 1.25em;
- margin-top: 0.5em;
- margin-bottom: 0.25em;
+ font-size: 15px;
+ padding: 12px 24px;
}
-.security-origin-view .origin-view-section-title {
- font-weight: bold;
- font-size: 1em;
- margin-bottom: 0.25em;
-}
+.security-origin-view .origin-view-section-title {margin-bottom: 10px;padding-left: 18px;}
.security-origin-view .details-table-row {
display: flex;
white-space: nowrap;
overflow: hidden;
- margin-top: 6px;
+ line-height: 22px;
}
.security-origin-view .details-table-row > div {
@@ -55,7 +57,7 @@
.security-origin-view .details-table-row > div:first-child {
color: rgb(140, 140, 140);
- width: 7em;
+ width: 128px;
margin-right: 1em;
flex: none;
display: flex;

Powered by Google App Engine
This is Rietveld 408576698