- 🇦🇹Austria klausi 🇦🇹 Vienna
Note that CSS support has been removed from Coder. To check and fix CSS files please use Stylelint and use the Drupal core .stylelintrc.json configuration file.
Testing command: phpcbf --standard=Drupal .
The following line:
.calculator-footer li span.return {float:left!important;width:100%!important;text-align:center!important;padding:0 0 20px 0;margin:0px;color:#FFF;font-size:80%!important;}
is changed into:
.calculator-footer li span.return {
float: left!important;
width: 100%!important;
text-align: center!important;
padding: 0 0 20px 0;
margin: 0px;
color: #fff;font-size:80%!important;
}
Which seems there is missing new line between color and font-size, as there is semi-colon there.
Also it's worth to add space before !important
?
Closed: won't fix
2.0
Coder Review
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Note that CSS support has been removed from Coder. To check and fix CSS files please use Stylelint and use the Drupal core .stylelintrc.json configuration file.