Procházet zdrojové kódy

新增公共样式

huangtao před 4 roky
rodič
revize
2ea9569332
1 změnil soubory, kde provedl 27 přidání a 0 odebrání
  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;
 }