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

Side by Side Diff: chrome/browser/resources/options2/manage_profile_overlay.css

Issue 10832075: Create/Manage dialog UI changes for M22 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/options2/manage_profile_overlay.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 #manage-profile-overlay { 5 #manage-profile-overlay {
6 width: 512px; 6 width: 512px;
7 } 7 }
8 8
9 .profile-icon-grid-item { 9 .profile-icon-grid-item {
10 border: none !important;
11 height: 31px; 10 height: 31px;
12 margin: 4px 6px; 11 margin: 4px 6px;
13 padding: 4px; 12 padding: 4px;
14 width: 38px; 13 width: 38px;
15 } 14 }
16 15
17 .profile-icon { 16 .profile-icon {
18 height: 31px; 17 height: 31px;
19 width: 38px; 18 width: 38px;
20 } 19 }
21 20
21 .profile-name-container {
22 -webkit-box-align: center;
23 -webkit-box-orient: horizontal;
24 -webkit-box-pack: center;
25 display: -webkit-box;
26 margin-left: auto;
27 margin-right: auto;
28 width: 50%;
29 }
30
22 #create-profile-name:invalid { 31 #create-profile-name:invalid {
23 background-color: pink; 32 background-color: pink;
24 } 33 }
25 34
26 #manage-profile-name:invalid { 35 #manage-profile-name:invalid {
27 background-color: pink; 36 background-color: pink;
28 } 37 }
29 38
30 #create-profile-error-bubble { 39 #create-profile-error-bubble {
31 -webkit-transition: max-height 200ms, padding 200ms; 40 -webkit-transition: max-height 200ms, padding 200ms;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 max-height: 0; 75 max-height: 0;
67 padding: 0 10px; 76 padding: 0 10px;
68 } 77 }
69 78
70 #create-profile-icon-grid, 79 #create-profile-icon-grid,
71 #manage-profile-icon-grid { 80 #manage-profile-icon-grid {
72 background-color: rgba(255, 255, 255, 0.75); 81 background-color: rgba(255, 255, 255, 0.75);
73 padding: 2px; 82 padding: 2px;
74 } 83 }
75 84
85 /* Adds a grey horizontal line below content area */
86 #create-profile-content:after,
87 #manage-profile-content:after {
88 background: #c0c0c0;
89 content: '';
90 display: block;
91 height: 1px;
92 margin-top: 20px;
93 width: 100%;
94 }
95
76 #create-profile-content > :first-child { 96 #create-profile-content > :first-child {
77 margin-bottom: 10px; 97 margin-bottom: 10px;
78 } 98 }
79 99
80 #manage-profile-content > :first-child { 100 #manage-profile-content > :first-child {
81 margin-bottom: 10px; 101 margin-bottom: 10px;
82 } 102 }
83 103
84 #create-profile-content > :last-child { 104 #create-profile-content > :last-child {
85 margin-top: 10px; 105 margin-top: 10px;
86 } 106 }
87 107
88 #manage-profile-content > :last-child { 108 #manage-profile-content > :last-child {
89 margin-top: 10px; 109 margin-top: 10px;
90 } 110 }
91 111
92 #create-profile-content > :not(:first-child):not(:last-child) { 112 #create-profile-content > :not(:first-child):not(:last-child) {
93 margin-bottom: 10px; 113 margin-bottom: 10px;
94 margin-top: 10px; 114 margin-top: 10px;
95 } 115 }
96 116
97 #manage-profile-content > :not(:first-child):not(:last-child) { 117 #manage-profile-content > :not(:first-child):not(:last-child) {
98 margin-bottom: 10px; 118 margin-bottom: 10px;
99 margin-top: 10px; 119 margin-top: 10px;
100 } 120 }
101 121
102 #create-profile-name-div,
103 #manage-profile-name-div {
104 -webkit-box-align: center;
105 -webkit-box-orient: horizontal;
106 -webkit-box-pack: center;
107 display: -webkit-box;
108 margin-left: auto;
109 margin-right: auto;
110 width: 50%;
111 }
112
113 #create-profile-name-label,
114 #manage-profile-name-label {
115 -webkit-margin-end: 20px;
116 }
117
118 #create-profile-name,
119 #manage-profile-name {
120 -webkit-box-flex: 1;
121 }
122
123 .action-area-checkbox-container { 122 .action-area-checkbox-container {
124 -webkit-box-flex: 1; 123 -webkit-box-flex: 1;
125 } 124 }
126 125
127 #delete-profile-message { 126 #delete-profile-message {
128 -webkit-padding-start: 48px; 127 -webkit-padding-start: 48px;
129 background-repeat: no-repeat; 128 background-repeat: no-repeat;
130 } 129 }
131 130
132 html[dir='rtl'] #delete-profile-message { 131 html[dir='rtl'] #delete-profile-message {
133 background-position: right; 132 background-position: right;
134 133
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options2/manage_profile_overlay.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698