@common-prefix-cls: ~"@{css-prefix}common-node";

.@{common-prefix-cls} {
  width: 117px;
  height: 26px;
  background-color: #F2F7FF;
  border: 1px solid #A2AABD;
  border-radius: 2px;
  font-size: 12px;
  color: #333333;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;

  &-icon {
    float: left;
    color: #fff;
    font-size: 16px;
    background-color: #289de9;
    width: 26px;
    height: 26px;
    margin: 1px;
    border-radius: 100%;

    &:before{
      float: left;
      margin: 4px;
    }
  }

  &-name {
    float: left;
    width: 85px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  &-status {
    width: 14px;
    height: 14px;
    margin-left: 14px;
    margin-top: 4px;
    border-radius: 100%;
    // float: right;
    &:before{
      float: left;
      margin: 4px;
    }
  }
  &:hover {
    background-color: @node-select-color ;
  }
  &-isRunning {
    background: #A2D7FF;
  }
}
