Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #58979, comment 2


Ignore:
Timestamp:
08/04/2023 10:27:33 AM (2 years ago)
Author:
huzaifaalmesbah
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #58979, comment 2

    initial v1  
    1 You've raised a valid point. I believe that displaying the scale button as a block would be beneficial.
     1You've raised a valid point. I think showing the scale button as a block element would be advantageous. The main problem lies in the "imgedit-settings" class, where the max-width is set to 400px. If we change it to 250px, the issue will be resolved.
     2
     3
     4
     5{{{
     6.imgedit-settings {
     7    max-width: 250px;
     8}
     9
     10.image-editor .imgedit-scale-controls .button {
     11    margin-top: 0.3077em;
     12    display: block;
     13}
     14
     15}}}