Title: [188749] trunk/Source/WebInspectorUI
Revision
188749
Author
[email protected]
Date
2015-08-20 21:19:53 -0700 (Thu, 20 Aug 2015)

Log Message

Web Inspector: inline errors/warnings are taller than the line height
https://bugs.webkit.org/show_bug.cgi?id=148232

Reviewed by Timothy Hatcher.

* UserInterface/Views/SourceCodeTextEditor.css:
(.source-code.text-editor > .CodeMirror .issue-widget.inline):
(.source-code.text-editor > .CodeMirror .issue-widget.inline > .text):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (188748 => 188749)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-08-21 04:18:43 UTC (rev 188748)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-08-21 04:19:53 UTC (rev 188749)
@@ -1,3 +1,14 @@
+2015-08-20  Nikita Vasilyev  <[email protected]>
+
+        Web Inspector: inline errors/warnings are taller than the line height
+        https://bugs.webkit.org/show_bug.cgi?id=148232
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/SourceCodeTextEditor.css:
+        (.source-code.text-editor > .CodeMirror .issue-widget.inline):
+        (.source-code.text-editor > .CodeMirror .issue-widget.inline > .text):
+
 2015-08-20  Joseph Pecoraro  <[email protected]>
 
         JSContext Inspector: Uncaught Exception opening Search Tab

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.css (188748 => 188749)


--- trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.css	2015-08-21 04:18:43 UTC (rev 188748)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.css	2015-08-21 04:19:53 UTC (rev 188749)
@@ -46,7 +46,7 @@
 .source-code.text-editor > .CodeMirror .issue-widget.inline {
     position: relative;
     top: -13px;
-
+    height: 13px;
     padding: 0px 5px 0 3px;
     border-bottom-left-radius: 0;
 }
@@ -117,14 +117,10 @@
 
 .source-code.text-editor > .CodeMirror .issue-widget.inline > .text {
     display: inline-block;
-
     max-width: 300px;
-    height: 12px;
-    padding-top: 1px;
-
+    vertical-align: baseline;
     text-overflow: ellipsis;
     white-space: nowrap;
-    overflow: hidden;
 }
 
 .popover .debugger-popover-content {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to