| OLD | NEW |
| 1 /* Global styles */ | 1 /* Global styles */ |
| 2 * { | 2 * { |
| 3 margin: 0; | 3 margin: 0; |
| 4 padding: 0; | 4 padding: 0; |
| 5 box-sizing: border-box; | 5 box-sizing: border-box; |
| 6 } | 6 } |
| 7 | 7 |
| 8 body { | 8 body { |
| 9 padding-top: 56px; | 9 padding-top: 56px; |
| 10 color: #333; | 10 color: #333; |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 } | 1241 } |
| 1242 nav-refresh-wrapped > li > button[disabled] { | 1242 nav-refresh-wrapped > li > button[disabled] { |
| 1243 color: #aaa; | 1243 color: #aaa; |
| 1244 cursor: wait; | 1244 cursor: wait; |
| 1245 } | 1245 } |
| 1246 nav-refresh-wrapped > li { | 1246 nav-refresh-wrapped > li { |
| 1247 float: right; | 1247 float: right; |
| 1248 margin: 0; | 1248 margin: 0; |
| 1249 } | 1249 } |
| 1250 | 1250 |
| 1251 /* object-common */ | 1251 /* object-common && class-instances */ |
| 1252 /* TODO(cbernaschina) fix object-common-wrapped to object-common when wrapper | 1252 /* TODO(cbernaschina) fix object-common-wrapped to object-common when wrapper |
| 1253 removed */ | 1253 removed */ |
| 1254 | 1254 |
| 1255 class-instances button:hover, |
| 1255 object-common-wrapped button:hover { | 1256 object-common-wrapped button:hover { |
| 1256 background-color: transparent; | 1257 background-color: transparent; |
| 1257 border: none; | 1258 border: none; |
| 1258 text-decoration: underline; | 1259 text-decoration: underline; |
| 1259 } | 1260 } |
| 1261 class-instances button, |
| 1260 object-common-wrapped button { | 1262 object-common-wrapped button { |
| 1261 background-color: transparent; | 1263 background-color: transparent; |
| 1262 border: none; | 1264 border: none; |
| 1263 color: #0489c3; | 1265 color: #0489c3; |
| 1264 padding: 0; | 1266 padding: 0; |
| 1265 margin: -8px 4px; | 1267 margin: -8px 4px; |
| 1266 font-size: 20px; | 1268 font-size: 20px; |
| 1267 text-decoration: none; | 1269 text-decoration: none; |
| 1268 } | 1270 } |
| 1269 | 1271 |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1738 | 1740 |
| 1739 vm-connect-target > button.delete-button:hover { | 1741 vm-connect-target > button.delete-button:hover { |
| 1740 background: #ff0000; | 1742 background: #ff0000; |
| 1741 } | 1743 } |
| 1742 | 1744 |
| 1743 /* vm-connect */ | 1745 /* vm-connect */ |
| 1744 | 1746 |
| 1745 vm-connect ul { | 1747 vm-connect ul { |
| 1746 list-style-type: none; | 1748 list-style-type: none; |
| 1747 } | 1749 } |
| OLD | NEW |