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

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

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 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
« no previous file with comments | « no previous file | chrome/browser/resources/bluetooth_internals/snackbar.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 12 matching lines...) Expand all
23 flex-direction: column; 23 flex-direction: column;
24 margin: 10px; 24 margin: 10px;
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 transition-property: background-color, border-color;
34 -webkit-transition: background-color 0.15s, 0.15s; 34 transition: background-color 0.15s, 0.15s;
35 -webkit-transition-delay: 0ms, 0ms; 35 transition-delay: 0ms, 0ms;
36 } 36 }
37 37
38 .item:not(.connected):hover { 38 .item:not(.connected):hover {
39 background-color: rgba(242, 242, 242, 1); 39 background-color: rgba(242, 242, 242, 1);
40 border-color: rgba(110, 116, 128, 1); 40 border-color: rgba(110, 116, 128, 1);
41 color: black; 41 color: black;
42 } 42 }
43 43
44 .item.connected:hover { 44 .item.connected:hover {
45 border-color: rgba(184, 184, 184, 1); 45 border-color: rgba(184, 184, 184, 1);
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 } 188 }
189 </script> 189 </script>
190 </head> 190 </head>
191 <body onload='onLoad()'> 191 <body onload='onLoad()'>
192 <div id='caption'>Inspectable pages</div> 192 <div id='caption'>Inspectable pages</div>
193 <hr> 193 <hr>
194 <div id='items'> 194 <div id='items'>
195 </div> 195 </div>
196 </body> 196 </body>
197 </html> 197 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/bluetooth_internals/snackbar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698