OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright (C) 2012 Google Inc. All rights reserved. | 2 Copyright (C) 2012 Google Inc. All rights reserved. |
3 | 3 |
4 Redistribution and use in source and binary forms, with or without | 4 Redistribution and use in source and binary forms, with or without |
5 modification, are permitted provided that the following conditions | 5 modification, are permitted provided that the following conditions |
6 are met: | 6 are met: |
7 | 7 |
8 1. Redistributions of source code must retain the above copyright | 8 1. Redistributions of source code must retain the above copyright |
9 notice, this list of conditions and the following disclaimer. | 9 notice, this list of conditions and the following disclaimer. |
10 2. Redistributions in binary form must reproduce the above copyright | 10 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 .dimmed { | 64 .dimmed { |
65 background-color: rgba(0, 0, 0, 0.31); | 65 background-color: rgba(0, 0, 0, 0.31); |
66 } | 66 } |
67 | 67 |
68 #canvas { | 68 #canvas { |
69 pointer-events: none; | 69 pointer-events: none; |
70 } | 70 } |
71 | 71 |
72 .controls-line { | 72 .controls-line { |
73 display: -webkit-flex; | 73 display: flex; |
74 -webkit-justify-content: center; | 74 justify-content: center; |
75 margin: 10px 0; | 75 margin: 10px 0; |
76 } | 76 } |
77 | 77 |
78 .message-box { | 78 .message-box { |
79 padding: 2px 4px; | 79 padding: 2px 4px; |
80 display: -webkit-flex; | 80 display: flex; |
81 -webkit-align-items: center; | 81 align-items: center; |
82 cursor: default; | 82 cursor: default; |
83 } | 83 } |
84 | 84 |
85 .controls-line > * { | 85 .controls-line > * { |
86 background-color: rgb(255, 255, 194); | 86 background-color: rgb(255, 255, 194); |
87 border: 1px solid rgb(202, 202, 202); | 87 border: 1px solid rgb(202, 202, 202); |
88 height: 22px; | 88 height: 22px; |
89 box-sizing: border-box; | 89 box-sizing: border-box; |
90 } | 90 } |
91 | 91 |
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 <span id="tag-name"></span><span id="node-id"></span><span id="class-name"></s
pan> | 799 <span id="tag-name"></span><span id="node-id"></span><span id="class-name"></s
pan> |
800 <span id="node-width"></span><span class="px">px</span><span class="px"> ×
; </span><span id="node-height"></span><span class="px">px</span> | 800 <span id="node-width"></span><span class="px">px</span><span class="px"> ×
; </span><span id="node-height"></span><span class="px">px</span> |
801 </div> | 801 </div> |
802 <div id="right-gutter"></div> | 802 <div id="right-gutter"></div> |
803 <div id="bottom-gutter"></div> | 803 <div id="bottom-gutter"></div> |
804 <div id="overrides-container"> | 804 <div id="overrides-container"> |
805 <div id="overrides-message"></div> | 805 <div id="overrides-message"></div> |
806 </div> | 806 </div> |
807 <div id="log"></div> | 807 <div id="log"></div> |
808 </html> | 808 </html> |
OLD | NEW |