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

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

Issue 208393016: DevTools: Add hover affordance for checkboxes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 6 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) 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 21 matching lines...) Expand all
32 outline: auto 5px -webkit-focus-ring-color; 32 outline: auto 5px -webkit-focus-ring-color;
33 } 33 }
34 34
35 input[type="checkbox"] { 35 input[type="checkbox"] {
36 height: 13px; 36 height: 13px;
37 width: 13px; 37 width: 13px;
38 margin: auto 3px; 38 margin: auto 3px;
39 flex-shrink: 0; 39 flex-shrink: 0;
40 } 40 }
41 41
42 label:hover {
43 cursor: pointer;
44 }
45
46 label:hover input {
47 box-shadow: 0 0 3px highlight;
48 }
49
50 fieldset[disabled] label:hover input {
51 box-shadow: none;
52 }
53
42 .fill { 54 .fill {
43 position: absolute; 55 position: absolute;
44 top: 0; 56 top: 0;
45 left: 0; 57 left: 0;
46 right: 0; 58 right: 0;
47 bottom: 0; 59 bottom: 0;
48 } 60 }
49 61
50 .view { 62 .view {
51 position: relative; 63 position: relative;
(...skipping 2782 matching lines...) Expand 10 before | Expand all | Expand 10 after
2834 } 2846 }
2835 2847
2836 .root-view > .split-view > .split-view-sidebar { 2848 .root-view > .split-view > .split-view-sidebar {
2837 position: relative; 2849 position: relative;
2838 } 2850 }
2839 2851
2840 select.drop-down-menu { 2852 select.drop-down-menu {
2841 border: none; 2853 border: none;
2842 -webkit-appearance: none; 2854 -webkit-appearance: none;
2843 } 2855 }
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