| OLD | NEW |
| 1 body /deep/ * { | 1 body /deep/ * { |
| 2 /* This is required for correct sizing of flex items because we rely | 2 /* This is required for correct sizing of flex items because we rely |
| 3 * on an old version of the flexbox spec. | 3 * on an old version of the flexbox spec. |
| 4 * Longer-term we should remove this, see crbug.com/473625 */ | 4 * Longer-term we should remove this, see crbug.com/473625 */ |
| 5 min-width: 0; | 5 min-width: 0; |
| 6 min-height: 0; | 6 min-height: 0; |
| 7 } | 7 } |
| 8 | 8 |
| 9 html { | 9 html { |
| 10 height: 100%; | 10 height: 100%; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 left: 0; | 95 left: 0; |
| 96 right: 0; | 96 right: 0; |
| 97 bottom: 0; | 97 bottom: 0; |
| 98 } | 98 } |
| 99 | 99 |
| 100 body /deep/ iframe.fill { | 100 body /deep/ iframe.fill { |
| 101 width: 100%; | 101 width: 100%; |
| 102 height: 100%; | 102 height: 100%; |
| 103 } | 103 } |
| 104 | 104 |
| 105 body /deep/ .view { | 105 body /deep/ .widget { |
| 106 position: relative; | 106 position: relative; |
| 107 flex: auto; | 107 flex: auto; |
| 108 } | 108 } |
| 109 | 109 |
| 110 body /deep/ .hbox { | 110 body /deep/ .hbox { |
| 111 display: flex; | 111 display: flex; |
| 112 flex-direction: row !important; | 112 flex-direction: row !important; |
| 113 position: relative; | 113 position: relative; |
| 114 } | 114 } |
| 115 | 115 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 126 body /deep/ .flex-none { | 126 body /deep/ .flex-none { |
| 127 flex: none; | 127 flex: none; |
| 128 } | 128 } |
| 129 | 129 |
| 130 body /deep/ .flex-centered { | 130 body /deep/ .flex-centered { |
| 131 display: flex; | 131 display: flex; |
| 132 align-items: center; | 132 align-items: center; |
| 133 justify-content: center; | 133 justify-content: center; |
| 134 } | 134 } |
| 135 | 135 |
| 136 body /deep/ iframe.view { | 136 body /deep/ iframe.widget { |
| 137 position: absolute; | 137 position: absolute; |
| 138 width: 100%; | 138 width: 100%; |
| 139 height: 100%; | 139 height: 100%; |
| 140 left: 0; | 140 left: 0; |
| 141 right: 0; | 141 right: 0; |
| 142 top: 0; | 142 top: 0; |
| 143 bottom: 0; | 143 bottom: 0; |
| 144 } | 144 } |
| 145 | 145 |
| 146 body /deep/ .hidden { | 146 body /deep/ .hidden { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 html /deep/ .highlighted-search-result.current-search-result { | 181 html /deep/ .highlighted-search-result.current-search-result { |
| 182 border-radius: 1px; | 182 border-radius: 1px; |
| 183 padding: 1px; | 183 padding: 1px; |
| 184 margin: -1px; | 184 margin: -1px; |
| 185 background-color: rgba(255, 127, 0, 0.8); | 185 background-color: rgba(255, 127, 0, 0.8); |
| 186 } | 186 } |
| 187 | 187 |
| 188 .overflow-auto { | 188 .overflow-auto { |
| 189 overflow: auto; | 189 overflow: auto; |
| 190 } | 190 } |
| OLD | NEW |