Title: [146849] trunk/Source/WebCore
- Revision
- 146849
- Author
- [email protected]
- Date
- 2013-03-25 21:51:35 -0700 (Mon, 25 Mar 2013)
Log Message
Web Inspector: [Timeline] Records sidebar is clipped.
https://bugs.webkit.org/show_bug.cgi?id=113177
Reviewed by Pavel Feldman.
Analysis: depending on CSS injection order sidebar rule that overwrites
"bottom" property may win.
Fix: make timeline-specific rule "important".
* inspector/front-end/timelinePanel.css:
(.timeline .sidebar): Make "bottom" value "important".
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (146848 => 146849)
--- trunk/Source/WebCore/ChangeLog 2013-03-26 04:04:02 UTC (rev 146848)
+++ trunk/Source/WebCore/ChangeLog 2013-03-26 04:51:35 UTC (rev 146849)
@@ -1,3 +1,18 @@
+2013-03-25 Eugene Klyuchnikov <[email protected]>
+
+ Web Inspector: [Timeline] Records sidebar is clipped.
+ https://bugs.webkit.org/show_bug.cgi?id=113177
+
+ Reviewed by Pavel Feldman.
+
+ Analysis: depending on CSS injection order sidebar rule that overwrites
+ "bottom" property may win.
+
+ Fix: make timeline-specific rule "important".
+
+ * inspector/front-end/timelinePanel.css:
+ (.timeline .sidebar): Make "bottom" value "important".
+
2013-03-25 Kent Tamura <[email protected]>
Rename ENABLE_INPUT_TYPE_DATETIME
Modified: trunk/Source/WebCore/inspector/front-end/timelinePanel.css (146848 => 146849)
--- trunk/Source/WebCore/inspector/front-end/timelinePanel.css 2013-03-26 04:04:02 UTC (rev 146848)
+++ trunk/Source/WebCore/inspector/front-end/timelinePanel.css 2013-03-26 04:51:35 UTC (rev 146849)
@@ -42,7 +42,7 @@
.timeline .sidebar {
overflow-y: hidden;
min-height: 100%;
- bottom: auto;
+ bottom: auto !important;
}
.timeline.split-view-vertical .split-view-resizer {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes