Problem/Motivation
Running sonarqube we found this issue in views/css/views-admin.css, line 15.
Unexpected unknown property "padding-start"
I don't find the padding-start property in css, only -moz-padding-start and -webkit-padding-start.
Proposed resolution
I propose to eliminate this line.
Issue fork views-3367691
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
damienmckennaI believe the correct approach would be to replace the attribute with padding-left/padding-right with dir=ltr/dir=rtl:
https://stackoverflow.com/questions/12549591/webkit-padding-start-40px-w...
Comment #4
carlitus commentedOk, i'll do it asap
Comment #5
carlitus commentedAnd what about using padding-inline-start?
https://developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-start
Comment #6
damienmckennaI think the technique shown in the stackoverflow post would be fine.
Comment #7
carlitus commentedok, I think it was like that, let me know if I have to make any corrections.