.statusIcon {
    position: relative;
	display: inline-block;
    float: right;
    font-size: 12px;
    line-height: 20px;
    padding: 3px 12px;
    box-sizing: border-box;
    text-align: center;
    max-width: 108px;
    min-width: 80px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #3296FA; // S2
}

.outstand {
  color: #1695f0;
}

.rowbuttongroup .statusIcon:after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 200%;
   height: 200%;
   border-radius: 8px;
   border: 1px solid #3296FA; // S2
   -webkit-transform-origin: 0 0;
   -moz-transform-origin: 0 0;
   -ms-transform-origin: 0 0;
   -o-transform-origin: 0 0;
   transform-origin: 0 0;
   -webkit-transform: scale(0.5, 0.5);
   -ms-transform: scale(0.5, 0.5);
   -o-transform: scale(0.5, 0.5);
   transform: scale(0.5, 0.5);
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}

.rowbuttongroup .outstand:after {
   border: 1px solid #a5d1f0;
}
.statusIcon.more {
    width: 52px;
    max-width: 52px;
    min-width: 52px;
    text-overflow: clip;
    box-sizing: border-box;
}

.statusIcon:nth-child(2) {
	margin: 0 8px;
}

.statusIcon:active {
  color: #1381F0;
  background: #fff;
  border-radius: 0;
}
.statusIcon:active:after{
  border: 1px solid #1381F0;
  border-radius: 8px;
}