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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/textPrompt.css

Issue 1794393002: Devtools: Fix space key in Styles pane editing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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 /* 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 }
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