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

Side by Side Diff: tracing/tracing/ui/extras/drive/index.html

Issue 3002533002: Switch tracing to new flexbox. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2015 The Chromium Authors. All rights reserved. 3 Copyright 2015 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <head> 7 <head>
8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
9 9
10 <script type="text/javascript" src="https://apis.google.com/js/api.js"></scrip t> 10 <script type="text/javascript" src="https://apis.google.com/js/api.js"></scrip t>
11 11
12 <link rel="import" href="/components/polymer/polymer.html"> 12 <link rel="import" href="/components/polymer/polymer.html">
13 <link rel="import" href="/tracing/ui/extras/drive/drive_comment_provider.html" > 13 <link rel="import" href="/tracing/ui/extras/drive/drive_comment_provider.html" >
14 <link rel="import" href="/tracing/ui/extras/full_config.html"> 14 <link rel="import" href="/tracing/ui/extras/full_config.html">
15 <link rel="import" href="/tracing/ui/timeline_view.html"> 15 <link rel="import" href="/tracing/ui/timeline_view.html">
16 16
17 <style> 17 <style>
18 body { 18 body {
19 margin: 0; 19 margin: 0;
20 padding: 0; 20 padding: 0;
21 width: 100%; 21 width: 100%;
22 height: 100%; 22 height: 100%;
23 display: -webkit-flex; 23 display: flex;
24 -webkit-flex-direction: column; 24 flex-direction: column;
25 } 25 }
26 body > x-timeline-view { 26 body > x-timeline-view {
27 -webkit-flex: 1 1 auto; 27 flex: 1 1 auto;
28 overflow: hidden; 28 overflow: hidden;
29 position: absolute; 29 position: absolute;
30 top: 0px; 30 top: 0px;
31 bottom: 0; 31 bottom: 0;
32 left: 0; 32 left: 0;
33 right: 0; 33 right: 0;
34 } 34 }
35 body > x-timeline-view:focus { 35 body > x-timeline-view:focus {
36 outline: none; 36 outline: none;
37 } 37 }
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 document.getElementById('x-drive-share').onclick = function() { 454 document.getElementById('x-drive-share').onclick = function() {
455 shareClient_.showSettingsDialog(); 455 shareClient_.showSettingsDialog();
456 }; 456 };
457 }()); 457 }());
458 458
459 </script> 459 </script>
460 <script type="text/javascript" 460 <script type="text/javascript"
461 src="https://apis.google.com/js/client.js?onload=onAPIClientLoaded_"> 461 src="https://apis.google.com/js/client.js?onload=onAPIClientLoaded_">
462 </script> 462 </script>
463 </body> 463 </body>
OLDNEW
« no previous file with comments | « tracing/tracing/ui/extras/chrome/gpu/state_view.css ('k') | tracing/tracing/ui/find_control.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698