⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 248311 in webkit


Ignore:
Timestamp:
Aug 6, 2019, 1:33:16 PM (7 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: RTL: go-to arrows and expand triangles in Computed panel should match their context
https://bugs.webkit.org/show_bug.cgi?id=200449

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/ComputedStyleSection.css:

(body[dir=rtl] .computed-style-section .computed-property-item .disclosure-button): Deleted.

  • UserInterface/Views/Main.css:

(body[dir=rtl] [dir=ltr] .go-to-arrow): Added.
In the RTL mode, LTR "islands" should have their contents to be still LTR.

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r248289 r248311  
     12019-08-06  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: RTL: go-to arrows and expand triangles in Computed panel should match their context
     4        https://bugs.webkit.org/show_bug.cgi?id=200449
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * UserInterface/Views/ComputedStyleSection.css:
     9        (body[dir=rtl] .computed-style-section .computed-property-item .disclosure-button): Deleted.
     10
     11        * UserInterface/Views/Main.css:
     12        (body[dir=rtl] [dir=ltr] .go-to-arrow): Added.
     13        In the RTL mode, LTR "islands" should have their contents to be still LTR.
     14
    1152019-08-05  Devin Rousso  <drousso@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Views/ComputedStyleSection.css

    r243352 r248311  
    6363    background-size: 13px 13px;
    6464    -webkit-appearance: none;
    65 }
    66 
    67 body[dir=rtl] .computed-style-section .computed-property-item .disclosure-button {
    68     transform: scaleX(-1);
    6965}
    7066
  • trunk/Source/WebInspectorUI/UserInterface/Views/Main.css

    r247928 r248311  
    291291}
    292292
     293body[dir=rtl] [dir=ltr] .go-to-arrow {
     294    transform: revert;
     295}
     296
    293297:focus .selected .go-to-arrow {
    294298    background-image: url(../Images/GoToArrow.svg#selected);
Note: See TracChangeset for help on using the changeset viewer.