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

Unified Diff: chrome/browser/resources/sync_internals/about.css

Issue 210233005: sync: Display protocol events on about:sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/sync_internals/about.css
diff --git a/chrome/browser/resources/sync_internals/about.css b/chrome/browser/resources/sync_internals/about.css
index b530cc6ac40d2b726aa18f334bee0703395962a5..29a2a629e32437400f3d833bb1d254824f9d98ad 100644
--- a/chrome/browser/resources/sync_internals/about.css
+++ b/chrome/browser/resources/sync_internals/about.css
@@ -3,33 +3,36 @@
* found in the LICENSE file.
*/
-#aboutInfo {
- -webkit-columns: 3;
+#about-info {
+ -webkit-column-width: 350px;
}
-#aboutInfo h2 {
+#about-info > div {
+ -webkit-column-break-inside: avoid;
+ width: 350px;
+}
+
+#about-info h2 {
color: rgb(74, 142, 230);
font-size: 100%;
margin-bottom: 0;
}
-#aboutInfo .err {
+#about-info .err {
color: red;
}
-#aboutInfo .section {
- -webkit-column-break-inside: avoid;
+#about-info .section {
display: inline-block;
margin-left: auto;
margin-right: auto;
- width: 100%;
}
-.aboutDetails {
+.about-details {
width: 100%;
}
-.aboutDetails tr:nth-child(odd) {
+.about-details tr:nth-child(odd) {
background: rgb(239, 243, 255);
}
@@ -45,43 +48,59 @@
background: rgb(204, 255, 204);
}
-@-webkit-keyframes highlight1 {
- 0% {
- background: rgb(255, 255, 0);
- }
- 100% {
- background: #fff;
- }
+.about-details .uninitialized {
+ color: #7f7f7f;
}
-@-webkit-keyframes highlight2 {
- 0% {
- background: rgb(155, 158, 166);
- }
- 100% {
- background: rgb(239, 243, 255);
- }
+#status {
+ margin-left: auto;
+ margin-right: auto;
+ text-align: center;
+ width: 300px;
}
-.aboutDetails [highlighted] {
- -webkit-animation-duration: 3s;
- -webkit-animation-name: highlight1;
- -webkit-animation-timing-function: linear;
+#traffic-event-container {
+ border: 1px solid;
+ height: 500px;
+ max-width: 500px;
+ overflow-y: auto;
}
-.aboutDetails [highlighted]:nth-child(odd) {
- -webkit-animation-duration: 3s;
- -webkit-animation-name: highlight2;
- -webkit-animation-timing-function: linear;
+.traffic-event-entry {
+ border: 2px outset;
+ padding: 0.5em;
}
-.aboutDetails .uninitialized {
- color: #7f7f7f;
+.traffic-event-entry:hover {
+ background-color: #eee;
}
-#status {
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- width: 300px;
+.traffic-event-entry .time {
+ color: #222;
+ font-family: sans-serif;
+}
+
+.traffic-event-entry .type {
+ font-family: sans-serif;
+ font-weight: bold;
+ margin: 0.5em;
+ white-space: nowrap;
+}
+
+.traffic-event-entry .details {
+ margin: 0.5em;
+ overflow-x: auto;
+}
+
+.traffic-event-entry .proto {
+ display: none;
+}
+
+.traffic-event-entry-expanded .proto {
+ background-color: #fff;
+ border: 1px solid #222;
+ display: block;
+ max-height: 300px;
+ overflow-x: auto;
+ overflow-y: auto;
}
« no previous file with comments | « no previous file | chrome/browser/resources/sync_internals/about.html » ('j') | chrome/browser/resources/sync_internals/about.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698