OLD | NEW |
1 #searchEngineList { | 1 #searchEngineList { |
2 -webkit-border-radius: 2px; | 2 -webkit-border-radius: 2px; |
3 border-bottom: 1px solid #d9d9d9; | 3 border-bottom: 1px solid #d9d9d9; |
4 height: auto; | 4 height: auto; |
5 } | 5 } |
6 | 6 |
7 #searchEngineManagerPage .left-side-table { | 7 #searchEngineManagerPage .left-side-table { |
8 margin-top: 12px; | 8 margin-top: 12px; |
9 } | 9 } |
10 | 10 |
11 #searchEngineList .heading { | 11 #searchEngineList .heading { |
12 -webkit-border-radius: 2px; | 12 -webkit-border-radius: 2px; |
13 color: black; | 13 color: black; |
14 border-bottom: 1px solid #d9d9d9; | 14 border-bottom: 1px solid #d9d9d9; |
15 } | 15 } |
16 | 16 |
17 #searchEngineList .heading:not(:nth-child(2)) { | 17 #searchEngineList .heading:not(:nth-child(2)) { |
18 border-top: 1px solid #d9d9d9; | 18 border-top: 1px solid #d9d9d9; |
19 } | 19 } |
20 | 20 |
21 #searchEngineList .heading .name { | 21 #searchEngineList .heading .name-column { |
22 font-weight: bold; | 22 font-weight: bold; |
23 } | 23 } |
24 | 24 |
25 #searchEngineList > div:not(.heading) { | 25 #searchEngineList > div:not(.heading) { |
26 border-left: 1px solid #d9d9d9; | 26 border-left: 1px solid #d9d9d9; |
27 border-right: 1px solid #d9d9d9; | 27 border-right: 1px solid #d9d9d9; |
28 } | 28 } |
29 | 29 |
30 #searchEngineList > div, #searchEngineHeading { | 30 #searchEngineList > div, #searchEngineHeading { |
31 display: -webkit-box; | 31 display: -webkit-box; |
32 } | 32 } |
33 | 33 |
34 #searchEngineList .name { | 34 #searchEngineList .favicon { |
35 box-sizing: border-box; | 35 padding: 1px 7px 0px 7px; |
36 width: 50%; | 36 height: 16px; |
37 } | 37 } |
38 | 38 |
39 #searchEngineList .keyword { | 39 #searchEngineList .name-column { |
40 -webkit-box-flex: 1; | 40 box-sizing: border-box; |
| 41 width: 37%; |
41 } | 42 } |
42 | 43 |
43 #searchEngineList > div:not(.heading) .keyword { | 44 #searchEngineList .keyword-column { |
| 45 width: 26%; |
| 46 } |
| 47 |
| 48 #searchEngineList .url-column { |
| 49 width: 37%; |
| 50 } |
| 51 |
| 52 #searchEngineList > div:not(.heading) .keyword-column, |
| 53 #searchEngineList > div:not(.heading) .url-column { |
44 color: #666666; | 54 color: #666666; |
45 } | 55 } |
46 | 56 |
| 57 #searchEngineList .name-column, |
| 58 #searchEngineList .keyword-column, |
| 59 #searchEngineList .url-column { |
| 60 -webkit-padding-end: 1ex; |
| 61 } |
| 62 |
47 #searchEngineList .default { | 63 #searchEngineList .default { |
48 font-weight: bold; | 64 font-weight: bold; |
49 } | 65 } |
50 | 66 |
51 #searchEngineList .name, #searchEngineList .keyword { | 67 #searchEngineList .default .url-column { |
| 68 font-weight: normal; |
| 69 } |
| 70 |
| 71 #searchEngineList .name-column { |
| 72 display: -webkit-box; |
| 73 } |
| 74 |
| 75 #searchEngineList .name-column :last-child { |
| 76 -webkit-box-flex: 1; |
| 77 } |
| 78 |
| 79 #searchEngineList input { |
| 80 box-sizing: border-box; |
| 81 margin: 0; |
| 82 width: 100%; |
| 83 } |
| 84 |
| 85 #searchEngineList .static-text { |
52 overflow: hidden; | 86 overflow: hidden; |
53 text-overflow: ellipsis; | 87 text-overflow: ellipsis; |
| 88 white-space: nowrap; |
54 } | 89 } |
| 90 |
| 91 #searchEngineList > :not([editing]) [editmode=true] { |
| 92 display: none; |
| 93 } |
| 94 |
| 95 #searchEngineList > [editing] [editmode=false] { |
| 96 display: none; |
| 97 } |
| 98 |
| 99 #searchEngineList input.invalid { |
| 100 /* TODO(stuartmorgan): Replace with actual badging */ |
| 101 background-color: pink; |
| 102 } |
OLD | NEW |