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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 background: linear-gradient(0deg, hsl(0, 0%, 73%), hsl(0, 0%, 78%)); | 356 background: linear-gradient(0deg, hsl(0, 0%, 73%), hsl(0, 0%, 78%)); |
357 } | 357 } |
358 | 358 |
359 .network-graph-bar.waiting { | 359 .network-graph-bar.waiting { |
360 opacity: 0.35; | 360 opacity: 0.35; |
361 } | 361 } |
362 | 362 |
363 /* Resource categories */ | 363 /* Resource categories */ |
364 | 364 |
365 | 365 |
366 .resource-cached .network-graph-bar { | 366 .network-graph-bar.cached { |
367 background: hsl(0, 0%, 90%); | 367 background: hsl(0, 0%, 90%); |
368 box-shadow: inset 0 1px 1px 0px rgba(255, 255, 255, 0.8), | 368 box-shadow: inset 0 1px 1px 0px rgba(255, 255, 255, 0.8), |
369 inset 0 0 0 2px hsl(0, 0%, 73%), | 369 inset 0 0 0 2px hsl(0, 0%, 73%), |
370 inset 0 1px 0 2px hsla(0, 0%, 76%, 0.85); | 370 inset 0 1px 0 2px hsla(0, 0%, 76%, 0.85); |
371 } | 371 } |
372 | 372 |
373 .network-graph-bar.document { | 373 .network-graph-bar.document { |
374 border-color: hsl(215, 49%, 52%); | 374 border-color: hsl(215, 49%, 52%); |
375 background: linear-gradient(0deg, hsl(215, 72%, 61%), hsl(215, 100%, 69%)); | 375 background: linear-gradient(0deg, hsl(215, 72%, 61%), hsl(215, 100%, 69%)); |
376 } | 376 } |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 | 564 |
565 #network-container { | 565 #network-container { |
566 overflow-y: auto; | 566 overflow-y: auto; |
567 overflow-x: hidden; | 567 overflow-x: hidden; |
568 } | 568 } |
569 | 569 |
570 /* Brief mode peculiarities. */ | 570 /* Brief mode peculiarities. */ |
571 #network-container.brief-mode .network-timeline-grid { | 571 #network-container.brief-mode .network-timeline-grid { |
572 display: none; | 572 display: none; |
573 } | 573 } |
OLD | NEW |