OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 .error-message { | 122 .error-message { |
123 color: red; | 123 color: red; |
124 } | 124 } |
125 | 125 |
126 .error-input { | 126 .error-input { |
127 background-color: rgb(220, 130, 130); | 127 background-color: rgb(220, 130, 130); |
128 } | 128 } |
129 | 129 |
130 .panel { | 130 .panel { |
131 display: none !important; | 131 display: flex; |
132 overflow: hidden; | 132 overflow: hidden; |
133 position: absolute; | 133 position: absolute; |
134 top: 0; | 134 top: 0; |
135 left: 0; | 135 left: 0; |
136 right: 0; | 136 right: 0; |
137 bottom: 0; | 137 bottom: 0; |
138 z-index: 0; | 138 z-index: 0; |
139 } | 139 } |
140 | 140 |
141 .panel.visible { | |
142 display: flex !important; | |
143 } | |
144 | |
145 iframe.extension { | 141 iframe.extension { |
146 flex: auto; | 142 flex: auto; |
147 width: 100%; | 143 width: 100%; |
148 height: 100%; | 144 height: 100%; |
149 } | 145 } |
150 | 146 |
151 iframe.panel.extension { | 147 iframe.panel.extension { |
152 display: block; | 148 display: block; |
153 height: 100%; | 149 height: 100%; |
154 } | 150 } |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 } | 643 } |
648 | 644 |
649 body.inactive select.chrome-select, | 645 body.inactive select.chrome-select, |
650 .chrome-select:disabled { | 646 .chrome-select:disabled { |
651 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); | 647 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); |
652 border-color: rgba(80, 80, 80, 0.2); | 648 border-color: rgba(80, 80, 80, 0.2); |
653 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 649 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
654 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 650 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
655 color: #aaa; | 651 color: #aaa; |
656 } | 652 } |
OLD | NEW |