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

Side by Side Diff: Source/devtools/front_end/network/blockedURLsPane.css

Issue 1327893002: [DevTools] Fix overlapping while editing blocked url. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
« 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 .toolbar { 7 .toolbar {
8 border-bottom: 1px solid #dadada; 8 border-bottom: 1px solid #dadada;
9 } 9 }
10 10
(...skipping 24 matching lines...) Expand all
35 flex: 30px 0 0; 35 flex: 30px 0 0;
36 font-size: smaller !important; 36 font-size: smaller !important;
37 padding-right: 5px; 37 padding-right: 5px;
38 } 38 }
39 39
40 .blocked-url-text { 40 .blocked-url-text {
41 white-space: nowrap; 41 white-space: nowrap;
42 text-overflow: ellipsis; 42 text-overflow: ellipsis;
43 overflow: hidden; 43 overflow: hidden;
44 flex: auto; 44 flex: auto;
45 margin-right: 5px;
45 } 46 }
46 47
47 .blocked-url .remove-button { 48 .blocked-url .remove-button {
48 width: 13px; 49 width: 13px;
49 height: 13px; 50 height: 13px;
50 background-image: url(Images/toolbarButtonGlyphs.png); 51 background-image: url(Images/toolbarButtonGlyphs.png);
51 background-size: 352px 168px; 52 background-size: 352px 168px;
52 background-position: -175px -96px; 53 background-position: -175px -96px;
53 visibility: hidden; 54 visibility: hidden;
54 flex: none; 55 flex: none;
55 opacity: 0.7; 56 opacity: 0.7;
56 cursor: default; 57 cursor: default;
57 } 58 }
58 59
59 @media (-webkit-min-device-pixel-ratio: 1.5) { 60 @media (-webkit-min-device-pixel-ratio: 1.5) {
60 .blocked-url .remove-button { 61 .blocked-url .remove-button {
61 background-image: url(Images/toolbarButtonGlyphs_2x.png); 62 background-image: url(Images/toolbarButtonGlyphs_2x.png);
62 } 63 }
63 } /* media */ 64 } /* media */
64 65
65 .blocked-url:hover .remove-button { 66 .blocked-url:hover .remove-button {
66 visibility: visible; 67 visibility: visible;
67 } 68 }
68 69
69 .blocked-url .remove-button:hover { 70 .blocked-url .remove-button:hover {
70 opacity: 1.0; 71 opacity: 1.0;
71 } 72 }
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