| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .product-registry-popup { | |
| 8 background-color: white; | |
| 9 padding: 15px 45px 15px 15px; | |
| 10 border-radius: 4px; | |
| 11 white-space: nowrap; | |
| 12 box-shadow: 0px 1px 2px 0px gray; | |
| 13 } | |
| 14 | |
| 15 .product-registry-domain { | |
| 16 font-weight: bold; | |
| 17 } | |
| 18 | |
| 19 .product-registry-name { | |
| 20 padding: 10px 0; | |
| 21 } | |
| 22 | |
| 23 .product-registry-link { | |
| 24 display: block; | |
| 25 } | |
| 26 | |
| 27 div[is=dt-close-button] { | |
| 28 position: absolute; | |
| 29 top: 5px; | |
| 30 right: 5px; | |
| 31 } | |
| OLD | NEW |