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

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

Issue 344003: extensions: make the slidey animation fast (Closed)
Patch Set: Created 11 years, 1 month 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 | « no previous file | no next file » | 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> 2 <html>
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 font-size: 87%; 8 font-size: 87%;
9 font-family: Helvetica, Arial, sans-serif; 9 font-family: Helvetica, Arial, sans-serif;
10 margin: 0; 10 margin: 0;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 } 79 }
80 80
81 body.hideDevModeInitial .showInDevMode { 81 body.hideDevModeInitial .showInDevMode {
82 height: 0 !important; 82 height: 0 !important;
83 opacity: 0; 83 opacity: 0;
84 } 84 }
85 85
86 body.hideDevMode .showInDevMode { 86 body.hideDevMode .showInDevMode {
87 height: 0 !important; 87 height: 0 !important;
88 opacity: 0; 88 opacity: 0;
89 -webkit-transition: all .5s ease-out; 89 -webkit-transition: all .1s ease-out;
90 } 90 }
91 91
92 body.showDevMode .showInDevMode { 92 body.showDevMode .showInDevMode {
93 opacity: 1; 93 opacity: 1;
94 -webkit-transition: all .5s ease-in; 94 -webkit-transition: all .1s ease-in;
95 } 95 }
96 96
97 .wbox-dev-tools { 97 .wbox-dev-tools {
98 -webkit-box-align: stretch; 98 -webkit-box-align: stretch;
99 -webkit-box-flex: 1; 99 -webkit-box-flex: 1;
100 } 100 }
101 101
102 .developer-tools-image { 102 .developer-tools-image {
103 margin-top: 2px; 103 margin-top: 2px;
104 } 104 }
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 </td> 703 </td>
704 </tr> 704 </tr>
705 </table> 705 </table>
706 </div> 706 </div>
707 </div> 707 </div>
708 </div> 708 </div>
709 </div> 709 </div>
710 </div> 710 </div>
711 </body> 711 </body>
712 </html> 712 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698