index.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <link href="{:$site['cdnurl']}/assets/css/wechat/menu.css?v={:$site['version']}" rel="stylesheet">
  2. <style type="text/css">
  3. .cover_img{
  4. position: relative;
  5. left: 0;
  6. top: 0;
  7. cursor: pointer;
  8. }
  9. .cover_img span{
  10. display: none;
  11. position: absolute;
  12. left: 98%;
  13. top: -120px;
  14. width: 200px;
  15. height: 267px;
  16. }
  17. .cover_img:hover span{
  18. display: block;
  19. }
  20. .cover_img span img{
  21. display: block;
  22. border: 0;
  23. margin: 0;
  24. padding: 0;
  25. width: 100%;
  26. height: 100%;
  27. }
  28. div.fixed-table-body{
  29. overflow: inherit;
  30. }
  31. .fixed-table-body .card-view .title{
  32. padding: 6px 10px;
  33. width: 40%;
  34. box-sizing: border-box;
  35. vertical-align: middle;
  36. line-height: 20px;
  37. }
  38. .fixed-table-body .card-view .value{
  39. padding: 6px 10px;
  40. display: inline-block;
  41. width: 60%;
  42. box-sizing: border-box;
  43. vertical-align: middle;
  44. line-height: 20px;
  45. }
  46. i{
  47. font-style: normal;
  48. }
  49. .card-view{
  50. background-color: #fff;
  51. margin-bottom: 1px;
  52. }
  53. </style>
  54. <div class="panel panel-default panel-intro">
  55. {:build_heading()}
  56. <div class="panel-body">
  57. <div id="myTabContent" class="tab-content">
  58. <div class="tab-pane fade active in" id="one">
  59. <div class="widget-body no-padding">
  60. <div id="toolbar" class="toolbar">
  61. {:build_toolbar('refresh')}
  62. <a href="javascript:" class="btn btn-success btn-add" title="添加"><i class="fa fa-plus"></i> 添加</a>
  63. <a href="javascript:" class="btn btn-success refresh-redis" title="{:__('刷新缓存')}" ><i class="fa fa-refresh"></i> {:__('刷新缓存')}</a>
  64. </div>
  65. <table id="table" class="table table-striped table-bordered table-hover"
  66. data-operate-del="{:$auth->check('domain/blacklist/del')}"
  67. width="100%">
  68. </table>
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </div>