| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 bottom: 0; | 284 bottom: 0; |
| 285 margin: auto -7px; | 285 margin: auto -7px; |
| 286 height: 13px; | 286 height: 13px; |
| 287 line-height: 13px; | 287 line-height: 13px; |
| 288 font-size: 90%; | 288 font-size: 90%; |
| 289 color: rgba(0, 0, 0, 0.75); | 289 color: rgba(0, 0, 0, 0.75); |
| 290 text-shadow: rgba(255, 255, 255, 0.25) 1px 0 0, rgba(255, 255, 255, 0.25) -1
px 0 0, rgba(255, 255, 255, 0.333) 0 1px 0, rgba(255, 255, 255, 0.25) 0 -1px 0; | 290 text-shadow: rgba(255, 255, 255, 0.25) 1px 0 0, rgba(255, 255, 255, 0.25) -1
px 0 0, rgba(255, 255, 255, 0.333) 0 1px 0, rgba(255, 255, 255, 0.25) 0 -1px 0; |
| 291 z-index: 150; | 291 z-index: 150; |
| 292 overflow: hidden; | 292 overflow: hidden; |
| 293 text-align: center; | 293 text-align: center; |
| 294 opacity: 0; | 294 visibility: hidden; |
| 295 -webkit-transition: opacity 250ms ease-in-out; | |
| 296 } | 295 } |
| 297 | 296 |
| 298 .network-graph-side:hover .network-graph-label { | 297 .network-graph-side:hover .network-graph-label { |
| 299 opacity: 1; | 298 visibility: visible; |
| 300 } | 299 } |
| 301 | 300 |
| 302 .network-graph-label:empty { | 301 .network-graph-label:empty { |
| 303 display: none; | 302 display: none; |
| 304 } | 303 } |
| 305 | 304 |
| 306 .network-graph-label.waiting { | 305 .network-graph-label.waiting { |
| 307 margin-right: 5px; | 306 margin-right: 5px; |
| 308 } | 307 } |
| 309 | 308 |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 } | 572 } |
| 574 | 573 |
| 575 #network-container:not(.brief-mode) .data-grid tr.selected { | 574 #network-container:not(.brief-mode) .data-grid tr.selected { |
| 576 background-color: transparent; | 575 background-color: transparent; |
| 577 color: #222; | 576 color: #222; |
| 578 } | 577 } |
| 579 | 578 |
| 580 #network-container.brief-mode .data-grid .data-container { | 579 #network-container.brief-mode .data-grid .data-container { |
| 581 padding-right: 0; | 580 padding-right: 0; |
| 582 } | 581 } |
| OLD | NEW |