OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
124 | 124 |
125 .layer-container.hovered:not(.selected) { | 125 .layer-container.hovered:not(.selected) { |
126 border-color: rgb(150, 150, 255); | 126 border-color: rgb(150, 150, 255); |
127 } | 127 } |
128 | 128 |
129 .layer-container .paint-rect { | 129 .layer-container .paint-rect { |
130 position: absolute; | 130 position: absolute; |
131 border-style: solid; | 131 border-style: solid; |
132 } | 132 } |
133 | 133 |
134 .scroll-rect { | |
135 border: solid rgb(178, 0, 0); | |
136 border-width: inherit; | |
137 background-color: rgba(178, 0, 0, 0.2); | |
caseq
2014/02/25 16:38:41
Please make them more visible, alpha of 0.4 looks
malch
2014/02/26 07:28:21
Done.
| |
138 } | |
139 | |
134 .layer-details-view .empty-view { | 140 .layer-details-view .empty-view { |
135 font-size: 16px; | 141 font-size: 16px; |
136 } | 142 } |
137 | 143 |
138 .layer-details-view table td { | 144 .layer-details-view table td { |
139 padding-left: 8px; | 145 padding-left: 8px; |
140 } | 146 } |
141 | 147 |
142 .layer-details-view table td:first-child { | 148 .layer-details-view table td:first-child { |
143 font-weight: bold; | 149 font-weight: bold; |
(...skipping 11 matching lines...) Expand all Loading... | |
155 | 161 |
156 .paint-profiler-view .overview-grid-dividers-background, | 162 .paint-profiler-view .overview-grid-dividers-background, |
157 .paint-profiler-view .overview-grid-window { | 163 .paint-profiler-view .overview-grid-window { |
158 bottom: 0; | 164 bottom: 0; |
159 height: auto; | 165 height: auto; |
160 } | 166 } |
161 | 167 |
162 .paint-profiler-view .overview-grid-window-resizer { | 168 .paint-profiler-view .overview-grid-window-resizer { |
163 z-index: 2000; | 169 z-index: 2000; |
164 } | 170 } |
OLD | NEW |