PS active/passive Elements

by mtenschert

CSS

.your-bookings__person-name--selected {
  border-top-color : green;
  border-right-color : green;
  border-bottom-color : green;
  border-left-color : green;
  border-top-width : 2px;
  border-right-width : 2px;
  border-bottom-width : 2px;
  border-left-width : 2px;
}

.person-menu__person--active {
  border-top-color : green;
  border-right-color : green;
  border-bottom-color : green;
  border-left-color : green;
  border-top-width : 2px;
  border-right-width : 2px;
  border-bottom-width : 2px;
  border-left-width : 2px;
}

.person-menu__person {
  transition-duration : 0.3s;
  transition-timing-function : cubic-bezier(0.4, 0, 1, 1);
  transition-delay : 0.0s;
  transition-property : background;
}

.your-bookings__fold, .your-bookings__unfold {
  border-top-width : 2px;
  border-bottom-width : 2px;
  transition-duration : 0.3s;
  transition-timing-function : cubic-bezier(0.8, 0.12, 0.58, 1);
  transition-delay : 0.0s;
  transition-property : all;
}

.your-bookings__unfold.your-bookings__person-name--selected {
  border-top-color : green;
  border-bottom-color : green;
}