joeyjiron06 / intellij-auto-align

A code formatter intellij plugin
0 stars 2 forks source link

css state selectors get ruined upon alignment #4

Closed joeyjiron06 closed 8 years ago

joeyjiron06 commented 8 years ago

original

.dev-summary.possible-hero-tile:hover .dev-cover-image {
  transition-delay : 350ms;
  transition: all 1750ms ease-in-out;
  transform: translate(45px, 25px) scale(1.5);
}

expected

.dev-summary.possible-hero-tile:hover .dev-cover-image {
  transition-delay    : 350ms;
  transition          : all 1750ms ease-in-out;
  transform           : translate(45px, 25px) scale(1.5);
}

actual

.dev-summary.possible-hero-tile    : hover .dev-cover-image {
  transition-delay                 : 350ms;
  transition                       : all 1750ms ease-in-out;
  transform                        : translate(45px, 25px) scale(1.5);
}
joeyjiron06 commented 8 years ago

fixed in the latest