Title: [271528] trunk/Source/WebInspectorUI
- Revision
- 271528
- Author
- [email protected]
- Date
- 2021-01-15 12:22:41 -0800 (Fri, 15 Jan 2021)
Log Message
Web Inspector: Font Details sidebar - Improve line wrapping of table row titles when space is available
https://bugs.webkit.org/show_bug.cgi?id=219997
Reviewed by Devin Rousso.
Adjust the width of the title in each row to 105px, which provides space for both `Historical Figures` which is
an always-present row and `Optical Size (opsz)` which is a registed variation axis and is used in numerous
fonts including San Francisco. This overrides the normal fixed width of these titles of 85px, which causes these
and numerous other unregistered axis names and tags to wrap their title more aggresively than is stricly
necessary.
* UserInterface/Views/FontDetailsPanel.css:
(.sidebar > .panel.details.style-font > .content .details-section > .content > .group > .row.simple > .label):
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (271527 => 271528)
--- trunk/Source/WebInspectorUI/ChangeLog 2021-01-15 20:08:20 UTC (rev 271527)
+++ trunk/Source/WebInspectorUI/ChangeLog 2021-01-15 20:22:41 UTC (rev 271528)
@@ -1,3 +1,19 @@
+2021-01-15 Patrick Angle <[email protected]>
+
+ Web Inspector: Font Details sidebar - Improve line wrapping of table row titles when space is available
+ https://bugs.webkit.org/show_bug.cgi?id=219997
+
+ Reviewed by Devin Rousso.
+
+ Adjust the width of the title in each row to 105px, which provides space for both `Historical Figures` which is
+ an always-present row and `Optical Size (opsz)` which is a registed variation axis and is used in numerous
+ fonts including San Francisco. This overrides the normal fixed width of these titles of 85px, which causes these
+ and numerous other unregistered axis names and tags to wrap their title more aggresively than is stricly
+ necessary.
+
+ * UserInterface/Views/FontDetailsPanel.css:
+ (.sidebar > .panel.details.style-font > .content .details-section > .content > .group > .row.simple > .label):
+
2021-01-13 Ebrahim Byagowi <[email protected]>
Web Inspector: RTL content inside elements is reversed and unreadable
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.css (271527 => 271528)
--- trunk/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.css 2021-01-15 20:08:20 UTC (rev 271527)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/FontDetailsPanel.css 2021-01-15 20:22:41 UTC (rev 271528)
@@ -23,6 +23,10 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+.sidebar > .panel.details.style-font > .content .details-section > .content > .group > .row.simple > .label {
+ width: 105px; /* Width of `Historical Figures` or `Optical Size (opsz)`. */
+}
+
.sidebar > .panel.details.style-font > .content .details-section > .content > .group > .row.simple > .value .secondary {
color: var(--text-color-secondary);
word-break: normal;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes