| 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 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 #searchEngineList .name-column :last-child { | 75 #searchEngineList .name-column :last-child { |
| 76 -webkit-box-flex: 1; | 76 -webkit-box-flex: 1; |
| 77 } | 77 } |
| 78 | 78 |
| 79 #searchEngineList input { | 79 #searchEngineList input { |
| 80 box-sizing: border-box; | 80 box-sizing: border-box; |
| 81 margin: 0; | 81 margin: 0; |
| 82 width: 100%; | 82 width: 100%; |
| 83 } | 83 } |
| 84 | |
| 85 #searchEngineList .static-text { | |
| 86 overflow: hidden; | |
| 87 text-overflow: ellipsis; | |
| 88 white-space: nowrap; | |
| 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 |