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

Side by Side Diff: Source/devtools/front_end/inspector.css

Issue 378753002: [DevTools] Disable input field highlight upon label hover while timeline recording active. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 label:hover input { 46 label:hover input {
47 box-shadow: 0 0 3px highlight; 47 box-shadow: 0 0 3px highlight;
48 } 48 }
49 49
50 label.dimmed { 50 label.dimmed {
51 opacity: 0.6; 51 opacity: 0.6;
52 cursor: default; 52 cursor: default;
53 } 53 }
54 54
55 label.dimmed:hover input {
56 box-shadow: none;
57 }
58
55 fieldset[disabled] label:hover input { 59 fieldset[disabled] label:hover input {
56 box-shadow: none; 60 box-shadow: none;
57 } 61 }
58 62
59 .fill { 63 .fill {
60 position: absolute; 64 position: absolute;
61 top: 0; 65 top: 0;
62 left: 0; 66 left: 0;
63 right: 0; 67 right: 0;
64 bottom: 0; 68 bottom: 0;
(...skipping 2861 matching lines...) Expand 10 before | Expand all | Expand 10 after
2926 } 2930 }
2927 2931
2928 select.drop-down-menu { 2932 select.drop-down-menu {
2929 border: none; 2933 border: none;
2930 -webkit-appearance: none; 2934 -webkit-appearance: none;
2931 } 2935 }
2932 2936
2933 .viewport-control-gap-element { 2937 .viewport-control-gap-element {
2934 color: transparent; 2938 color: transparent;
2935 } 2939 }
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