Title: [90136] trunk/Source/WebCore
- Revision
- 90136
- Author
- [email protected]
- Date
- 2011-06-30 11:22:00 -0700 (Thu, 30 Jun 2011)
Log Message
2011-06-30 Pavel Feldman <[email protected]>
Reviewed by Yury Semikhatsky.
Web Inspector: introduce "filter" icons for timeline panel and elements sidebar.
https://bugs.webkit.org/show_bug.cgi?id=63731
* inspector/front-end/EventListenersSidebarPane.js:
* inspector/front-end/Images/paneFilterButtons.png: Added.
* inspector/front-end/Images/statusbarButtonGlyphs.png:
* inspector/front-end/StylesSidebarPane.js:
* inspector/front-end/inspector.css:
(.pane > .title > select):
(.pane > .title > select.select-settings):
(.pane > .title > select.select-filter):
(.timeline-filter-status-bar-item .glyph):
Modified Paths
Added Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (90135 => 90136)
--- trunk/Source/WebCore/ChangeLog 2011-06-30 18:16:31 UTC (rev 90135)
+++ trunk/Source/WebCore/ChangeLog 2011-06-30 18:22:00 UTC (rev 90136)
@@ -1,3 +1,20 @@
+2011-06-30 Pavel Feldman <[email protected]>
+
+ Reviewed by Yury Semikhatsky.
+
+ Web Inspector: introduce "filter" icons for timeline panel and elements sidebar.
+ https://bugs.webkit.org/show_bug.cgi?id=63731
+
+ * inspector/front-end/EventListenersSidebarPane.js:
+ * inspector/front-end/Images/paneFilterButtons.png: Added.
+ * inspector/front-end/Images/statusbarButtonGlyphs.png:
+ * inspector/front-end/StylesSidebarPane.js:
+ * inspector/front-end/inspector.css:
+ (.pane > .title > select):
+ (.pane > .title > select.select-settings):
+ (.pane > .title > select.select-filter):
+ (.timeline-filter-status-bar-item .glyph):
+
2011-06-28 Hans Wennborg <[email protected]>
Reviewed by Tony Chang.
Modified: trunk/Source/WebCore/inspector/front-end/EventListenersSidebarPane.js (90135 => 90136)
--- trunk/Source/WebCore/inspector/front-end/EventListenersSidebarPane.js 2011-06-30 18:16:31 UTC (rev 90135)
+++ trunk/Source/WebCore/inspector/front-end/EventListenersSidebarPane.js 2011-06-30 18:22:00 UTC (rev 90136)
@@ -35,6 +35,7 @@
this.sections = [];
this.settingsSelectElement = document.createElement("select");
+ this.settingsSelectElement.className = "select-filter";
var option = document.createElement("option");
option.value = "all";
Added: trunk/Source/WebCore/inspector/front-end/Images/paneFilterButtons.png
(Binary files differ)
Property changes on: trunk/Source/WebCore/inspector/front-end/Images/paneFilterButtons.png
___________________________________________________________________
Added: svn:mime-type
Modified: trunk/Source/WebCore/inspector/front-end/Images/statusbarButtonGlyphs.png
(Binary files differ)
Modified: trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js (90135 => 90136)
--- trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js 2011-06-30 18:16:31 UTC (rev 90135)
+++ trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js 2011-06-30 18:22:00 UTC (rev 90136)
@@ -32,6 +32,7 @@
WebInspector.SidebarPane.call(this, WebInspector.UIString("Styles"));
this.settingsSelectElement = document.createElement("select");
+ this.settingsSelectElement.className = "select-settings";
var option = document.createElement("option");
option.value = "original";
Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (90135 => 90136)
--- trunk/Source/WebCore/inspector/front-end/inspector.css 2011-06-30 18:16:31 UTC (rev 90135)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css 2011-06-30 18:22:00 UTC (rev 90136)
@@ -1746,7 +1746,6 @@
color: transparent;
background-color: transparent;
border: none;
- background-image: url(Images/paneSettingsButtons.png);
background-repeat: no-repeat;
margin: 1px 0 0 0;
padding: 0;
@@ -1762,6 +1761,14 @@
background-position: -46px 0px;
}
+.pane > .title > select.select-settings {
+ background-image: url(Images/paneSettingsButtons.png);
+}
+
+.pane > .title > select.select-filter {
+ background-image: url(Images/paneFilterButtons.png);
+}
+
.pane > .title > select > option, .pane > .title > select > hr {
color: black;
}
@@ -4056,7 +4063,7 @@
}
.timeline-filter-status-bar-item .glyph {
- -webkit-mask-position: -224px 0;
+ -webkit-mask-position: -32px -48px;
}
.timeline-filter-status-bar-item.toggled-on .glyph {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes