| OLD | NEW |
| 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...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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> |
| OLD | NEW |