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

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

Issue 181433002: DevTools: Replace Apple styled spinner icon with Chromium one. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/inspector.css ('k') | no next file » | 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 height: 100%; 2 height: 100%;
3 } 3 }
4 4
5 body { 5 body {
6 cursor: default; 6 cursor: default;
7 position: absolute; 7 position: absolute;
8 top: 0; 8 top: 0;
9 bottom: 0; 9 bottom: 0;
10 left: 0; 10 left: 0;
(...skipping 14 matching lines...) Expand all
25 25
26 body.platform-mac { 26 body.platform-mac {
27 color: rgb(48, 57, 66); 27 color: rgb(48, 57, 66);
28 font-family: 'Lucida Grande', sans-serif; 28 font-family: 'Lucida Grande', sans-serif;
29 } 29 }
30 30
31 body.platform-windows { 31 body.platform-windows {
32 font-family: 'Segoe UI', Tahoma, sans-serif; 32 font-family: 'Segoe UI', Tahoma, sans-serif;
33 } 33 }
34 34
35 * { 35 *, *::before, *::after {
yurys 2014/02/26 12:43:10 Can we do this in a separate change to make sure w
alph 2014/02/26 12:48:21 Done.
36 box-sizing: border-box; 36 box-sizing: border-box;
37 } 37 }
38 38
39 :focus { 39 :focus {
40 outline: none; 40 outline: none;
41 } 41 }
42 42
43 img { 43 img {
44 -webkit-user-drag: none; 44 -webkit-user-drag: none;
45 } 45 }
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 clip: rect(0px, 100px, 100px, 50px); 276 clip: rect(0px, 100px, 100px, 50px);
277 } 277 }
278 278
279 .pie-chart-slice-inner { 279 .pie-chart-slice-inner {
280 position: absolute; 280 position: absolute;
281 width: 100px; 281 width: 100px;
282 height: 100px; 282 height: 100px;
283 border-radius: 50px; 283 border-radius: 50px;
284 clip: rect(0px, 50px, 100px, 0px); 284 clip: rect(0px, 50px, 100px, 0px);
285 } 285 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/inspector.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698