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 { | |
8 margin-top: 12px; | |
9 } | |
10 | |
11 #searchEngineList .heading { | 7 #searchEngineList .heading { |
12 -webkit-border-radius: 2px; | 8 -webkit-border-radius: 2px; |
13 color: black; | 9 color: black; |
14 border-bottom: 1px solid #d9d9d9; | 10 border-bottom: 1px solid #d9d9d9; |
15 } | 11 } |
16 | 12 |
17 #searchEngineList .heading:not(:nth-child(2)) { | 13 #searchEngineList .heading:not(:nth-child(2)) { |
18 border-top: 1px solid #d9d9d9; | 14 border-top: 1px solid #d9d9d9; |
19 } | 15 } |
20 | 16 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 70 |
75 #searchEngineList .name-column :last-child { | 71 #searchEngineList .name-column :last-child { |
76 -webkit-box-flex: 1; | 72 -webkit-box-flex: 1; |
77 } | 73 } |
78 | 74 |
79 #searchEngineList input { | 75 #searchEngineList input { |
80 box-sizing: border-box; | 76 box-sizing: border-box; |
81 margin: 0; | 77 margin: 0; |
82 width: 100%; | 78 width: 100%; |
83 } | 79 } |
| 80 |
| 81 /* For temporary Make Default button */ |
| 82 #searchEngineList .url-column { |
| 83 display: -webkit-box; |
| 84 -webkit-box-align: center; |
| 85 } |
| 86 |
| 87 #searchEngineList .url-column :first-child { |
| 88 -webkit-box-flex: 1; |
| 89 } |
| 90 |
| 91 #searchEngineList .url-column button { |
| 92 background-color: #aab6e1; |
| 93 border: none; |
| 94 border-radius: 3px; |
| 95 color: white; |
| 96 -webkit-margin-start: 3px; |
| 97 } |
| 98 |
| 99 #searchEngineList .url-column button:hover { |
| 100 background-color: #9aa6d1; |
| 101 } |
| 102 |
| 103 #searchEngineList .url-column button:active { |
| 104 background-color: #8a96c1; |
| 105 } |
| 106 |
| 107 #searchEngineList > :not(:hover):not([editing]) .url-column button { |
| 108 display: none; |
| 109 } |
| 110 /* End temporary Make Default button styling */ |
OLD | NEW |