Verified Commit 5c9cc420 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3409048 by finnsky, alexpott, longwave, bnjmnm, andypost, nod_:...

Issue #3409048 by finnsky, alexpott, longwave, bnjmnm, andypost, nod_: Configure postcss formatting after stylelint and stylelint-config-standard update
parent e21d4b50
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -442,6 +442,7 @@ default:
    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
      changes:
        - core/.stylelintrc.json
        - core/.prettier*
        - core/package.json
        - core/yarn.lock
        - "**/*.css"
+11 −1
Original line number Diff line number Diff line
@@ -2,5 +2,15 @@
  "printWidth": 80,
  "semi": true,
  "singleQuote": true,
  "trailingComma": "all"
  "trailingComma": "all",
  "overrides": [
    {
      "files": ["*.css"],
      "options": {
        "parser": "css",
        "printWidth": 10000,
        "singleQuote": false
      }
    }
  ]
}
+4 −1
Original line number Diff line number Diff line
{
  "extends": "stylelint-config-standard",
  "extends": [
    "stylelint-config-standard",
    "stylelint-prettier/recommended"
  ],
  "plugins": [
    "stylelint-order"
  ],
+4 −1
Original line number Diff line number Diff line
@@ -34,7 +34,10 @@ body.js-off-canvas-dialog-open {

/* This is a page level content wrapper that shrinks when off-canvas is open. */
.dialog-off-canvas-main-canvas {
  transition: padding-right 0.7s ease, padding-left 0.7s ease, padding-top 0.3s ease;
  transition:
    padding-right 0.7s ease,
    padding-left 0.7s ease,
    padding-top 0.3s ease;

  @media (prefers-reduced-motion: reduce) {
    transition: none;
+0 −1
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@
 */

#drupal-off-canvas-wrapper {

  & .ui-dialog-titlebar.announce-titlebar::before {
    -webkit-mask-image: url("../images/announcement-bell.svg");
    mask-image: url("../images/announcement-bell.svg");
Loading