Browse Source

退出登录页面样式调整。

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@8768 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
ouxianqin 9 years ago
parent
commit
3c95235eb5

+ 1 - 1
src/main/webapp/resources/css/index.css

@@ -2370,7 +2370,7 @@ ul>li.item-link>a {
 }
 
 .file {
-	color: #336699;
+	color: #3a89d1;
 	margin-right: 10px;
 }
 /*form valid*/

+ 29 - 4
src/main/webapp/resources/tpl/index/account/logout.html

@@ -8,16 +8,39 @@
 
 	.modal-title {
 		text-align: left;
-		font-size: 16px;
+		font-size: 14px;
 	}
 	.modal-body {
 		text-align: center;
 	}
 	.modal-body .tip-content{
 		font-size: 16px;
+		line-height: 55px;
+		margin-top: 5px;
 	}
 	.modal-body .btn {
-		margin: 40px;
+		margin: 0 10px;
+		width: 94px;
+		height: 36px;
+		font-size: 14px;
+		display: inline-block;
+		text-align: center;
+		border-radius: 0;
+	}
+	.modal-btn{
+		margin-top: 25px;
+	}
+	.modal-btn .btn-danger{
+		background: #5078cb;
+		border: #5078cb 1px solid;
+	}
+	.modal-btn .btn-default{
+		border: #5078cb 1px solid;
+		color: #5078cb;
+	}
+	.modal-btn .btn:hover{
+		background: #327ebe;
+		color: #fff;
 	}
 </style>
 <div class="modal-header">
@@ -27,6 +50,8 @@
 </div>
 <div class="modal-body">
 	<div class="tip-content">是否确认退出?</div>
-	<button class="btn btn-lg btn-danger" ng-click="close(true)">确认</button>
-	<button class="btn btn-lg btn-default" ng-click="close(false)" type="button">取消</button>
+	<div class="modal-btn">
+		<button class="btn btn-danger" ng-click="close(true)">确认</button>
+		<button class="btn btn-default" ng-click="close(false)" type="button">取消</button>
+	</div>
 </div>