Browse Source

新增公共样式

huangtao 4 năm trước cách đây
mục cha
commit
2ea9569332
1 tập tin đã thay đổi với 27 bổ sung0 xóa
  1. 27 0
      src/assets/css/common.less

+ 27 - 0
src/assets/css/common.less

@@ -24,6 +24,33 @@
   background-color: #555;
 }
 
+// 超行省略一行
+.line_number1 {
+  display: -webkit-box !important;
+  -webkit-box-orient: vertical !important;
+  -webkit-line-clamp: 1 !important;
+  overflow: hidden !important;
+  text-overflow: ellipsis !important;
+}
+
+// 超行省略二行
+.line_number2 {
+  display: -webkit-box !important;
+  -webkit-box-orient: vertical !important;
+  -webkit-line-clamp: 2 !important;
+  overflow: hidden !important;
+  text-overflow: ellipsis !important;
+}
+
+// 超行省略三行
+.line_number3 {
+  display: -webkit-box !important;
+  -webkit-box-orient: vertical !important;
+  -webkit-line-clamp: 3 !important;
+  overflow: hidden !important;
+  text-overflow: ellipsis !important;
+}
+
 .iconFont {
   font-size: 20px;
 }