| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <style>
- .profile-avatar-container {
- position: relative;
- width: 100px;
- margin: 0 auto;
- }
- .profile-avatar-container .profile-user-img {
- width: 100px;
- height: 100px;
- }
- .profile-avatar-container .profile-avatar-text {
- display: none;
- }
- .profile-avatar-container:hover .profile-avatar-text {
- display: block;
- position: absolute;
- height: 100px;
- width: 100px;
- background: #444;
- opacity: .6;
- color: #fff;
- top: 0;
- left: 0;
- line-height: 100px;
- text-align: center;
- }
- .profile-avatar-container button {
- position: absolute;
- top: 0;
- left: 0;
- width: 100px;
- height: 100px;
- opacity: 0;
- }
- </style>
- <div class="panel panel-default panel-intro panel-nav">
- <div class="panel-heading">
- <ul class="nav nav-tabs">
- <li class="active"><a href="#one" data-toggle="tab"><i class="fa fa-list"></i> {:__('收入明细')}</a></li>
- </ul>
- </div>
- <div class="panel-body">
- <div id="myTabContent" class="tab-content">
- <div class="tab-pane fade active in" id="one">
- <div class="widget-body no-padding">
- <div id="toolbar" class="toolbar">
- {:build_toolbar('refresh')}
- </div>
- <table id="table" class="table table-striped table-bordered table-hover" width="100%">
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|