Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: chrome/browser/resources/incognito_tab.html

Issue 1182001: Remove vendor specific CSS prefixes. (Closed)
Patch Set: ? Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/filebrowse.html ('k') | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/filebrowse.html ('k') | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698