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 3 * found in the LICENSE file. */ 4 5 #manage-profile-overlay { 6 width: 612px; 7 } 8 9 .profile-icon-grid-item { 10 height: 31px; 11 margin: 2px 4px; 12 padding: 4px; 13 width: 38px; 14 } 15 16 .profile-icon { 17 height: 31px; 18 width: 38px; 19 } 20 21 #create-profile-name-input-container, 22 #manage-profile-name-input-container { 23 margin-top: 5px; 24 } 25 26 #create-profile-name, 27 #manage-profile-name { 28 margin-left: 10px; 29 } 30 31 #create-profile-name:invalid, 32 #manage-profile-name:invalid { 33 background-color: pink; 34 } 35 36 #create-profile-error-bubble, 37 #manage-profile-error-bubble { 38 -webkit-transition: max-height 200ms, padding 200ms; 39 background-color: rgb(238, 185, 57); 40 border-radius: 4px; 41 font-weight: bold; 42 margin-left: auto; 43 margin-right: auto; 44 max-height: 50px; 45 overflow: hidden; 46 padding: 1px 10px; 47 text-align: center; 48 width: 80%; 49 } 50 51 #create-profile-error-bubble[hidden], 52 #manage-profile-error-bubble[hidden] { 53 display: block !important; 54 max-height: 0; 55 padding: 0 10px; 56 } 57 58 #create-profile-icon-grid, 59 #manage-profile-icon-grid { 60 background-color: rgba(255, 255, 255, 0.75); 61 padding: 2px; 62 } 63 64 :-webkit-any(#create-profile-content, #manage-profile-content) > 65 :not(:last-child) { 66 margin-bottom: 10px; 67 } 68 69 :-webkit-any(#create-profile-content, #manage-profile-content) > 70 :not(:first-child) { 71 margin-top: 10px; 72 } 73 74 :-webkit-any(#create-profile-content, #manage-profile-content) > 75 .name-input-container { 76 margin-top: 5px; 77 } 78 79 :-webkit-any(#create-profile-content, #manage-profile-content) > 80 .name-label-container { 81 margin-bottom: 5px; 82 } 83 84 #create-profile-content { 85 padding-bottom: 0; 86 } 87 88 .action-area-shortcut-container { 89 -webkit-box-flex: 1; 90 } 91 92 /* Proper spacing for the buttons. */ 93 #remove-shortcut-button, 94 #add-shortcut-button { 95 -webkit-margin-end: 10px; 96 } 97 98 #delete-managed-profile-addendum { 99 -webkit-padding-start: 48px; 100 margin-top: 10px; 101 } 102 103 html[dir='ltr'] #delete-profile-icon { 104 float: left; 105 margin-right: 10px; 106 } 107 108 html[dir='rtl'] #delete-profile-icon { 109 float: right; 110 margin-left: 10px; 111 } 112 113 #create-profile-managed-not-signed-in { 114 color: #999; 115 } 116 117 #create-profile-managed-not-signed-in-label, 118 #create-profile-managed-account-details-out-of-date-label { 119 white-space: pre-wrap; 120 word-wrap: break-word; 121 } 122 123 #create-profile-managed-content-area { 124 padding-top: 0; 125 } 126 127 #import-existing-managed-user-link { 128 left: 17px; 129 position: absolute; 130 } 131