| 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 #searchEngineList .heading { | 7 #searchEngineList .heading { |
| 8 -webkit-border-radius: 2px; | 8 -webkit-border-radius: 2px; |
| 9 color: black; | 9 color: black; |
| 10 border-bottom: 1px solid #d9d9d9; | 10 border-bottom: 1px solid #d9d9d9; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #searchEngineList .url-column { | 82 #searchEngineList .url-column { |
| 83 display: -webkit-box; | 83 display: -webkit-box; |
| 84 -webkit-box-align: center; | 84 -webkit-box-align: center; |
| 85 } | 85 } |
| 86 | 86 |
| 87 #searchEngineList .url-column :first-child { | 87 #searchEngineList .url-column :first-child { |
| 88 -webkit-box-flex: 1; | 88 -webkit-box-flex: 1; |
| 89 } | 89 } |
| 90 | 90 |
| 91 #searchEngineList .url-column button { | 91 #searchEngineList .url-column button { |
| 92 background-color: #aab6e1; | 92 background: #8aaaed; |
| 93 border: none; | 93 color: #fff; |
| 94 border-radius: 3px; | |
| 95 color: white; | |
| 96 -webkit-margin-start: 3px; | 94 -webkit-margin-start: 3px; |
| 97 } | 95 } |
| 98 | 96 |
| 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 { | 97 #searchEngineList > :not(:hover):not([editing]) .url-column button { |
| 108 display: none; | 98 display: none; |
| 109 } | 99 } |
| 110 /* End temporary Make Default button styling */ | 100 /* End temporary Make Default button styling */ |
| OLD | NEW |