v2.0 预发布版本
新增证照中心、认证标志管理、多站点兼容
29
assets/css/admin.css
Normal file
|
@ -0,0 +1,29 @@
|
|||
.wpicp-tabs .nav-tab {
|
||||
cursor: pointer;
|
||||
}
|
||||
.wpicp-tabs .nav-tab-active {
|
||||
background: #fff;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
.wpicp_certificate_row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 20px 0;
|
||||
}
|
||||
.wpicp_badge_row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 20px 0;
|
||||
}
|
||||
.tab-content {
|
||||
padding: 20px;
|
||||
border: 1px solid #ddd;
|
||||
background: #fff;
|
||||
}
|
||||
.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, h1.nav-tab-wrapper {
|
||||
border-bottom: 0px solid #c3c4c7;
|
||||
padding-top: 0px;
|
||||
}
|
||||
div#wpicp_preset_badges_container label {
|
||||
padding: 5px 0;
|
||||
}
|
BIN
assets/images/12315.jpg
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
assets/images/12377.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
assets/images/a11y.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/cac.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/cnca.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/cnipr.jpg
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/images/djbz.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
assets/images/dzjg.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
assets/images/dzyyzz.jpg
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
assets/images/ebs.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/images/gongan2.jpg
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/images/gxjs.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
assets/images/iso-27001.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
assets/images/iso-27018.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
assets/images/knet.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/kxwz.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/images/miit.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/piyao.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
assets/images/psb.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/sfdf.jpg
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
assets/images/sydw.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
assets/images/sz315.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/images/szcert.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/trustasia.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/wenming.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
assets/images/zfwzzc.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
9
assets/js/admin.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
jQuery(document).ready(function($) {
|
||||
$('.wpicp-tabs .nav-tab').on('click', function(e) {
|
||||
e.preventDefault();
|
||||
$('.wpicp-tabs .nav-tab').removeClass('nav-tab-active');
|
||||
$(this).addClass('nav-tab-active');
|
||||
$('.wpicp-tabs .tab-content').hide();
|
||||
$($(this).attr('href')).show();
|
||||
});
|
||||
});
|