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

Side by Side Diff: chrome/browser/resources/identity_api_ui/identity_api_ui.css

Issue 14081014: Identity API: Change WebAuthFlow to use <webview> instead of a normal browser pop-up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chrome.identity side-by-side with chrome.experimental.identity Created 7 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 (c) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 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 #managed-user-set-passphrase-page { 5 html {
6 background-color: white; 6 margin: 0;
7 min-width: 400px; 7 padding: 0;
8 } 8 }
9 9
10 #passphrase-missmatch, 10 body {
11 .managed-user-passphrase-container { 11 margin: 0;
12 margin-top: 15px; 12 padding: 0;
13 } 13 }
14 14
15 #managed-user-passphrase:invalid, 15 .titlebar {
16 #passphrase-confirm:invalid { 16 -webkit-app-region: drag;
17 background-color: pink; 17 background-color: white;
18 border-bottom: 1px solid #e5e5e5;
19 height: 26px;
20 white-space: nowrap;
21 width: 100%;
18 } 22 }
19 23
20 #passphrase-mismatch { 24 .titlebar-close-button {
21 float: right; 25 -webkit-app-region: no-drag;
26 height: 14px;
27 margin: 6px;
28 position: absolute;
29 right: 0;
30 width: 14px;
22 } 31 }
23 32
24 html[dir=rtl] #passphrase-mismatch { 33 .content {
25 float: left; 34 height: auto;
35 width: 100%;
26 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698