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

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

Issue 1916193005: [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 12 matching lines...) Expand all
23 23
24 #blocking-icon { 24 #blocking-icon {
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;
34 padding: 16px; 33 padding: 16px;
35 width: inherit; 34 width: inherit;
36 } 35 }
37 36
38 .non-blocking > #buttons { 37 .non-blocking > #buttons {
39 display: flex; 38 display: flex;
40 flex-direction: row; 39 flex-direction: row;
41 justify-content: flex-end; 40 justify-content: flex-end;
42 width: 100%; 41 width: 100%;
43 } 42 }
44 43
45 .non-blocking > #buttons > #default-button { 44 .non-blocking > #buttons > #default-button {
46 -webkit-margin-end: 24px; 45 -webkit-margin-end: 24px;
47 } 46 }
48 47
49 .non-blocking > div > #title { 48 .non-blocking > div > #title {
49 -webkit-margin-end: 12px;
50 -webkit-padding-end: 12px;
50 color: rgba(255, 255, 255, 0.87); 51 color: rgba(255, 255, 255, 0.87);
52 overflow: hidden;
51 } 53 }
52 54
53 paper-button { 55 paper-button {
54 margin: 0; 56 margin: 0;
55 } 57 }
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