样式


超出省略

overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;

滚动条修改

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #c7c7c7;
  &:hover {
    background-color: #888;
  }

禁用样式

.hasPower{
  color: #dddde3;
  cursor:not-allowed;
}