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

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

Issue 1772603002: Addition of Certificate Transparency details to Security panel of DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed SignedCertificateTimestampStore and SignedCertificateTimestampIDStatus(List) Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 .security-origin-view { 6 .security-origin-view {
7 overflow-x: hidden; 7 overflow-x: hidden;
8 overflow-y: scroll; 8 overflow-y: scroll;
9 display: block; 9 display: block;
10 -webkit-user-select: text; 10 -webkit-user-select: text;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 overflow: hidden; 43 overflow: hidden;
44 margin-top: 6px; 44 margin-top: 6px;
45 } 45 }
46 46
47 .security-origin-view .details-table-row > div { 47 .security-origin-view .details-table-row > div {
48 align-items: flex-start; 48 align-items: flex-start;
49 } 49 }
50 50
51 .security-origin-view .details-table-row > div:first-child { 51 .security-origin-view .details-table-row > div:first-child {
52 color: rgb(140, 140, 140); 52 color: rgb(140, 140, 140);
53 width: 7em; 53 width: 8em;
54 margin-right: 1em; 54 margin-right: 1em;
55 flex: none; 55 flex: none;
56 display: flex; 56 display: flex;
57 justify-content: flex-end; 57 justify-content: flex-end;
58 } 58 }
59 .security-origin-view .details-table-row > div:nth-child(2) { 59 .security-origin-view .details-table-row > div:nth-child(2) {
60 flex: auto; 60 flex: auto;
61 white-space: normal; 61 white-space: normal;
62 } 62 }
63 63
64 .security-origin-view .details-table .empty-san { 64 .security-origin-view .details-table .empty-san {
65 color: rgb(140, 140, 140); 65 color: rgb(140, 140, 140);
66 } 66 }
67 67
68 .security-origin-view .details-table .san-entry { 68 .security-origin-view .details-table .san-entry {
69 display: block; 69 display: block;
70 } 70 }
71 71
72 .security-origin-view .truncated-san .truncated-entry { 72 .security-origin-view .truncated-san .truncated-entry {
73 display: none; 73 display: none;
74 } 74 }
75 75
76 .security-certificate-button { 76 .security-certificate-button {
77 margin-top: 4px; 77 margin-top: 4px;
78 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698