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

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

Issue 1316853002: Organize security panel main view. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove experiment toggle. 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/lockIcon.css ('k') | Source/devtools/front_end/security/module.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/security/mainView.css
diff --git a/Source/devtools/front_end/security/mainView.css b/Source/devtools/front_end/security/mainView.css
new file mode 100644
index 0000000000000000000000000000000000000000..966cd1cd3d8a901cecd14550793dc35ccee30eae
--- /dev/null
+++ b/Source/devtools/front_end/security/mainView.css
@@ -0,0 +1,58 @@
+/* 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-main-view {
+ -webkit-user-select: text;
+}
+
+.security-main-view .security-section {
+ padding: 1em;
+ border-bottom: 1px solid rgb(230, 230, 230);
+
+ display: flex;
+ white-space: nowrap;
+}
+
+.security-main-view .security-summary .lock-icon {
+ flex: none;
+ width: 32px;
+ height: 32px;
+ margin-right: 1em;
+}
+
+.security-main-view .security-section-text {
+ flex: auto;
+ white-space: normal;
+}
+
+.security-main-view .security-summary-section-title {
+ font-size: 14px;
+ margin-bottom: 2px;
+}
+
+.security-main-view .security-explanation.security-state-secure {
+ color: rgb(42, 194, 57);
+}
+
+.security-main-view .security-explanation.security-state-neutral {
+ color: rgb(253, 177, 48);
+}
+
+.security-main-view .security-explanation.security-state-insecure {
+ color: rgb(216, 71, 60);
+}
+
+.security-main-view .security-explanation.security-section .lock-icon {
+ flex: none;
+ width: 16px;
+ height: 16px;
+ margin-left: 10px;
+ margin-right: 18px;
+}
+
+.security-main-view .security-section-title {
+ color: rgb(90, 90, 90);
+ margin-bottom: 8px;
+}
« no previous file with comments | « Source/devtools/front_end/security/lockIcon.css ('k') | Source/devtools/front_end/security/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698