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

Side by Side Diff: remoting/webapp/main.css

Issue 23441022: Add a reload button to host list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « remoting/webapp/host_list.js ('k') | remoting/webapp/main.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 5
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl,
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
10 tfoot, thead, tr, th, td, button { 10 tfoot, thead, tr, th, td, button {
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 } 242 }
243 243
244 h2 { 244 h2 {
245 font-size: 16px; 245 font-size: 16px;
246 line-height:24px; 246 line-height:24px;
247 font-weight: normal; 247 font-weight: normal;
248 color: #222; 248 color: #222;
249 margin-bottom: 10px; 249 margin-bottom: 10px;
250 } 250 }
251 251
252 .h2-secondary {
253 float: __MSG_@@bidi_end_edge__;
254 }
255
256 #host-list-loading-indicator:not(.loading) #host-list-loading,
257 #host-list-loading-indicator.loading #host-list-reload {
258 display: none;
259 }
260
261 #host-list-reload > img {
262 opacity: 0.3;
263 }
264
265 #host-list-reload:hover > img {
266 opacity: 0.4;
267 }
268
252 section > h2 { 269 section > h2 {
253 color: #666; 270 color: #666;
254 } 271 }
255 272
256 header { 273 header {
257 display: -webkit-flex; 274 display: -webkit-flex;
258 width: 100%; 275 width: 100%;
259 } 276 }
260 277
261 html { 278 html {
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 box-sizing: border-box; 698 box-sizing: border-box;
682 } 699 }
683 700
684 /* 701 /*
685 * Setting hidden on elements that match some rule overriding 'display' doesn't 702 * Setting hidden on elements that match some rule overriding 'display' doesn't
686 * do what you would expect unless this is made explicit (and !important). 703 * do what you would expect unless this is made explicit (and !important).
687 */ 704 */
688 [hidden] { 705 [hidden] {
689 display: none !important; 706 display: none !important;
690 } 707 }
OLDNEW
« no previous file with comments | « remoting/webapp/host_list.js ('k') | remoting/webapp/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698