| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <div ui-view class="sale-view view-slide-in"></div>
- <style>
- .rbar {
- opacity: 1;
- width: 80px;
- position: fixed;
- top: 50%;
- right: 0;
- color: #555;
- zoom: 1;
- z-index: 2;
- background-color: #969595;
- }
- .rbar a:hover {
- color: #fff;
- }
- .rbar a:hover,.rbar a:focus,.rbar a:active {
- text-decoration: none;
- }
- .rbar .item-wrap {
- padding-top: 15px;
- position: relative;
- cursor: pointer;
- text-align: center;
- font-family: "Microsoft YaHei", SimHei, "WenQuanYi Micro Hei", STHeiti;
- -webkit-transition: all 0.15s ease-in-out;
- -moz-transition: all 0.15s ease-in-out;
- transition: all 0.15s ease-in-out;
- }
- .rbar .item-inner {
- border-bottom: 1px solid #ffffff;
- width: 80px;
- display: block;
- color: #ffffff;
- }
- .rbar .item-wrap:hover {
- background-color: #6f6f6f;
- color: #fff;
- }
- .rbar .inner-text {
- padding: 10px 0 5px 0;
- margin: auto;
- text-align: center;
- display: block;
- }
- .item-inner .badge {
- padding: 3px 5px;
- margin-bottom: 5px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .item-wrap:hover .badge {
- background-color: #fff;
- color: #56a022;
- }
- .item-wrap .tip {
- position: absolute;
- opacity: 0;
- zoom: 1;
- right: -100px;
- top: 0;
- width: 100px;
- height: 100%;
- background-color: #494949;
- border-radius: 2px 0 0 2px;
- -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
- -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
- box-shadow: 0 0 5px rgba(0, 0, 0, .2);
- font-size: 12px;
- text-align: center;
- color: #fff;
- -webkit-transition: all 0.35s ease-in-out;
- -moz-transition: all 0.35s ease-in-out;
- transition: all 0.35s ease-in-out;
- z-index: 0;
- }
- .item-wrap .tip:after {
- position: absolute;
- content: '';
- top: 20%;
- right: -10px;
- width: 0;
- height: 0;
- font-size: 0;
- border: solid 5px;
- border-color: transparent transparent transparent #494949;
- }
- .item-wrap:hover .tip {
- opacity: 1;
- right: 80px;
- }
- .item-wrap .tip>ul {
- margin: 0;
- padding: 0;
- }
- .item-wrap .tip>ul>li {
- color: #fff;
- padding: 10px;
- border-bottom: 1px solid #f6f6f6;
- -webkit-transition: all 0.15s ease-in-out;
- -moz-transition: all 0.15s ease-in-out;
- transition: all 0.15s ease-in-out;
- }
- .item-wrap .tip>ul>li>a {
- color: #fff;
- }
- .item-wrap .tip>ul>li:hover {
- background-color: #6f6f6f;
- }
- .rbar .bar-bottom {
- position: relative;
- bottom: 0;
- left: 0;
- border-top: 1px solid #e3e3e3;
- }
- .bar-bottom .item-wrap:first-child .item-inner {
- border-top: 1px solid #f9f9f9;
- }
- .rbar .icon-left {
- margin: 8px 10px 0 0;
- float: left;
- width: 30%;
- }
- </style>
- <!-- right static-bar Start -->
- <div class="rbar">
- <div class="bar-center" ng-controller="TodoCtrl">
- <div class="item-wrap">
- <a class="item-inner" ui-sref="fa.arCheck"> <span
- class="inner-text">应付对账单</span> (<span class="text-inverse"
- ng-bind="todo.arCheckToConfirm"></span>)
- </a>
- </div>
- </div>
- </div>
- <!-- right static-bar End -->
|