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

Side by Side Diff: chrome/browser/resources/options/supervised_user_create_confirm.css

Issue 403343002: Rename "managed (mode|user)" to "supervised user" (part 8) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 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-created { 5 #supervised-user-created {
6 width: 722px; 6 width: 722px;
7 } 7 }
8 8
9 #managed-user-created-title { 9 #supervised-user-created-title {
10 padding: 20px; 10 padding: 20px;
11 word-wrap: break-word; 11 word-wrap: break-word;
12 } 12 }
13 13
14 @media only screen and (max-height:400px) { 14 @media only screen and (max-height:400px) {
15 15
16 /* Omit the image on very small screens. */ 16 /* Omit the image on very small screens. */
17 #managed-user-created-image { 17 #supervised-user-created-image {
18 display: none; 18 display: none;
19 } 19 }
20 20
21 } /* @media only screen and (max-height:400px) */ 21 } /* @media only screen and (max-height:400px) */
22 22
23 #managed-user-created-image { 23 #supervised-user-created-image {
24 -webkit-border-radius: 3px 3px 0 0; 24 -webkit-border-radius: 3px 3px 0 0;
25 -webkit-box-flex: 5;
26 background-image: -webkit-image-set( 25 background-image: -webkit-image-set(
27 url('../../../../ui/resources/default_100_percent/supervised_illustration_ done.png') 1x, 26 url('../../../../ui/resources/default_100_percent/supervised_illustration_ done.png') 1x,
28 url('../../../../ui/resources/default_200_percent/supervised_illustration_ done.png') 2x); 27 url('../../../../ui/resources/default_200_percent/supervised_illustration_ done.png') 2x);
29 background-position: center; 28 background-position: center;
29 flex: 5;
30 height: 344px; 30 height: 344px;
31 } 31 }
32 32
33 #managed-user-created-text { 33 #supervised-user-created-text {
34 padding: 0 20px 0 20px; 34 padding: 0 20px 0 20px;
35 white-space: pre-wrap; 35 white-space: pre-wrap;
36 word-wrap: break-word; 36 word-wrap: break-word;
37 } 37 }
38 38
39 #managed-user-created-switch { 39 #supervised-user-created-switch {
40 max-width: 600px; 40 max-width: 600px;
41 word-wrap: break-word; 41 word-wrap: break-word;
42 } 42 }
43 43
44 #managed-user-created-action-area { 44 #supervised-user-created-action-area {
45 padding: 20px; 45 padding: 20px;
46 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698