// 表格内超长字段
//存在一个小小的问题。在火狐浏览器下 当文本内容中有空格  && display 不为block时。 该效果失效
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pointer {
  cursor: pointer;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
//常规形态的lh-condition-item
.lh-condition-text {
  font-size:14px;
  margin-right: 7px;
  color:@color_b3;
  display: inline-block;
}
.lh-condition-item {
  height: 40px;
  padding-top: 2px;
}
//这段样式只会在火狐firefox下生效。之前遇到过一个BUG。就是edge浏览器既能让scrollbar-width生效 又能让 webkit-scrollbar生效。神奇TM的
@-moz-document url-prefix() {
  .lh-scroll-common {
    scrollbar-color:  @color_b5 transparent;  /* 第一个方块颜色，第二个轨道颜色(用于更改火狐浏览器样式) */
    scrollbar-width: thin;  /* 火狐滚动条无法自定义宽度，只能通过此属性使滚动条宽度变细 */
  }
}
//通用滚动条样式，你懂的
.lh-scroll-common::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.lh-scroll-common::-webkit-scrollbar-thumb  {
  -webkit-box-shadow: inset 0 0 5px @color_b5;
  background-color:  @color_b5;
}
.lh-scroll-common::-webkit-scrollbar-track  {
  -webkit-box-shadow: inset 0 0 5px transparent;
  border-radius: 0;
  background-color: transparent;
}
.lh-number-fontFamily {
  font-family: Roboto,Helvetica Neue,Helvetica,Arial,pingfang sc,Hiragino Sans GB,Microsoft YaHei,STHeiti,SimSun,sans-serif;
}

