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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 background-color: rgb(255, 255, 255); | 109 background-color: rgb(255, 255, 255); |
110 } | 110 } |
111 | 111 |
112 .source-frame-infobar-warning, | 112 .source-frame-infobar-warning, |
113 .source-frame-infobar-error { | 113 .source-frame-infobar-error { |
114 background-color: rgb(255, 255, 194); | 114 background-color: rgb(255, 255, 194); |
115 } | 115 } |
116 | 116 |
117 .source-frame-infobar { | 117 .source-frame-infobar { |
118 margin-top: 0; | 118 margin-top: 0; |
| 119 } |
| 120 |
| 121 .source-frame-infobar-animation { |
119 -webkit-animation: source-frame-infobar-reveal 0.1s; | 122 -webkit-animation: source-frame-infobar-reveal 0.1s; |
120 } | 123 } |
121 | |
122 @-webkit-keyframes source-frame-infobar-reveal { | 124 @-webkit-keyframes source-frame-infobar-reveal { |
123 from { margin-top: -24px; } | 125 from { margin-top: -24px; } |
124 to { margin-top: 0; } | 126 to { margin-top: 0; } |
125 } | 127 } |
126 | 128 |
127 .source-frame-infobar-icon { | 129 .source-frame-infobar-icon { |
128 background-image: url(Images/statusbarButtonGlyphs.png); | 130 background-image: url(Images/statusbarButtonGlyphs.png); |
129 background-size: 320px 144px; | 131 background-size: 320px 144px; |
130 width: 11px; | 132 width: 11px; |
131 height: 10px; | 133 height: 10px; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 .source-frame-infobar-link { | 180 .source-frame-infobar-link { |
179 text-decoration: underline; | 181 text-decoration: underline; |
180 color: rgb(50, 50, 200); | 182 color: rgb(50, 50, 200); |
181 cursor: pointer; | 183 cursor: pointer; |
182 } | 184 } |
183 | 185 |
184 .source-frame-infobar-details-url { | 186 .source-frame-infobar-details-url { |
185 flex: 0 1000 auto; | 187 flex: 0 1000 auto; |
186 color: rgb(50, 50, 200); | 188 color: rgb(50, 50, 200); |
187 } | 189 } |
OLD | NEW |