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

Side by Side Diff: chrome/browser/devtools/frontend/devtools_discovery_page.html

Issue 893403004: webui: make 0 into 0ms when it's a <time>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 <html> 1 <html>
2 <head> 2 <head>
3 <title>Inspectable pages</title> 3 <title>Inspectable pages</title>
4 <style> 4 <style>
5 body { 5 body {
6 color: #222; 6 color: #222;
7 font-family: Helvetica, Arial, sans-serif; 7 font-family: Helvetica, Arial, sans-serif;
8 margin: 0; 8 margin: 0;
9 text-shadow: rgba(255, 255, 255, 0.496094) 0px 1px 0px; 9 text-shadow: rgba(255, 255, 255, 0.496094) 0px 1px 0px;
10 } 10 }
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 26
27 .item { 27 .item {
28 color: #222; 28 color: #222;
29 display: flex; 29 display: flex;
30 flex-direction: row; 30 flex-direction: row;
31 text-decoration: none; 31 text-decoration: none;
32 padding: 10px; 32 padding: 10px;
33 -webkit-transition-property: background-color, border-color; 33 -webkit-transition-property: background-color, border-color;
34 -webkit-transition: background-color 0.15s, 0.15s; 34 -webkit-transition: background-color 0.15s, 0.15s;
35 -webkit-transition-delay: 0, 0; 35 -webkit-transition-delay: 0ms, 0ms;
36 } 36 }
37 37
38 .thumbnail { 38 .thumbnail {
39 background-attachment: scroll; 39 background-attachment: scroll;
40 background-origin: padding-box; 40 background-origin: padding-box;
41 background-repeat: no-repeat; 41 background-repeat: no-repeat;
42 border: 1px solid rgba(184, 184, 184, 1); 42 border: 1px solid rgba(184, 184, 184, 1);
43 flex: none; 43 flex: none;
44 height: 132px; 44 height: 132px;
45 width: 212px; 45 width: 212px;
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 } 150 }
151 </script> 151 </script>
152 </head> 152 </head>
153 <body onload='onLoad()'> 153 <body onload='onLoad()'>
154 <div id='caption'>Inspectable pages</div> 154 <div id='caption'>Inspectable pages</div>
155 <hr> 155 <hr>
156 <div id='items'> 156 <div id='items'>
157 </div> 157 </div>
158 </body> 158 </body>
159 </html> 159 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698