OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 body { | 7 body { |
8 margin: 10px; | 8 margin: 10px; |
9 min-width: 47em; | 9 min-width: 47em; |
10 } | 10 } |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 } | 105 } |
106 | 106 |
107 body.hideTmiModeInitial .showInTmiMode { | 107 body.hideTmiModeInitial .showInTmiMode { |
108 height: 0 !important; | 108 height: 0 !important; |
109 opacity: 0; | 109 opacity: 0; |
110 } | 110 } |
111 | 111 |
112 body.hideTmiMode .showInTmiMode { | 112 body.hideTmiMode .showInTmiMode { |
113 height: 0 !important; | 113 height: 0 !important; |
114 opacity: 0; | 114 opacity: 0; |
115 -webkit-transition: all .1s ease-out; | 115 -webkit-transition: all 100ms ease-out; |
116 } | 116 } |
117 | 117 |
118 body.showTmiModeInitial .showInTmiMode { | 118 body.showTmiModeInitial .showInTmiMode { |
119 opacity: 1; | 119 opacity: 1; |
120 } | 120 } |
121 | 121 |
122 body.showTmiMode .showInTmiMode { | 122 body.showTmiMode .showInTmiMode { |
123 opacity: 1; | 123 opacity: 1; |
124 -webkit-transition: all .1s ease-in; | 124 -webkit-transition: all 100ms ease-in; |
125 } | 125 } |
126 | 126 |
127 .wbox-tmi-mode { | 127 .wbox-tmi-mode { |
128 -webkit-box-align: stretch; | 128 -webkit-box-align: stretch; |
129 -webkit-box-flex: 1; | 129 -webkit-box-flex: 1; |
130 } | 130 } |
131 | 131 |
132 .tmi-mode-image { | 132 .tmi-mode-image { |
133 margin-top: 2px; | 133 margin-top: 2px; |
134 padding-left: 5px; | 134 padding-left: 5px; |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 /* Match the indentation of .plugin-text. */ | 245 /* Match the indentation of .plugin-text. */ |
246 .plugin-actions { | 246 .plugin-actions { |
247 -webkit-padding-start: 5px; | 247 -webkit-padding-start: 5px; |
248 margin-top: 0.2em; | 248 margin-top: 0.2em; |
249 margin-bottom: 0.2em; | 249 margin-bottom: 0.2em; |
250 } | 250 } |
251 | 251 |
252 button { | 252 button { |
253 font-size: 104%; | 253 font-size: 104%; |
254 } | 254 } |
OLD | NEW |