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

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

Issue 2491983002: [DevTools] reworked JavaScriptBreakpointsSidebarPane.js (Closed)
Patch Set: labal :( Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/components/breakpointsList.css
diff --git a/third_party/WebKit/Source/devtools/front_end/components/breakpointsList.css b/third_party/WebKit/Source/devtools/front_end/components/breakpointsList.css
index 584a268976fc2fcf0cc1d542715a57dace049a29..5910b47dfa6727324244c46b9d394bebd169a483 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/breakpointsList.css
+++ b/third_party/WebKit/Source/devtools/front_end/components/breakpointsList.css
@@ -27,6 +27,34 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+.breakpoint-entry {
+ padding: 3px 8px 3px 8px;
+ min-height: 18px;
+ line-height: 15px;
+ border-top: 1px solid #efefef;
+}
+
+.breakpoint-entry [is=dt-checkbox] {
+ max-width: 100%;
+}
+
+.breakpoint-entry .dt-checkbox-text {
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+:not(.breakpoints-list-deactivated) > .breakpoint-entry:hover {
+ background-color: #eee;
+}
+
+.breakpoint-entry > .source-text {
+ cursor: pointer;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
.breakpoint-condition {
display: block;
margin-top: 4px;

Powered by Google App Engine
This is Rietveld 408576698