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

Command icon 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

Carlitus created an issue. See original summary.

damienmckenna’s picture

I 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...

carlitus’s picture

Ok, i'll do it asap

carlitus’s picture

damienmckenna’s picture

I think the technique shown in the stackoverflow post would be fine.

carlitus’s picture

ok, I think it was like that, let me know if I have to make any corrections.