|
|
@@ -65,3 +65,70 @@
|
|
|
color: #fff;
|
|
|
}
|
|
|
/*---------------------提示框样式 end---------------------*/
|
|
|
+
|
|
|
+/*---------------------提示浮层 start---------------------*/
|
|
|
+.com-supernatant-box{
|
|
|
+ max-width:360px;
|
|
|
+ opacity:.6;
|
|
|
+ border-radius:5px;
|
|
|
+}
|
|
|
+.com-supernatant-box div{
|
|
|
+ position:absolute;
|
|
|
+ top:59%;
|
|
|
+ left:50%;
|
|
|
+ width:100%;
|
|
|
+ transform:translate(-50%,-50%);
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+.com-supernatant-box .success{
|
|
|
+ background: #f00000;
|
|
|
+}
|
|
|
+.com-supernatant-box .defeat{
|
|
|
+ background: #5078cb;
|
|
|
+}
|
|
|
+/*-------------------------提示浮层 end--------------------*/
|
|
|
+
|
|
|
+/*------下拉选框的使用样式方法------------------------------*/
|
|
|
+/*
|
|
|
+<div class='com-select-option'>
|
|
|
+ <input id="classesType" ng-blur="onBlur()" ng-click="changeShowLogistics()" type="text" class="form-control" ng-model="message.classes" placeholder="请选择消息类型" readonly="true" >
|
|
|
+ <ul id="ulContent" ng-if="matchData && showContent" class="dropdown-menu">
|
|
|
+ <li ng-click="showText(classes)" ng-repeat="classes in resultList" ng-class="{'active': $index==selectIndex}" ng-bind="classes" ng-bind="message.classes"></li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+*/
|
|
|
+/*-------------------------下拉选框 start-------------- --*/
|
|
|
+.com-select-option {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.com-select-option>input {
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 190px;
|
|
|
+ margin-top: -2px;
|
|
|
+ background-color: white !important;
|
|
|
+ height: 30px;
|
|
|
+ background: url(static/img/index/xiala.png) no-repeat 167px 11px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.com-select-option .dropdown-menu{
|
|
|
+ top: 90%;
|
|
|
+ left: unset;
|
|
|
+ line-height: 30px;
|
|
|
+ max-height: 300px;
|
|
|
+ overflow-y: auto;
|
|
|
+ width: 190px;
|
|
|
+ display: block;
|
|
|
+ overflow-x: hidden;
|
|
|
+ border-radius: 2px;
|
|
|
+}
|
|
|
+.com-select-option .dropdown-menu li{
|
|
|
+ font-size: 14px;
|
|
|
+ cursor: pointer;
|
|
|
+ padding-left:10px;
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+.com-select-option .dropdown-menu li:hover, .dropdown-menu li.active{
|
|
|
+ color: #fff;
|
|
|
+ background: #5078cb;
|
|
|
+}
|
|
|
+/*-------------------------下拉选框 end--------------------*/
|