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 6body { 7 cursor: default; 8 font-size: 13px; 9} 10 11.container { 12 -webkit-box-align: center; 13 -webkit-box-pack: center; 14 bottom: 0; 15 display: -webkit-box; 16 left: 0; 17 position: fixed; 18 right: 0; 19 top: 0; 20} 21 22.dialog { 23 background: white; 24 min-height: 225px; 25 min-width: 350px; 26 padding: 0; 27 position: relative; 28} 29 30.dialog h1 { 31 background: -webkit-linear-gradient(white, #F8F8F8); 32 border-bottom: 1px solid rgba(188, 193, 208, .5); 33 color: rgb(83, 99, 125); 34 font-size: 105%; 35 font-weight: bold; 36 margin: 0; 37 padding: 10px 15px 8px 15px; 38 text-shadow: white 0 1px 2px; 39 width: 320px; 40} 41 42.content-area { 43 padding: 10px 15px 5px 15px; 44 width: 320px; 45} 46 47.action-area { 48 -webkit-box-align: center; 49 -webkit-box-orient: horizontal; 50 -webkit-box-pack: end; 51 display: -webkit-box; 52 padding: 12px; 53} 54 55html[dir='rtl'] .action-area { 56 left: 0; 57} 58 59.action-area-right { 60 display: -webkit-box; 61} 62 63.button-strip { 64 -webkit-box-orient: horizontal; 65 display: -webkit-box; 66} 67 68.button-strip > button { 69 -webkit-margin-start: 10px; 70 display: block; 71} 72