1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <link href="{:$site['cdnurl']}/assets/css/wechat/menu.css?v={:$site['version']}" rel="stylesheet">
- <style type="text/css">
- .cover_img{
- position: relative;
- left: 0;
- top: 0;
- cursor: pointer;
- }
- .cover_img span{
- display: none;
- position: absolute;
- left: 98%;
- top: -120px;
- width: 200px;
- height: 267px;
- }
- .cover_img:hover span{
- display: block;
- }
- .cover_img span img{
- display: block;
- border: 0;
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- div.fixed-table-body{
- overflow: inherit;
- }
- .fixed-table-body .card-view .title{
- padding: 6px 10px;
- width: 40%;
- box-sizing: border-box;
- vertical-align: middle;
- line-height: 20px;
- }
- .fixed-table-body .card-view .value{
- padding: 6px 10px;
- display: inline-block;
- width: 60%;
- box-sizing: border-box;
- vertical-align: middle;
- line-height: 20px;
- }
- i{
- font-style: normal;
- }
- .card-view{
- background-color: #fff;
- margin-bottom: 1px;
- }
- </style>
- <div class="panel panel-default panel-intro">
- {:build_heading()}
- <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')}
- <a href="javascript:" class="btn btn-success btn-add" title="添加"><i class="fa fa-plus"></i> 添加</a>
- <a href="javascript:" class="btn btn-success refresh-redis" title="{:__('刷新缓存')}" ><i class="fa fa-refresh"></i> {:__('刷新缓存')}</a>
- </div>
- <table id="table" class="table table-striped table-bordered table-hover"
- data-operate-del="{:$auth->check('domain/blacklist/del')}"
- width="100%">
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|