| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2015 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 .text-prompt-editing { | 7 .text-prompt-editing { |
| 8 -webkit-user-select: text; | 8 -webkit-user-select: text; |
| 9 box-shadow: rgba(0, 0, 0, .5) 3px 3px 4px; | 9 box-shadow: rgba(0, 0, 0, .5) 3px 3px 4px; |
| 10 outline: 1px solid rgb(66%, 66%, 66%) !important; | 10 outline: 1px solid rgb(66%, 66%, 66%) !important; |
| 11 background-color: white; | 11 background-color: white; |
| 12 -webkit-user-modify: read-write-plaintext-only; | 12 -webkit-user-modify: read-write-plaintext-only; |
| 13 text-overflow: clip !important; | 13 text-overflow: clip !important; |
| 14 padding-left: 2px; | 14 padding-left: 2px; |
| 15 margin-left: -2px; | 15 margin-left: -2px; |
| 16 padding-right: 2px; | 16 padding-right: 2px; |
| 17 margin-right: -2px; | 17 margin-right: -2px; |
| 18 margin-bottom: -1px; | 18 margin-bottom: -1px; |
| 19 padding-bottom: 1px; | 19 padding-bottom: 1px; |
| 20 opacity: 1.0 !important; | 20 opacity: 1.0 !important; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .text-prompt-editing, | 23 .text-prompt-editing, |
| 24 .text-prompt-editing ::content * { | 24 .text-prompt-editing ::content * { |
| 25 color: #222 !important; | 25 color: #222 !important; |
| 26 text-decoration: none !important; | 26 text-decoration: none !important; |
| 27 -webkit-user-modify: read-write-plaintext-only; | 27 -webkit-user-modify: read-write-plaintext-only; |
| 28 white-space: pre; |
| 28 } | 29 } |
| 29 | 30 |
| 30 ::content .auto-complete-text, | 31 ::content .auto-complete-text, |
| 31 .text-prompt-editing ::content .auto-complete-text { | 32 .text-prompt-editing ::content .auto-complete-text { |
| 32 color: rgb(128, 128, 128) !important; | 33 color: rgb(128, 128, 128) !important; |
| 33 -webkit-user-select: none; | 34 -webkit-user-select: none; |
| 34 -webkit-user-modify: read-only; | 35 -webkit-user-modify: read-only; |
| 35 } | 36 } |
| 36 | 37 |
| 37 .text-prompt-editing ::content br { | 38 .text-prompt-editing ::content br { |
| 38 display: none; | 39 display: none; |
| 39 } | 40 } |
| OLD | NEW |