.dlgActions_column {
  display: inline-block;
  vertical-align: top;
}
.dlgActions_column-types {
  width: 146px;
  height: 100%;
}
.dlgActions_column-params {
  position: relative;
  overflow: hidden;
  width: 338px;
  height: 192px;
  box-sizing: border-box;
  padding: 4px;
  background-color: var(--gray-e);
}

.actionType {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.actionType:hover {
  border-color: var(--gray-8);
}
.actionType-selected {
  background-color: var(--gray-e);
}
.actionType:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.actionType-selected:before {
  background-color: var(--activeLED);
}
