Browse Source

添加text-trans样式,实现定位提示

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@1939 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
aof 10 years ago
parent
commit
291957683a
1 changed files with 22 additions and 1 deletions
  1. 22 1
      src/main/webapp/resources/css/index_mobile.css

+ 22 - 1
src/main/webapp/resources/css/index_mobile.css

@@ -242,4 +242,25 @@ a {
 	height: 66px;
 	height: 66px;
 }
 }
 
 
-
+.text-trans {
+	position: absolute;
+	top: 0;
+	right: 5px;
+	background-color: #fff;
+	border: 1px solid;
+	padding: 3px 14px;
+	font-size: 16px;
+	font-family: "LiShu";
+	border-radius: 10px;
+	-moz-transform: rotate(-10deg);
+	-webkit-transform: rotate(-10deg);
+	-o-transform: rotate(-10deg);
+	transform: rotate(-10deg);
+	border-radius: 10px;
+	opacity: 0.7;
+	white-space: nowrap;
+}
+.text-trans.success {
+	color: #ffb433;
+	border-color: #ffb433;
+}