| OLD | NEW |
| 1 <html i18n-values="dir:textdirection;"> | 1 <html i18n-values="dir:textdirection;"> |
| 2 <head> | 2 <head> |
| 3 <title></title> | 3 <title></title> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 body { | 5 body { |
| 6 line-height: 1.5em; | 6 line-height: 1.5em; |
| 7 background: #FFFFFF; | 7 background: #FFFFFF; |
| 8 font-size: 11pt; | 8 font-size: 11pt; |
| 9 } | 9 } |
| 10 html[os='mac'] body { | 10 html[os='mac'] body { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 } | 41 } |
| 42 | 42 |
| 43 .sync-config-tab-contents-inactive { | 43 .sync-config-tab-contents-inactive { |
| 44 display: none; | 44 display: none; |
| 45 } | 45 } |
| 46 .sync-config-tab-contents-active { | 46 .sync-config-tab-contents-active { |
| 47 display: block; | 47 display: block; |
| 48 margin: 10px 15px; | 48 margin: 10px 15px; |
| 49 } | 49 } |
| 50 .sync-config-tabstrip { | 50 .sync-config-tabstrip { |
| 51 display: none; | 51 border-bottom: 1px solid gray; |
| 52 height: 25px; |
| 53 margin-bottom: 10px; |
| 54 padding-top: 10px; |
| 55 background-color: #DDD; |
| 52 } | 56 } |
| 53 .sync-config-tab-active { | 57 .sync-config-tab-active { |
| 54 background-color: white; | 58 background-color: white; |
| 55 border-top: 1px solid gray; | 59 border-top: 1px solid gray; |
| 56 border-left: 1px solid gray; | 60 border-left: 1px solid gray; |
| 57 border-right: 1px solid gray; | 61 border-right: 1px solid gray; |
| 58 border-top-left-radius: 5px 5px; | 62 border-top-left-radius: 5px 5px; |
| 59 border-top-right-radius: 5px 5px; | 63 border-top-right-radius: 5px 5px; |
| 60 } | 64 } |
| 61 | 65 |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 </div> | 491 </div> |
| 488 | 492 |
| 489 <div class="sync-footer"> | 493 <div class="sync-footer"> |
| 490 <input id="okButton" type="submit" i18n-values="value:ok" /> | 494 <input id="okButton" type="submit" i18n-values="value:ok" /> |
| 491 <input id="cancelButton" type="button" i18n-values="value:cancel" | 495 <input id="cancelButton" type="button" i18n-values="value:cancel" |
| 492 onclick='chrome.send("DialogClose", [""])' /> | 496 onclick='chrome.send("DialogClose", [""])' /> |
| 493 </div> | 497 </div> |
| 494 </form> | 498 </form> |
| 495 </body> | 499 </body> |
| 496 </html> | 500 </html> |
| OLD | NEW |