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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/components/breakpointsList.css

Issue 2656823004: DevTools: Move checkbox title element into Shadow DOM (Closed)
Patch Set: Created 3 years, 10 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
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 20 matching lines...) Expand all
31 padding: 3px 8px 3px 8px; 31 padding: 3px 8px 3px 8px;
32 min-height: 18px; 32 min-height: 18px;
33 line-height: 15px; 33 line-height: 15px;
34 border-top: 1px solid #efefef; 34 border-top: 1px solid #efefef;
35 } 35 }
36 36
37 .breakpoint-entry [is=dt-checkbox] { 37 .breakpoint-entry [is=dt-checkbox] {
38 max-width: 100%; 38 max-width: 100%;
39 } 39 }
40 40
41 .breakpoint-entry .dt-checkbox-text { 41 .breakpoint-entry label {
42 text-overflow: ellipsis; 42 white-space: nowrap;
43 overflow: hidden;
44 white-space: nowrap;
45 } 43 }
46 44
47 :not(.breakpoints-list-deactivated) > .breakpoint-entry:hover { 45 :not(.breakpoints-list-deactivated) > .breakpoint-entry:hover {
48 background-color: #eee; 46 background-color: #eee;
49 } 47 }
50 48
51 .breakpoint-entry > .source-text { 49 .breakpoint-entry > .source-text {
52 cursor: pointer; 50 cursor: pointer;
53 text-overflow: ellipsis; 51 text-overflow: ellipsis;
54 overflow: hidden; 52 overflow: hidden;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 } 130 }
133 131
134 .dom-breakpoints-list > li { 132 .dom-breakpoints-list > li {
135 display: flex; 133 display: flex;
136 } 134 }
137 135
138 .dom-breakpoints-list .dom-breakpoint > div { 136 .dom-breakpoints-list .dom-breakpoint > div {
139 overflow: hidden; 137 overflow: hidden;
140 text-overflow: ellipsis; 138 text-overflow: ellipsis;
141 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698