You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
325 B
Plaintext

9 months ago
/*
* 基本样式
*/
.hide {
display: none;
}
.show {
display: block;
}
.hoverClass {
opacity: 0.5 !important;
}
.hoverClass2 {
background-color: #f5f4f8;
}
/**超出部分显示为省略号**/
.text-nowrap {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}