| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached"> | 2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached"> |
| 3 <head> | 3 <head> |
| 4 <title i18n-content="title"></title> | 4 <title i18n-content="title"></title> |
| 5 <style> | 5 <style> |
| 6 body { | 6 body { |
| 7 margin:10px 8px 10px 8px; | 7 margin:10px 8px 10px 8px; |
| 8 } | 8 } |
| 9 html[dir="ltr"] .icon { | 9 html[dir="ltr"] .icon { |
| 10 float:right; | 10 float:right; |
| 11 margin:0 6px 0 3px; | 11 margin:0 6px 0 3px; |
| 12 -webkit-transform: scale(-1, 1); | 12 -webkit-transform: scale(-1, 1); |
| 13 } | 13 } |
| 14 html[dir="rtl"] .icon { | 14 html[dir="rtl"] .icon { |
| 15 float:left; | 15 float:left; |
| 16 margin:0 3px 0 6px; | 16 margin:0 3px 0 6px; |
| 17 } | 17 } |
| 18 .content { | 18 .content { |
| 19 -webkit-border-radius: 5px 5px; | 19 border-radius: 5px 5px; |
| 20 background-color:#eee; | 20 background-color:#eee; |
| 21 color:black; | 21 color:black; |
| 22 padding:10px 10px 10px 10px; | 22 padding:10px 10px 10px 10px; |
| 23 max-width:600px; | 23 max-width:600px; |
| 24 margin-left:auto; | 24 margin-left:auto; |
| 25 margin-right:auto; | 25 margin-right:auto; |
| 26 margin-top:66px; | 26 margin-top:66px; |
| 27 } | 27 } |
| 28 .extensionsmessage { | 28 .extensionsmessage { |
| 29 color:black; | 29 color:black; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 function bookmarkBarAttached() { | 65 function bookmarkBarAttached() { |
| 66 document.documentElement.setAttribute("bookmarkbarattached", "true"); | 66 document.documentElement.setAttribute("bookmarkbarattached", "true"); |
| 67 } | 67 } |
| 68 | 68 |
| 69 function bookmarkBarDetached() { | 69 function bookmarkBarDetached() { |
| 70 document.documentElement.setAttribute("bookmarkbarattached", "false"); | 70 document.documentElement.setAttribute("bookmarkbarattached", "false"); |
| 71 } | 71 } |
| 72 </script> | 72 </script> |
| 73 </html> | 73 </html> |
| OLD | NEW |