OLD | NEW |
1 .inputview-layoutview { | 1 .inputview-layoutview { |
2 position: relative; | 2 position: relative; |
3 -webkit-user-select: none; | 3 -webkit-user-select: none; |
4 } | 4 } |
5 .inputview-canvasview, | 5 .inputview-canvasview, |
6 .inputview-skv { | 6 .inputview-skv { |
7 display: inline-block; | 7 display: inline-block; |
8 overflow: hidden; | 8 overflow: hidden; |
9 } | 9 } |
10 .inputview-sk { | 10 .inputview-sk { |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 font-size: 18px; | 279 font-size: 18px; |
280 } | 280 } |
281 .inputview-candidate.inputview-candidate-default { | 281 .inputview-candidate.inputview-candidate-default { |
282 color: #111111; | 282 color: #111111; |
283 } | 283 } |
284 .inputview-candidate.inputview-candidate-autocorrect { | 284 .inputview-candidate.inputview-candidate-autocorrect { |
285 font-weight: bold; | 285 font-weight: bold; |
286 color: #111111; | 286 color: #111111; |
287 } | 287 } |
288 .inputview-candidate-view { | 288 .inputview-candidate-view { |
| 289 display: table-cell; |
289 overflow: hidden; | 290 overflow: hidden; |
290 display: table-cell; | 291 position: relative; |
291 height: 32px; | |
292 } | 292 } |
293 .inputview-toolbar-button, | 293 .inputview-toolbar-button { |
| 294 float: right; |
| 295 } |
294 .inputview-candidate-button { | 296 .inputview-candidate-button { |
295 float: right; | 297 position: absolute; |
| 298 right: 0; |
| 299 top: 0; |
296 } | 300 } |
297 .inputview-toolbar-button.float-left { | 301 .inputview-toolbar-button.float-left { |
298 float: left; | 302 float: left; |
299 } | 303 } |
300 .inputview-candidate { | 304 .inputview-candidate { |
301 display: table-cell; | 305 display: table-cell; |
302 font-size: 18px; | 306 font-size: 18px; |
303 color: #555555; | 307 color: #555555; |
304 vertical-align: middle; | 308 vertical-align: middle; |
305 text-align: center; | 309 text-align: center; |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
783 | 787 |
784 .inputview-candidate-internal-wrapper { | 788 .inputview-candidate-internal-wrapper { |
785 text-overflow: ellipsis; | 789 text-overflow: ellipsis; |
786 overflow-x: hidden; | 790 overflow-x: hidden; |
787 white-space: nowrap; | 791 white-space: nowrap; |
788 display: inline-block; | 792 display: inline-block; |
789 } | 793 } |
790 .inputview-three-candidates .inputview-candidate { | 794 .inputview-three-candidates .inputview-candidate { |
791 padding: 6px; | 795 padding: 6px; |
792 } | 796 } |
OLD | NEW |