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

Side by Side Diff: Source/devtools/front_end/layersPanel.css

Issue 166273018: Added showing slow scroll rectangles in Layers panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed layer nodeId issue. Created 6 years, 9 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 /* 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
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 .layers-3d-view .layer-transparent {
135 position: absolute;
136 background-color: transparent;
137 z-index: 100;
138 }
139
140 .layer-transparent .back-wall,
141 .layer-transparent .side-wall,
142 .layer-transparent .paint-rect {
caseq 2014/03/20 15:29:10 Let's show paint rects!
malch 2014/03/21 07:55:46 Done.
143 display: none;
144 }
145
146 .scroll-rect {
147 border: solid rgb(178, 0, 0);
148 border-width: inherit;
149 background-color: rgba(178, 0, 0, 0.4);
150 }
151
134 .layer-details-view .empty-view { 152 .layer-details-view .empty-view {
135 font-size: 16px; 153 font-size: 16px;
136 } 154 }
137 155
138 .layer-details-view table td { 156 .layer-details-view table td {
139 padding-left: 8px; 157 padding-left: 8px;
140 } 158 }
141 159
142 .layer-details-view table td:first-child { 160 .layer-details-view table td:first-child {
143 font-weight: bold; 161 font-weight: bold;
(...skipping 11 matching lines...) Expand all
155 173
156 .paint-profiler-view .overview-grid-dividers-background, 174 .paint-profiler-view .overview-grid-dividers-background,
157 .paint-profiler-view .overview-grid-window { 175 .paint-profiler-view .overview-grid-window {
158 bottom: 0; 176 bottom: 0;
159 height: auto; 177 height: auto;
160 } 178 }
161 179
162 .paint-profiler-view .overview-grid-window-resizer { 180 .paint-profiler-view .overview-grid-window-resizer {
163 z-index: 2000; 181 z-index: 2000;
164 } 182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698