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 #search-engine-manager-page { 6 width: 700px; 7 } 8 9 .search-engine-list input { 10 -webkit-box-flex: 1; 11 display: -webkit-box; 12 } 13 14 .search-engine-list > div { 15 display: -webkit-box; 16 } 17 18 .search-engine-list .favicon { 19 background-position: center center; 20 background-repeat: no-repeat; 21 background-size: 16px; 22 height: 16px; 23 line-height: 16px; 24 padding: 0 7px; 25 width: 16px; 26 } 27 28 .search-engine-list .name-column { 29 -webkit-box-align: center; 30 -webkit-padding-end: 1ex; 31 box-sizing: border-box; 32 display: -webkit-box; 33 width: 30%; 34 } 35 36 .search-engine-list .name-column :last-child { 37 -webkit-box-flex: 1; 38 } 39 40 .search-engine-list .keyword-column { 41 -webkit-padding-end: 1ex; 42 box-sizing: border-box; 43 width: 26%; 44 } 45 46 .search-engine-list .url-column { 47 box-sizing: border-box; 48 width: 44%; 49 } 50 51 .search-engine-list .keyword-column, 52 .search-engine-list .url-column { 53 color: #666; 54 } 55 56 .search-engine-list .default .name-column, 57 .search-engine-list .default .keyword-column { 58 font-weight: bold; 59 } 60 61 /* For temporary Make Default button */ 62 .search-engine-list .url-column { 63 -webkit-box-align: center; 64 display: -webkit-box; 65 } 66 67 .search-engine-list .url-column :first-child { 68 -webkit-box-flex: 1; 69 } 70 71 .search-engine-list .url-column .list-inline-button { 72 margin-top: 0; 73 padding: 1px 6px 2px 6px; 74 } 75 76 .search-engine-list > :not(:hover):not([editing]) .url-column 77 .list-inline-button { 78 display: none; 79 } 80 81 /* End temporary Make Default button styling */ 82