Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Side by Side Diff: components/chrome_apps/webstore_widget/cws_widget/cws_widget_container.css

Issue 1140403002: Update some spinners on ChromeOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix csp Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .cws-widget-container-root { 5 .cws-widget-container-root {
6 position: relative; 6 position: relative;
7 } 7 }
8 8
9 .cws-widget-webview-container { 9 .cws-widget-webview-container {
10 border-bottom: solid 1px #bbb; 10 border-bottom: solid 1px #bbb;
11 border-top: solid 1px #bbb; 11 border-top: solid 1px #bbb;
12 position: relative; 12 position: relative;
13 } 13 }
14 14
15 .cws-widget-spinner-layer { 15 .cws-widget-spinner-layer {
16 background: url(spinner.svg) center / 16px no-repeat; 16 background: url(chrome://resources/images/throbber.svg) center/32px no-repeat;
17 background-color: rgba(255, 255, 255, 0.7); 17 background-color: rgba(255, 255, 255, 0.7);
18 bottom: 0; 18 bottom: 0;
19 left: 0; 19 left: 0;
20 outline: none; 20 outline: none;
21 position: absolute; 21 position: absolute;
22 right: 0; 22 right: 0;
23 top: 0; 23 top: 0;
24 transition: opacity 500ms; 24 transition: opacity 500ms;
25 z-index: 525; 25 z-index: 525;
26 } 26 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 url(chrome://theme/IDR_ERROR_NETWORK_GENERIC) 1x, 77 url(chrome://theme/IDR_ERROR_NETWORK_GENERIC) 1x,
78 url(chrome://theme/IDR_ERROR_NETWORK_GENERIC@2x) 2x); 78 url(chrome://theme/IDR_ERROR_NETWORK_GENERIC@2x) 2x);
79 background-position: center; 79 background-position: center;
80 background-repeat: no-repeat; 80 background-repeat: no-repeat;
81 height: 40px; 81 height: 40px;
82 } 82 }
83 83
84 .cws-widget-error-dialog-text { 84 .cws-widget-error-dialog-text {
85 text-align: center; 85 text-align: center;
86 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698