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

Side by Side Diff: chrome/browser/resources/media_router/elements/issue_banner/issue_banner.css

Issue 1891843002: [Media Router WebUI] Fix non-blocking issue banner styling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 .blocking { 5 .blocking {
6 background-color: white; 6 background-color: white;
7 overflow: hidden; 7 overflow: hidden;
8 position: relative; 8 position: relative;
9 text-align: center; 9 text-align: center;
10 } 10 }
(...skipping 14 matching lines...) Expand all
25 color: var(--google-red-500); 25 color: var(--google-red-500);
26 height: 75px; 26 height: 75px;
27 padding-top: 24px; 27 padding-top: 24px;
28 width: 75px; 28 width: 75px;
29 } 29 }
30 30
31 .non-blocking { 31 .non-blocking {
32 background-color: var(--paper-grey-800); 32 background-color: var(--paper-grey-800);
33 overflow: hidden; 33 overflow: hidden;
34 padding: 16px; 34 padding: 16px;
35 width: inherit;
35 } 36 }
36 37
37 .non-blocking > #buttons { 38 .non-blocking > #buttons {
38 display: flex; 39 display: flex;
39 flex-direction: row; 40 flex-direction: row;
40 justify-content: flex-end; 41 justify-content: flex-end;
41 width: 100%; 42 width: 100%;
42 } 43 }
43 44
45 .non-blocking > #buttons > #default-button {
46 -webkit-margin-end: 24px;
47 }
48
44 .non-blocking > div > #title { 49 .non-blocking > div > #title {
45 color: rgba(255, 255, 255, 0.87); 50 color: rgba(255, 255, 255, 0.87);
46 } 51 }
47 52
48 paper-button { 53 paper-button {
49 margin: 0; 54 margin: 0;
50 } 55 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698