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

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

Issue 1301833003: Add origin views to the Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Mark securityState as explicitly optional in OriginState. Created 5 years, 4 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
« no previous file with comments | « Source/devtools/front_end/security/module.json ('k') | Source/devtools/front_end/security/sidebar.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/security/originView.css
diff --git a/Source/devtools/front_end/security/originView.css b/Source/devtools/front_end/security/originView.css
new file mode 100644
index 0000000000000000000000000000000000000000..045d0915ea43ceb810a6310ded34b0305bbc875a
--- /dev/null
+++ b/Source/devtools/front_end/security/originView.css
@@ -0,0 +1,67 @@
+/* Copyright (c) 2015 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.security-origin-view {
+ overflow-x: hidden;
+ overflow-y: scroll;
+ display: block;
+ -webkit-user-select: text;
+}
+
+.security-origin-view .origin-view-section {
+ padding: 0.5em 1.5em 1.5em;
+ border-bottom: 1px solid rgb(230, 230, 230);
+}
+
+.security-origin-view .title-section {
+ padding-bottom: 1.5em;
+}
+
+.security-origin-view .origin-display .security-property {
+ margin: -1px 2px 0px 0px;
+ display: inline-block;
+ vertical-align: middle;
+}
+
+.security-origin-view .origin-view-title {
+ font-size: 1.25em;
+ margin-top: 0.5em;
+ margin-bottom: 0.25em;
+}
+
+.security-origin-view .origin-view-section-title {
+ font-weight: bold;
+ font-size: 1em;
+ margin-top: 0.5em;
+ margin-bottom: 0.25em;
+}
+
+.security-origin-view .details-table-row {
+ display: flex;
+ white-space: nowrap;
+ overflow: hidden;
+ margin-top: 6px;
+}
+
+.security-origin-view .details-table-row > div {
+ align-items: flex-start;
+}
+
+.security-origin-view .details-table-row > div:first-child {
+ color: rgb(140, 140, 140);
+ width: 7em;
+ margin-right: 1em;
+ flex: none;
+ display: flex;
+ justify-content: flex-end;
+}
+.security-origin-view .details-table-row > div:nth-child(2) {
+ flex: auto;
+ white-space: normal;
+}
+
+.security-origin-view .details-table .san-entry {
+ display: block;
+}
« no previous file with comments | « Source/devtools/front_end/security/module.json ('k') | Source/devtools/front_end/security/sidebar.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698