Chromium Code Reviews

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

Issue 5217005: RTL HTML/CSS clean-up with -webkit-foo-{start,end}... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/history.html ('k') | chrome/browser/resources/plugins.html » ('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;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset=UTF-8"> 4 <meta charset=UTF-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <style> 6 <style>
7 body { 7 body {
8 -webkit-user-select: none; 8 -webkit-user-select: none;
9 } 9 }
10 10
(...skipping 107 matching lines...)
118 width: 100%; 118 width: 100%;
119 bottom: 0; 119 bottom: 0;
120 } 120 }
121 121
122 .fullcontainer { 122 .fullcontainer {
123 top: 0px; 123 top: 0px;
124 position: absolute; 124 position: absolute;
125 left: 0; 125 left: 0;
126 bottom: 0; 126 bottom: 0;
127 right: 600px; 127 right: 600px;
128 border-right: 1px solid #7289E2; 128 -webkit-border-end: 1px solid #7289E2;
129 } 129 }
130 130
131 html[dir='rtl'] .fullcontainer { 131 html[dir='rtl'] .fullcontainer {
132 left: 600px; 132 left: 600px;
133 right: 0; 133 right: 0;
134 border-right: auto;
135 border-left: 1px solid #7289E2;
136 } 134 }
137 135
138 progress { 136 progress {
139 -webkit-margin-start: 15px; 137 -webkit-margin-start: 15px;
140 width: 700px; 138 width: 700px;
141 } 139 }
142 140
143 .progressText { 141 .progressText {
144 -webkit-padding-start: 20px; 142 -webkit-padding-start: 20px;
145 font-size: .6em; 143 font-size: .6em;
(...skipping 288 matching lines...)
434 <div id="rootsColumn" class="columnlist"> 432 <div id="rootsColumn" class="columnlist">
435 <h1 id="rootsListTitle" class="title" i18n-content="listTitle"></h1> 433 <h1 id="rootsListTitle" class="title" i18n-content="listTitle"></h1>
436 <div id="rootsList"></div> 434 <div id="rootsList"></div>
437 </div> 435 </div>
438 <div id="statusColumn" class="columnlist"> 436 <div id="statusColumn" class="columnlist">
439 <div id="statusList"></div> 437 <div id="statusList"></div>
440 </div> 438 </div>
441 </div> 439 </div>
442 </body> 440 </body>
443 </html> 441 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/history.html ('k') | chrome/browser/resources/plugins.html » ('j') | no next file with comments »

Powered by Google App Engine