Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 :host { | 1 .popover-element { |
| 2 position: absolute; | 2 position: absolute; |
| 3 z-index: 600; | 3 z-index: 600; |
| 4 pointer-events: none; | 4 pointer-events: none; |
| 5 display: flex; | 5 display: flex; |
| 6 background-color: white; | 6 background-color: white; |
| 7 box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 4px 0 rgba(0, 0, 0, 0.37); | 7 box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 4px 0 rgba(0, 0, 0, 0.37); |
| 8 border-radius: 2px; | 8 border-radius: 2px; |
| 9 } | |
| 10 | |
| 11 .widget { | |
| 12 flex: auto; | 9 flex: auto; |
| 13 pointer-events: none; | |
| 14 overflow: visible; | 10 overflow: visible; |
| 15 } | 11 } |
| 16 | 12 |
| 17 .popover-content { | 13 .popover-content { |
| 18 pointer-events: auto; | 14 pointer-events: auto; |
| 19 overflow: auto; | 15 overflow: auto; |
| 20 -webkit-user-select: text; | 16 -webkit-user-select: text; |
| 21 line-height: 11px; | 17 line-height: 11px; |
| 22 flex: auto; | 18 flex: auto; |
| 23 padding: 6px; | 19 padding: 6px; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 | 58 |
| 63 .arrow.bottom-right-arrow { | 59 .arrow.bottom-right-arrow { |
| 64 right: 15px; | 60 right: 15px; |
| 65 left: auto; | 61 left: auto; |
| 66 top: auto; | 62 top: auto; |
| 67 bottom: 0; | 63 bottom: 0; |
| 68 margin-top: 0; | 64 margin-top: 0; |
| 69 margin-bottom: -19px; | 65 margin-bottom: -19px; |
| 70 background-position: 0 -19px; | 66 background-position: 0 -19px; |
| 71 } | 67 } |
| OLD | NEW |