VK All in One Expansion Unit - Version 9.80.0.0

Version Description

[ Add Function ] Add CTA Block. [ Other ] Update admin setting page library 2.5.0

Download this release

Release Info

Developer kurudrive
Plugin Icon 128x128 VK All in One Expansion Unit
Version 9.80.0.0
Comparing to
See all releases

Code changes from version 9.79.0.0 to 9.80.0.0

admin/vk-admin/package/_scss/vk_admin.scss CHANGED
@@ -5,41 +5,51 @@
5
  /*-------------------------------------------*/
6
  .vk_admin_page {
7
  --vk-admin-layout-gap: 30px;
 
 
 
 
 
8
 
9
- .adminLayout {
10
  display: grid;
11
- grid-template-columns: 70% 1fr;
12
  gap: var(--vk-admin-layout-gap);
13
  }
14
 
15
- .adminMain {
16
- display: grid;
 
 
 
17
 
18
- #adminContent_sub {
19
- padding-bottom: 10px;
20
- flex-basis: 25%;
 
21
 
22
- .vk_option_nav {
23
- position: sticky;
24
- top: 50px;
25
- bottom: 30px;
26
- }
27
- }
28
 
29
- &.column_2 {
30
- #adminContent_main {
31
- width: 100%;
32
- }
33
  }
34
 
35
- &.column_3 {
36
- grid-template-columns: 1fr 70%;
37
- gap: var(--vk-admin-layout-gap);
 
 
 
 
 
38
  }
39
  }
40
  }
41
 
42
-
43
  /*-------------------------------------------*/
44
  /* common
45
  /*-------------------------------------------*/
5
  /*-------------------------------------------*/
6
  .vk_admin_page {
7
  --vk-admin-layout-gap: 30px;
8
+ }
9
+
10
+ .adminLayout {
11
+ display: grid;
12
+ gap: var(--vk-admin-layout-gap);
13
 
14
+ .adminMain {
15
  display: grid;
 
16
  gap: var(--vk-admin-layout-gap);
17
  }
18
 
19
+ @media (min-width: 992px) {
20
+ .adminMain.column_3 {
21
+ grid-template-columns: 240px auto;
22
+ }
23
+ }
24
 
25
+ @media (min-width: 1400px) {
26
+ grid-template-columns: auto 300px;
27
+ }
28
+ }
29
 
30
+ /*-------------------------------------------*/
31
+ /* サイドバーの固定処理
32
+ /*-------------------------------------------*/
33
+ .adminLayout {
 
 
34
 
35
+ @media (min-width: 992px) {
36
+ .adminMain_sub_inner {
37
+ position: sticky;
38
+ top: 30px;
39
  }
40
 
41
+ }
42
+
43
+ @media (min-width: 1400px) {
44
+ align-items: end; // end 指定しないと下端吸着しない
45
+
46
+ .adminSub {
47
+ position: sticky;
48
+ bottom: 30px;
49
  }
50
  }
51
  }
52
 
 
53
  /*-------------------------------------------*/
54
  /* common
55
  /*-------------------------------------------*/
admin/vk-admin/package/class-vk-admin.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
-
3
  /*
4
  このファイルの元ファイルは
5
  https://github.com/vektor-inc/vektor-wp-libraries
@@ -11,13 +10,13 @@ https://github.com/vektor-inc/vektor-wp-libraries
11
 
12
  if ( ! class_exists( 'Vk_Admin' ) ) {
13
  /*
14
- congif.phpの方で既に ! class_exists( 'Vk_Admin' ) しているが、
15
  今後読み込みファイルが増えた時にVk-Adminの中で別のファイルを読み込むために
16
  このファイルにも更にclass_exists( 'Vk_Admin' ) がある。
17
  */
18
  class Vk_Admin {
19
 
20
- public static $version = '2.4.0';
21
 
22
  static function init() {
23
  add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_common_css' ) );
@@ -407,11 +406,13 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
407
  return;
408
  }
409
  $adminSub = '<div class="adminSub">' . "\n";
 
410
  if ( 'ja' == get_locale() ) {
411
  $adminSub .= '<div class="infoBox">' . self::get_news_body() . '</div>' . "\n";
412
  }
413
  $adminSub .= '<div class="vk-admin-banner">' . self::get_admin_banner() . '</div>' . "\n";
414
 
 
415
  $adminSub .= '</div><!-- [ /.adminSub ] -->' . "\n";
416
  return $adminSub;
417
  }
@@ -434,14 +435,16 @@ if ( ! class_exists( 'Vk_Admin' ) ) {
434
 
435
  <?php if ( $get_layout == 'column_3' ) : ?>
436
  <div id="adminContent_sub" class="scrTracking adminMain_sub">
437
- <div class="pageLogo"><?php echo $get_logo_html; ?></div>
438
- <?php if ( $get_page_title ) : ?>
439
- <h2 class="page_title"><?php echo $get_page_title; ?></h2>
440
- <?php endif; ?>
441
- <div class="vk_option_nav">
442
- <ul>
443
- <?php echo $get_menu_html; ?>
444
- </ul>
 
 
445
  </div>
446
  </div><!-- [ /#adminContent_sub ] -->
447
  <?php endif; ?>
1
  <?php
 
2
  /*
3
  このファイルの元ファイルは
4
  https://github.com/vektor-inc/vektor-wp-libraries
10
 
11
  if ( ! class_exists( 'Vk_Admin' ) ) {
12
  /*
13
+ congif.phpの方で既に ! class_exists( 'Vk_Admin' ) しているが
14
  今後読み込みファイルが増えた時にVk-Adminの中で別のファイルを読み込むために
15
  このファイルにも更にclass_exists( 'Vk_Admin' ) がある。
16
  */
17
  class Vk_Admin {
18
 
19
+ public static $version = '2.5.0';
20
 
21
  static function init() {
22
  add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_common_css' ) );
406
  return;
407
  }
408
  $adminSub = '<div class="adminSub">' . "\n";
409
+ $adminSub .= '<div class="adminSub_inner">' . "\n";
410
  if ( 'ja' == get_locale() ) {
411
  $adminSub .= '<div class="infoBox">' . self::get_news_body() . '</div>' . "\n";
412
  }
413
  $adminSub .= '<div class="vk-admin-banner">' . self::get_admin_banner() . '</div>' . "\n";
414
 
415
+ $adminSub .= '</div><!-- [ /.adminSub_inner ] -->' . "\n";
416
  $adminSub .= '</div><!-- [ /.adminSub ] -->' . "\n";
417
  return $adminSub;
418
  }
435
 
436
  <?php if ( $get_layout == 'column_3' ) : ?>
437
  <div id="adminContent_sub" class="scrTracking adminMain_sub">
438
+ <div class="adminMain_sub_inner">
439
+ <div class="pageLogo"><?php echo $get_logo_html; ?></div>
440
+ <?php if ( $get_page_title ) : ?>
441
+ <h2 class="page_title"><?php echo $get_page_title; ?></h2>
442
+ <?php endif; ?>
443
+ <div class="vk_option_nav">
444
+ <ul>
445
+ <?php echo $get_menu_html; ?>
446
+ </ul>
447
+ </div>
448
  </div>
449
  </div><!-- [ /#adminContent_sub ] -->
450
  <?php endif; ?>
admin/vk-admin/package/css/vk_admin.css CHANGED
@@ -1 +1 @@
1
- .vk_admin_page{--vk-admin-layout-gap:30px}.vk_admin_page .adminLayout{display:grid;grid-template-columns:70% 1fr;gap:var(--vk-admin-layout-gap)}.vk_admin_page .adminMain{display:grid}.vk_admin_page .adminMain #adminContent_sub{padding-bottom:10px;flex-basis:25%}.vk_admin_page .adminMain #adminContent_sub .vk_option_nav{position:sticky;top:50px;bottom:30px}.vk_admin_page .adminMain.column_2 #adminContent_main{width:100%}.vk_admin_page .adminMain.column_3{grid-template-columns:1fr 70%;gap:var(--vk-admin-layout-gap)}body{margin:0}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-warning{color:#a94442}#dashboard-widgets .vk-metabox-sub-title,.vk-metabox-sub-title{display:block;overflow:hidden;border-bottom:1px solid #e5e5e5;margin-top:1em;padding-bottom:.3em}#dashboard-widgets .vk-metabox-sub-title .dashicons,.vk-metabox-sub-title .dashicons{position:relative;top:-2px;margin-left:3px}.vk-metabox-more-link{float:right;font-size:12px}.vk-metabox-post-list{margin-bottom:2em}.vk-metabox-post-list li{border-bottom:1px dotted #ccc;padding-bottom:3px;display:flex}.vk-metabox-post-list li .date{font-size:11px;margin-right:1em;width:75px;white-space:nowrap}.vk-metabox-post-list li a{width:100%}.vk-admin-banner{display:block;overflow:hidden}.vk-admin-banner a.admin_banner{display:block;margin-bottom:1em;border:1px solid #ccc;box-shadow:inset 0 0 0 1px #fff}.vk-admin-banner a.admin_banner img{max-width:100%;height:auto;display:block}.vk-admin-banner a.admin_banner img:hover{opacity:.7}.vk-admin-banner .vektor_logo{margin-top:1em}.vk-admin-banner .vektor_logo img{width:150px;float:right}#vk_dashboard_widget .vk-admin-banner-grid{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}#vk_dashboard_widget .vk-admin-banner-grid a.admin_banner{width:48%}.wp-core-ui .button-block{display:block;width:100%;text-align:center}.logo_exUnit{display:block;overflow:hidden;text-align:center;margin-bottom:10px;border-bottom:1px solid #ccc}.logo_exUnit img{width:150px;max-width:100%}.vk_option_nav{display:block!important;overflow:hidden}.vk_option_nav ul{display:block;overflow:hidden;margin:0;padding:0}.vk_option_nav ul li{display:block;border:1px solid #ccc;margin-bottom:0;border-bottom:none;background-color:#fff}.vk_option_nav ul li:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.vk_option_nav ul li:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom:1px solid #ccc}.vk_option_nav ul li:hover{background-color:#666}.vk_option_nav ul li a{display:block;overflow:hidden;padding:.5em;text-decoration:none;color:#666;font-size:12px}.vk_option_nav ul li:hover a{color:#fff;border:none}.vk_option_nav ul li.current{background-color:#333;color:#fff}.vk_option_nav ul li.current a{color:#fff}.vk_admin_page{padding-top:1em}.vk_admin_page li,.vk_admin_page p,.vk_admin_page td{line-height:1.7;font-size:14px}.vk_admin_page h2.page_title{font-size:16px;text-align:center;line-height:140%;margin:10px 0 20px}.vk_admin_page h3{background-color:#333;color:#fff;padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000;border-radius:4px}.vk_admin_page h5{font-size:16px;margin-bottom:1em}.vk_admin_page .form-table td p,.vk_admin_page p{margin-bottom:1em;font-size:14px;line-height:1.7}.vk_admin_page .form-table td p:last-child,.vk_admin_page p:last-child{margin-bottom:0}.vk_admin_page input[type=text]{width:50%}.vk_admin_page select{width:50%}.vk_admin_page dl{line-height:1.5}.vk_admin_page dl dt{font-weight:700;margin-bottom:5px}.vk_admin_page dl dd{margin-left:0}.vk_admin_page tr.dev_object{display:none}.vk_admin_page .pageLogo{text-align:center}.vk_admin_page .pageLogo img{max-width:150px;margin:0 auto}.vk_admin_page .adminMain #adminContent_sub .notice{padding-bottom:10px}.vk_admin_page .adminMain #adminContent_sub .button{white-space:normal;margin:5px 0;padding:.5em 1em;line-height:1.4}.vk_admin_page .adminMain #adminContent_main .form_horizontal_item{margin-right:1em}.vk_admin_page .adminMain_main ol,.vk_admin_page .adminMain_main ul{margin-top:0;margin-left:1.5em;padding-top:0}.vk_admin_page .adminMain_main ol>li{list-style:decimal}.vk_admin_page .adminMain_main ul>li{list-style:disc}.vk_admin_page .adminMain_main li ol,.vk_admin_page .adminMain_main li ul{margin-top:.5em}.vk_admin_page .adminMain_main ul.no-style{margin-left:0}.vk_admin_page .adminMain_main ul.no-style ul{margin-left:1.5em}.vk_admin_page .adminMain_main ul.no-style li{list-style:none}.vk_admin_page .adminMain_main_content{margin-bottom:3em}.vk_admin_page .adminMain_main input[type=text]{margin-bottom:5px}.vk_admin_page .adminSub .infoBox{display:block;overflow:hidden;padding:1em;margin-bottom:1em;background-color:#fff;border-radius:4px}.vk_admin_page .adminSub .vk-metabox-sub-title{background-color:#ccc;width:auto;padding:5px 10px;border-radius:3px;margin-top:0;margin-bottom:15px}.vk_admin_page .adminSub .vk-metabox-more-link{display:none}.vk_admin_page .alert{border-radius:4px;padding:.8em;font-weight:400}.vk_admin_page .alert-danger{border:1px solid #ebccd1;background-color:#f2dede;color:#a94442}.wp-full-overlay-sidebar{font-size:14px}.admin-custom-section,.admin_widget_section{display:block;overflow:hidden;margin:1.5em 0}.admin-custom-section p,.admin_widget_section p{margin-top:.5em}.admin-custom-h2,.admin_widget_h2{box-sizing:border-box;margin:1em 0 1em;padding:.8em 1em;width:100%;border:solid 1px #ddd;border-radius:5px;background:#555;color:#fff;font-size:1.1em}.admin-custom-h3,.admin_widget_h3{box-sizing:border-box;padding:.4em 0;margin-bottom:.3em;width:100%;border-bottom:solid 1px #ddd;font-size:1em}.admin-custom-discription{margin-top:.5em}input[type=checkbox].admin-custom-input,input[type=checkbox].admin_widget_input,input[type=color].admin-custom-input,input[type=color].admin_widget_input,input[type=date].admin-custom-input,input[type=date].admin_widget_input,input[type=datetime-local].admin-custom-input,input[type=datetime-local].admin_widget_input,input[type=datetime].admin-custom-input,input[type=datetime].admin_widget_input,input[type=email].admin-custom-input,input[type=email].admin_widget_input,input[type=month].admin-custom-input,input[type=month].admin_widget_input,input[type=number].admin-custom-input,input[type=number].admin_widget_input,input[type=password].admin-custom-input,input[type=password].admin_widget_input,input[type=radio].admin-custom-input,input[type=radio].admin_widget_input,input[type=search].admin-custom-input,input[type=search].admin_widget_input,input[type=tel].admin-custom-input,input[type=tel].admin_widget_input,input[type=text].admin-custom-input,input[type=text].admin_widget_input,input[type=time].admin-custom-input,input[type=time].admin_widget_input,input[type=url].admin-custom-input,input[type=url].admin_widget_input,input[type=week].admin-custom-input,input[type=week].admin_widget_input,select.admin-custom-input,select.admin_widget_input,textarea.admin-custom-input,textarea.admin_widget_input{width:100%;margin:.3em 0}.admin-custom-thumb-outer,.admin_widget_thumb_outer{position:relative;overflow:hidden;z-index:2;margin:3px 0;min-height:70px;border:1px solid #e5e5e5;background-color:#f5f5f5;width:100%}.admin-custom-thumb-outer:before,.admin_widget_thumb_outer:before{position:absolute;top:50%;left:50%;z-index:1;margin:-8px 0 0 -30px;color:#999;content:"No Image"}.admin-custom-thumb,.admin_widget_thumb{position:relative;z-index:3;display:block;width:100%;height:auto}.vk_checklist_item-style-vertical{display:flex}.vk_checklist_item .vk_checklist_item_input{margin-top:0}.vk-admin-inline-radio{display:flex;border-radius:3px;overflow:hidden;border:1px solid #b6b6b6}.vk-admin-inline-radio div{position:relative;flex:1}.vk-admin-inline-radio input{width:100%;height:60px;opacity:0}.vk-admin-inline-radio label{position:absolute;top:0;left:0;color:#b6b6b6;width:100%;height:100%;background:#fff;display:flex;align-items:center;justify-content:center;pointer-events:none;border-right:1px solid #b6b6b6}.vk-admin-inline-radio div:last-child label{border-right:0}.vk-admin-inline-radio input:checked+label{background:#d81b60;font-weight:500;color:#fff}@media (max-width:991px){.vk_admin_page .adminSub .adminMain table.form-table td,.vk_admin_page .adminSub .adminMain table.form-table th{display:block}.vk_admin_page .adminSub .adminMain table.form-table th{background-color:#ccc;width:auto;padding:10px;border-radius:3px}}
1
+ .vk_admin_page{--vk-admin-layout-gap:30px}.adminLayout{display:grid;gap:var(--vk-admin-layout-gap)}.adminLayout .adminMain{display:grid;gap:var(--vk-admin-layout-gap)}body{margin:0}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-warning{color:#a94442}#dashboard-widgets .vk-metabox-sub-title,.vk-metabox-sub-title{display:block;overflow:hidden;border-bottom:1px solid #e5e5e5;margin-top:1em;padding-bottom:.3em}#dashboard-widgets .vk-metabox-sub-title .dashicons,.vk-metabox-sub-title .dashicons{position:relative;top:-2px;margin-left:3px}.vk-metabox-more-link{float:right;font-size:12px}.vk-metabox-post-list{margin-bottom:2em}.vk-metabox-post-list li{border-bottom:1px dotted #ccc;padding-bottom:3px;display:flex}.vk-metabox-post-list li .date{font-size:11px;margin-right:1em;width:75px;white-space:nowrap}.vk-metabox-post-list li a{width:100%}.vk-admin-banner{display:block;overflow:hidden}.vk-admin-banner a.admin_banner{display:block;margin-bottom:1em;border:1px solid #ccc;box-shadow:inset 0 0 0 1px #fff}.vk-admin-banner a.admin_banner img{max-width:100%;height:auto;display:block}.vk-admin-banner a.admin_banner img:hover{opacity:.7}.vk-admin-banner .vektor_logo{margin-top:1em}.vk-admin-banner .vektor_logo img{width:150px;float:right}#vk_dashboard_widget .vk-admin-banner-grid{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}#vk_dashboard_widget .vk-admin-banner-grid a.admin_banner{width:48%}.wp-core-ui .button-block{display:block;width:100%;text-align:center}.logo_exUnit{display:block;overflow:hidden;text-align:center;margin-bottom:10px;border-bottom:1px solid #ccc}.logo_exUnit img{width:150px;max-width:100%}.vk_option_nav{display:block!important;overflow:hidden}.vk_option_nav ul{display:block;overflow:hidden;margin:0;padding:0}.vk_option_nav ul li{display:block;border:1px solid #ccc;margin-bottom:0;border-bottom:none;background-color:#fff}.vk_option_nav ul li:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.vk_option_nav ul li:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom:1px solid #ccc}.vk_option_nav ul li:hover{background-color:#666}.vk_option_nav ul li a{display:block;overflow:hidden;padding:.5em;text-decoration:none;color:#666;font-size:12px}.vk_option_nav ul li:hover a{color:#fff;border:none}.vk_option_nav ul li.current{background-color:#333;color:#fff}.vk_option_nav ul li.current a{color:#fff}.vk_admin_page{padding-top:1em}.vk_admin_page li,.vk_admin_page p,.vk_admin_page td{line-height:1.7;font-size:14px}.vk_admin_page h2.page_title{font-size:16px;text-align:center;line-height:140%;margin:10px 0 20px}.vk_admin_page h3{background-color:#333;color:#fff;padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000;border-radius:4px}.vk_admin_page h5{font-size:16px;margin-bottom:1em}.vk_admin_page .form-table td p,.vk_admin_page p{margin-bottom:1em;font-size:14px;line-height:1.7}.vk_admin_page .form-table td p:last-child,.vk_admin_page p:last-child{margin-bottom:0}.vk_admin_page input[type=text]{width:50%}.vk_admin_page select{width:50%}.vk_admin_page dl{line-height:1.5}.vk_admin_page dl dt{font-weight:700;margin-bottom:5px}.vk_admin_page dl dd{margin-left:0}.vk_admin_page tr.dev_object{display:none}.vk_admin_page .pageLogo{text-align:center}.vk_admin_page .pageLogo img{max-width:150px;margin:0 auto}.vk_admin_page .adminMain #adminContent_sub .notice{padding-bottom:10px}.vk_admin_page .adminMain #adminContent_sub .button{white-space:normal;margin:5px 0;padding:.5em 1em;line-height:1.4}.vk_admin_page .adminMain #adminContent_main .form_horizontal_item{margin-right:1em}.vk_admin_page .adminMain_main ol,.vk_admin_page .adminMain_main ul{margin-top:0;margin-left:1.5em;padding-top:0}.vk_admin_page .adminMain_main ol>li{list-style:decimal}.vk_admin_page .adminMain_main ul>li{list-style:disc}.vk_admin_page .adminMain_main li ol,.vk_admin_page .adminMain_main li ul{margin-top:.5em}.vk_admin_page .adminMain_main ul.no-style{margin-left:0}.vk_admin_page .adminMain_main ul.no-style ul{margin-left:1.5em}.vk_admin_page .adminMain_main ul.no-style li{list-style:none}.vk_admin_page .adminMain_main_content{margin-bottom:3em}.vk_admin_page .adminMain_main input[type=text]{margin-bottom:5px}.vk_admin_page .adminSub .infoBox{display:block;overflow:hidden;padding:1em;margin-bottom:1em;background-color:#fff;border-radius:4px}.vk_admin_page .adminSub .vk-metabox-sub-title{background-color:#ccc;width:auto;padding:5px 10px;border-radius:3px;margin-top:0;margin-bottom:15px}.vk_admin_page .adminSub .vk-metabox-more-link{display:none}.vk_admin_page .alert{border-radius:4px;padding:.8em;font-weight:400}.vk_admin_page .alert-danger{border:1px solid #ebccd1;background-color:#f2dede;color:#a94442}.wp-full-overlay-sidebar{font-size:14px}.admin-custom-section,.admin_widget_section{display:block;overflow:hidden;margin:1.5em 0}.admin-custom-section p,.admin_widget_section p{margin-top:.5em}.admin-custom-h2,.admin_widget_h2{box-sizing:border-box;margin:1em 0 1em;padding:.8em 1em;width:100%;border:solid 1px #ddd;border-radius:5px;background:#555;color:#fff;font-size:1.1em}.admin-custom-h3,.admin_widget_h3{box-sizing:border-box;padding:.4em 0;margin-bottom:.3em;width:100%;border-bottom:solid 1px #ddd;font-size:1em}.admin-custom-discription{margin-top:.5em}input[type=checkbox].admin-custom-input,input[type=checkbox].admin_widget_input,input[type=color].admin-custom-input,input[type=color].admin_widget_input,input[type=date].admin-custom-input,input[type=date].admin_widget_input,input[type=datetime-local].admin-custom-input,input[type=datetime-local].admin_widget_input,input[type=datetime].admin-custom-input,input[type=datetime].admin_widget_input,input[type=email].admin-custom-input,input[type=email].admin_widget_input,input[type=month].admin-custom-input,input[type=month].admin_widget_input,input[type=number].admin-custom-input,input[type=number].admin_widget_input,input[type=password].admin-custom-input,input[type=password].admin_widget_input,input[type=radio].admin-custom-input,input[type=radio].admin_widget_input,input[type=search].admin-custom-input,input[type=search].admin_widget_input,input[type=tel].admin-custom-input,input[type=tel].admin_widget_input,input[type=text].admin-custom-input,input[type=text].admin_widget_input,input[type=time].admin-custom-input,input[type=time].admin_widget_input,input[type=url].admin-custom-input,input[type=url].admin_widget_input,input[type=week].admin-custom-input,input[type=week].admin_widget_input,select.admin-custom-input,select.admin_widget_input,textarea.admin-custom-input,textarea.admin_widget_input{width:100%;margin:.3em 0}.admin-custom-thumb-outer,.admin_widget_thumb_outer{position:relative;overflow:hidden;z-index:2;margin:3px 0;min-height:70px;border:1px solid #e5e5e5;background-color:#f5f5f5;width:100%}.admin-custom-thumb-outer:before,.admin_widget_thumb_outer:before{position:absolute;top:50%;left:50%;z-index:1;margin:-8px 0 0 -30px;color:#999;content:"No Image"}.admin-custom-thumb,.admin_widget_thumb{position:relative;z-index:3;display:block;width:100%;height:auto}.vk_checklist_item-style-vertical{display:flex}.vk_checklist_item .vk_checklist_item_input{margin-top:0}.vk-admin-inline-radio{display:flex;border-radius:3px;overflow:hidden;border:1px solid #b6b6b6}.vk-admin-inline-radio div{position:relative;flex:1}.vk-admin-inline-radio input{width:100%;height:60px;opacity:0}.vk-admin-inline-radio label{position:absolute;top:0;left:0;color:#b6b6b6;width:100%;height:100%;background:#fff;display:flex;align-items:center;justify-content:center;pointer-events:none;border-right:1px solid #b6b6b6}.vk-admin-inline-radio div:last-child label{border-right:0}.vk-admin-inline-radio input:checked+label{background:#d81b60;font-weight:500;color:#fff}@media (min-width:992px){.adminLayout .adminMain.column_3{grid-template-columns:240px auto}.adminLayout .adminMain_sub_inner{position:sticky;top:30px}}@media (min-width:1400px){.adminLayout{grid-template-columns:auto 300px}.adminLayout{align-items:end}.adminLayout .adminSub{position:sticky;bottom:30px}}@media (max-width:991px){.vk_admin_page .adminSub .adminMain table.form-table td,.vk_admin_page .adminSub .adminMain table.form-table th{display:block}.vk_admin_page .adminSub .adminMain table.form-table th{background-color:#ccc;width:auto;padding:10px;border-radius:3px}}
admin/vk-admin/package/js/vk_admin.js CHANGED
@@ -59,32 +59,3 @@ jQuery(document).ready(function($){
59
  jQuery(this).next().slideToggle();
60
  });
61
  });
62
-
63
- /*-------------------------------------------*/
64
- /* ページ内リンクで頭出しの余白を適切にする
65
- /*-------------------------------------------*/
66
- jQuery(document).ready(function(){
67
- if(!jQuery('body').hasClass('exunit_page_vkExUnit_main_setting')){ return; }
68
- // 一つ目のセクションの位置を取得
69
- var default_offset = jQuery('.adminMain section:first-child').offset();
70
-
71
- // 全てのセクションの上に余白を追加(頭出しがきれいになるようにするため)
72
- jQuery('.adminMain section').each(function(i){
73
- if (i != 0){ // 読み込んだ時、一つ目は余白要らない
74
- jQuery(this).css({"padding-top":default_offset["top"]});
75
- }
76
- });
77
-
78
- jQuery(window).scroll(function () {
79
- // スクロール量を取得
80
- var scroll = jQuery(this).scrollTop();
81
-
82
- if ( scroll < default_offset["top"] ){
83
- // スクロールが少ない場合は最初のセクションに余白を入れない
84
- jQuery('.adminMain section:first-child').css({"padding-top":0});
85
- } else {
86
- // ある程度スクロールしている状態ならば余白を入れる
87
- jQuery('.adminMain section:first-child').css({"padding-top":default_offset["top"]});
88
- }
89
- });
90
- });
59
  jQuery(this).next().slideToggle();
60
  });
61
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/_scss/vkExUnit_style.scss CHANGED
@@ -22,8 +22,6 @@
22
  /*-------------------------------------------*/
23
  /* .veu_followSet
24
  /*-------------------------------------------*/
25
- /* .veu_cta
26
- /*-------------------------------------------*/
27
  /* .veu_contact
28
  /*-------------------------------------------*/
29
  /* .veu_insertAds
@@ -195,10 +193,6 @@
195
  }
196
  } // .veu_followSet
197
 
198
- /*-------------------------------------------*/
199
- /* .veu_cta
200
- /*-------------------------------------------*/
201
- @import "../../inc/call-to-action/package/_scss/_call-to-action";
202
 
203
  /*-------------------------------------------*/
204
  /* .veu_contact
22
  /*-------------------------------------------*/
23
  /* .veu_followSet
24
  /*-------------------------------------------*/
 
 
25
  /* .veu_contact
26
  /*-------------------------------------------*/
27
  /* .veu_insertAds
193
  }
194
  } // .veu_followSet
195
 
 
 
 
 
196
 
197
  /*-------------------------------------------*/
198
  /* .veu_contact
assets/css/vkExUnit_style.css CHANGED
@@ -1 +1 @@
1
- :root{--vk-color-border-hr:rgba(0,0,0,0.07);--vk-color-bg-accent:rgba( 0,0,0,0.02);--vk-color-border-light:rgba( 0,0,0,0.07);--vk-color-border-zuru:rgba(255, 255, 255, 0.8);--vk-color-text-meta:#d44950;--vk-color-text-body:#555555;--vk-color-text-link:#666666;--vk-color-text-link-hover:#1e73be;--vk-size-radius:4px;--vk-size-radius-sm:2px;--vk-size-text:16px;--vk-size-text-meta:0.75rem;--vk-size-text-lg:1.313rem;--vk-size-text-sm:0.875rem;--vk-size-text-xs:0.75rem;--vk-margin-meta:0.5rem;--vk-margin-block-bottom:2rem}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.link-list li{padding:.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;margin-top:var(--vk-margin-block-bottom);margin-bottom:var(--vk-margin-block-bottom)}.veu_contentAddSection:first-child{margin-top:0}.btn{white-space:inherit}#wp-admin-bar-veu_adminlink .ab-veu-icon{position:relative;float:left;speak:never;padding:4px 0;margin-right:6px;display:block;width:20px;height:20px;background-image:url(../images/ex-unit-icon.svg);background-repeat:no-repeat;background-position:center;background-size:20px!important}#wp-admin-bar-veu_adminlink:hover .ab-veu-icon{background-image:url(../images/ex-unit-icon-hover.svg)}.veu_card{border:3px solid var(--vk-color-border-light);border-radius:var(--vk-size-radius)}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px var(--vk-color-border-zuru)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;padding:0 0 .4em;margin:0 0 1em;display:block;border-bottom:1px solid #e5e5e5;border-top:none;border-left:none;border-right:none;background:0 0;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;text-align:left}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{margin-top:1em;padding-bottom:2em}.veu_sitemap .sitemap-col .link-list a{display:block;overflow:hidden}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_sitemap .sitemap-post-type-title{margin-bottom:.8em;font-size:18px}.veu_sitemap .sitemap-taxonomy-title{margin:1em 0;padding:0 0 .2em;font-size:16px}.veu_sitemap a{color:#464646}.veu_sitemap ul{margin:0 0 0 1em;padding-left:0}.veu_sitemap ul li{font-size:14px}.veu_sitemap ul>li>a{position:relative;margin-bottom:1em}.veu_sitemap .sitemap-term-list{margin-bottom:1.5em}.veu_socialSet-position-before{margin-top:-1em;margin-bottom:2em}.veu_socialSet-position-after{margin-top:3em}.veu_socialSet{margin-bottom:1.5em}.veu_socialSet ul{display:flex}.veu_socialSet li{width:50%;background:0 0;position:relative;display:block;overflow:visible;box-sizing:border-box}.veu_socialSet .sb_icon .sb_icon_inner{display:block;overflow:hidden;width:100%;box-sizing:border-box;padding:5px 10px;border-radius:var(--vk-size-radius);color:#fff;text-decoration:none;line-height:100%;font-size:90%;text-align:left;border:none}.veu_socialSet .sb_icon .sb_icon_inner:hover{box-shadow:none;transform:translateY(2px);cursor:pointer;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out}.veu_socialSet .sb_icon .sb_icon_inner .sns_txt{position:relative;top:-1px}.veu_socialSet .sb_icon .sb_icon_inner .icon_sns{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet .sb_facebook a{background:#1877f2;box-shadow:0 2px 0 #344e84}.veu_socialSet .sb_hatena a{background:#007fc5;box-shadow:0 2px 0 #00679f}.veu_socialSet .sb_twitter a{background:#00abec;box-shadow:0 2px 0 #007eaa}.veu_socialSet .sb_google a{background:#dd4b39;box-shadow:0 2px 0 #a03524}.veu_socialSet .sb_line a{background:#6ebd30;box-shadow:0 2px 0 #5b9c28}.veu_socialSet .sb_pocket a{background:#ea4654;box-shadow:0 2px 0 #c1303c}.veu_socialSet .sb_copy .sb_icon_inner{background:#555;box-shadow:0 2px 0 #333;padding-bottom:4px}.veu_socialSet .sb_copy .sb_icon_inner i{font-size:14px}.veu_count_sns_fb,.veu_count_sns_hb,.veu_count_sns_pocket{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:700}.veu_socialSet.veu_contentAddSection ul{margin:0;padding:0}.veu_socialSet.veu_contentAddSection ul li{margin:3px;padding:0}[class*=" vk_icon_w_r_sns_"],[class^=vk_icon_w_r_sns_]{text-transform:none;font-weight:400;font-style:normal;font-variant:normal;font-family:vk_sns;line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_fb:before{content:"\e600"}.vk_icon_w_r_sns_google:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_line:before{content:"\e603"}.vk_icon_w_r_sns_pocket:before{content:"\e604"}.vk_icon_w_r_sns_twitter:before{content:"\e605"}.veu_childPage_list{margin-top:2.5em;display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list:first-child{margin-top:0}.veu_childPage_list .childPage_list_box{margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .childPage_list_box_inner{display:flex;flex-direction:column;height:100%;box-sizing:border-box}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{position:relative;overflow:hidden;color:#333;font-size:14px;height:100%}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list .childPage_list_text{overflow:hidden;line-height:1.5em;margin-bottom:3.5em}.veu_childPage_list .childPage_list_more{position:absolute;bottom:0;right:0}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em}.veu_pageList_ancestor:first-child{margin-top:0}.veu_pageList_ancestor .pageList_ancestor_title{margin-bottom:.5em}.veu_pageList_ancestor .pageList{margin-top:0;margin-bottom:0;padding-left:0}.veu_pageList_ancestor .pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor .pageList a:hover{text-decoration:underline}.veu_pageList_ancestor .pageList>.page_item{list-style:none}.veu_pageList_ancestor .pageList li{margin-bottom:0}.veu_pageList_ancestor .pageList ul{margin:0;padding-left:0;padding-bottom:0}.veu_pageList_ancestor .pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor .pageList ul li:before{position:absolute;top:.26em;left:5px;display:inline-block}.veu_pageList_ancestor .pageList ul li a{padding-left:20px}.veu_pageList_ancestor .pageList ul li li a{padding-left:30px}.veu_pageList_ancestor .pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:700}.veu_followSet{margin:30px 0;display:table;table-layout:fixed;width:100%;background-color:#2b2b2b;color:#fff}.veu_followSet .followSet_img{display:table-cell;min-width:240px;background-position:center;background-size:cover}.veu_followSet .followSet_body{display:table-cell;padding:15px;text-align:center;vertical-align:middle;line-height:1.4;font-size:20px}.veu_followSet .followSet_fb_page{margin-top:0;display:block;width:100%;transform:scale(1.2)}.veu_followSet .followSet_tw_follow{width:100%;padding:15px 0 0}.veu_followSet .followSet_feedly{text-align:center}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta .cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:var(--vk-color-bg-accent)}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:5px 0;font-size:28px;line-height:105%;font-weight:700;color:var(--vk-color-primary)}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.2rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block;text-decoration:none;line-height:1.2;padding:.5rem 1.5rem .6rem}.veu_contact .contact_bt_subTxt,.veu_contact .contact_bt_txt{color:#fff}.widget_vkexunit_contact_section{margin-bottom:var(--vk-margin-block-bottom)}.widget_vkexunit_contact_section .veu_contentAddSection{margin:0}.c-widget .veu_contact .customize-partial-edit-shortcut-button,.widget .veu_contact .customize-partial-edit-shortcut-button{top:45px}.veu_insertAds{margin-top:1em;margin-bottom:2em}.veu_relatedPosts a{color:var(--vk-color-text-body);text-decoration:none}.veu_relatedPosts .relatedPosts_title{font-size:var(--vk-size-text-lg)}.veu_relatedPosts>.row{display:flex;margin:0;margin-right:-3%;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px var(--vk-color-border-hr);flex:initial}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{display:flex;padding:1em 0 .8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:var(--vk-size-text-xs)}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;min-width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail img{border:1px solid var(--vk-color-border-hr);max-width:100%;height:auto;-o-object-fit:contain;object-fit:contain}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:var(--vk-size-text-sm);margin-bottom:var(--vk-margin-meta)}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px var(--vk-color-border-hr)}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px var(--vk-color-border-hr)}.page_top_btn{position:fixed;right:2%;bottom:3%;z-index:99999;width:40px;height:38px;color:transparent;border:none;background:rgba(0,0,0,.8);box-shadow:0 0 0 1px rgba(255,255,255,.8),0 0 0 2px rgba(0,0,0,.8);background-image:var(--ver_page_top_button_url);background-size:50%;background-repeat:no-repeat;background-position:center;opacity:0;transition:opacity .3s;text-decoration:none}.page_top_btn:hover{transition:opacity .3s;color:transparent;text-decoration:none}.page_top_btn .customize-partial-edit-shortcut-button{left:-40px}.scrolled .page_top_btn{display:block;opacity:1;color:transparent}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}iframe.twitter-timeline{margin-right:auto;margin-left:auto;width:740px!important}.veu_postList{margin-bottom:30px}.veu_postList .subSection-title,.veu_postList h1.mainSection-title{margin-bottom:0}.veu_postList ul.postList{margin:0;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;margin:0;padding:15px 0;border-bottom:1px solid var(--vk-color-border-hr);line-height:1.4em}.veu_postList .postList a{color:var(--vk-color-text-body);text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:3px 0 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:var(--vk-color-text-meta)}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms{position:relative}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 2px;border-radius:var(--vk-size-radius-sm);background-color:#efefef;font-size:10px;line-height:1;position:relative;top:-1px}.veu_postList .postList_terms a:hover{text-decoration:none}.veu_postList .postList_more{margin:10px 5px 0 0;text-align:right}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px solid var(--vk-color-border-hr);margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto;display:block}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.veu_profile .profile{overflow:hidden}.veu_profile .media_outer{position:relative;display:block;overflow:hidden;margin:.8em 0 .8em;box-sizing:border-box}.veu_profile .media_outer img{max-width:100%;height:auto}.veu_profile .media_round{border-radius:50%;width:120px;height:120px;position:relative}.veu_profile .media_round img{position:absolute;left:-9999px}.veu_profile .media_center{margin-left:auto;margin-right:auto}.veu_profile .media_center img{display:block;margin-left:auto;margin-right:auto}.veu_profile .media_float{float:left;margin-right:1em}.veu_profile .media_float+.profile_text{padding-top:.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:.45em;list-style:none;text-align:center}.veu_profile .sns_btns li a{display:block;position:relative;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns li a:hover{color:#fff;text-decoration:none;opacity:.8}.veu_profile .sns_btns li a.bg_fill .icon{color:#fff}.veu_profile .sns_btns .icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.veu_profile .sns_btns .facebook_btn a{background:#3b5998;border:1px solid #3b5998}.veu_profile .sns_btns .facebook_btn a .icon{color:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee;border:1px solid #55acee}.veu_profile .sns_btns .twitter_btn a .icon{color:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2f915f;border:1px solid #2f915f}.veu_profile .sns_btns .mail_btn a .icon{color:#2f915f}.veu_profile .sns_btns .youtube_btn a{background:#c81d1c;border:1px solid #c81d1c}.veu_profile .sns_btns .youtube_btn a .icon{color:#c81d1c}.veu_profile .sns_btns .rss_btn a{background:#f26522;border:1px solid #f26522}.veu_profile .sns_btns .rss_btn a .icon{color:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b;border:1px solid #3f729b}.veu_profile .sns_btns .instagram_btn a .icon{color:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5;border:1px solid #0077b5}.veu_profile .sns_btns .linkedin_btn a .icon{color:#0077b5}.veu_3prArea .prArea{padding-bottom:3.5em}.veu_3prArea .subSection-title{font-size:18px;margin-top:.8em}.veu_3prArea .summary{margin-bottom:.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl{position:absolute;bottom:0;right:15px}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock .prBlock_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock .prBlock_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px}.prBlock .prBlock_title{margin-top:.9em;margin-bottom:.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock .prBlock_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.prBlock .prBlock_summary{margin-bottom:.5em;text-align:center;font-size:14px;line-height:1.6em}.veu_button i,.veu_button svg{margin-left:.3em;margin-right:.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:.6em;padding-bottom:.45em}.veu_button .btn{padding-top:.8em;padding-bottom:.6em}.veu_button .btn.btn-lg{padding-top:.8em;padding-bottom:.7em}.veu_banner{text-align:center;display:block;overflow:hidden}@media (min-width:481px){.veu_followSet .followSet_body{padding:40px}.veu_followSet .followSet_title{font-size:18px;margin-bottom:10px}}@media (min-width:541px){.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}@media (min-width:1200px){.veu_contact-layout-horizontal p.contact_txt{margin-bottom:0}.veu_contact-layout-horizontal .contact_txt{float:left;text-align:left}.veu_contact-layout-horizontal .contact_bt{float:right;padding:.7em 1.5em}}@media screen and (max-width:992px){.prBlock{margin-bottom:1.5em}}@media (max-width:971px){.veu_insertAds{margin-bottom:.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}@media (max-width:768px){.veu_relatedPosts .relatedPosts_item{max-width:100%}.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}@media (max-width:767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet li{width:calc(50% - 6px)}.veu_socialSet .veu_count_sns_fb,.veu_socialSet .veu_count_sns_hb,.veu_socialSet .veu_count_sns_pocket{bottom:2px}.veu_socialSet .sb_icon a{padding:8px 10px}.veu_socialSet.veu_contentAddSection ul li{margin-bottom:9px}.veu_childPage_list .wp-post-image{width:25%}.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media screen and (max-width:767px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}@media (max-width:576px){.veu_contact .contact_txt_tel{font-size:25px}}@media (max-width:480px){.veu_followSet .followSet_title{font-size:12px;margin-bottom:0}}
1
+ :root{--vk-color-border-hr:rgba(0,0,0,0.07);--vk-color-bg-accent:rgba( 0,0,0,0.02);--vk-color-border-light:rgba( 0,0,0,0.07);--vk-color-border-zuru:rgba(255, 255, 255, 0.8);--vk-color-text-meta:#d44950;--vk-color-text-body:#555555;--vk-color-text-link:#666666;--vk-color-text-link-hover:#1e73be;--vk-size-radius:4px;--vk-size-radius-sm:2px;--vk-size-text:16px;--vk-size-text-meta:0.75rem;--vk-size-text-lg:1.313rem;--vk-size-text-sm:0.875rem;--vk-size-text-xs:0.75rem;--vk-margin-meta:0.5rem;--vk-margin-block-bottom:2rem}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.link-list li{padding:.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;margin-top:var(--vk-margin-block-bottom);margin-bottom:var(--vk-margin-block-bottom)}.veu_contentAddSection:first-child{margin-top:0}.btn{white-space:inherit}#wp-admin-bar-veu_adminlink .ab-veu-icon{position:relative;float:left;speak:never;padding:4px 0;margin-right:6px;display:block;width:20px;height:20px;background-image:url(../images/ex-unit-icon.svg);background-repeat:no-repeat;background-position:center;background-size:20px!important}#wp-admin-bar-veu_adminlink:hover .ab-veu-icon{background-image:url(../images/ex-unit-icon-hover.svg)}.veu_card{border:3px solid var(--vk-color-border-light);border-radius:var(--vk-size-radius)}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px var(--vk-color-border-zuru)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;padding:0 0 .4em;margin:0 0 1em;display:block;border-bottom:1px solid #e5e5e5;border-top:none;border-left:none;border-right:none;background:0 0;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;text-align:left}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{margin-top:1em;padding-bottom:2em}.veu_sitemap .sitemap-col .link-list a{display:block;overflow:hidden}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_sitemap .sitemap-post-type-title{margin-bottom:.8em;font-size:18px}.veu_sitemap .sitemap-taxonomy-title{margin:1em 0;padding:0 0 .2em;font-size:16px}.veu_sitemap a{color:#464646}.veu_sitemap ul{margin:0 0 0 1em;padding-left:0}.veu_sitemap ul li{font-size:14px}.veu_sitemap ul>li>a{position:relative;margin-bottom:1em}.veu_sitemap .sitemap-term-list{margin-bottom:1.5em}.veu_socialSet-position-before{margin-top:-1em;margin-bottom:2em}.veu_socialSet-position-after{margin-top:3em}.veu_socialSet{margin-bottom:1.5em}.veu_socialSet ul{display:flex}.veu_socialSet li{width:50%;background:0 0;position:relative;display:block;overflow:visible;box-sizing:border-box}.veu_socialSet .sb_icon .sb_icon_inner{display:block;overflow:hidden;width:100%;box-sizing:border-box;padding:5px 10px;border-radius:var(--vk-size-radius);color:#fff;text-decoration:none;line-height:100%;font-size:90%;text-align:left;border:none}.veu_socialSet .sb_icon .sb_icon_inner:hover{box-shadow:none;transform:translateY(2px);cursor:pointer;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out}.veu_socialSet .sb_icon .sb_icon_inner .sns_txt{position:relative;top:-1px}.veu_socialSet .sb_icon .sb_icon_inner .icon_sns{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet .sb_facebook a{background:#1877f2;box-shadow:0 2px 0 #344e84}.veu_socialSet .sb_hatena a{background:#007fc5;box-shadow:0 2px 0 #00679f}.veu_socialSet .sb_twitter a{background:#00abec;box-shadow:0 2px 0 #007eaa}.veu_socialSet .sb_google a{background:#dd4b39;box-shadow:0 2px 0 #a03524}.veu_socialSet .sb_line a{background:#6ebd30;box-shadow:0 2px 0 #5b9c28}.veu_socialSet .sb_pocket a{background:#ea4654;box-shadow:0 2px 0 #c1303c}.veu_socialSet .sb_copy .sb_icon_inner{background:#555;box-shadow:0 2px 0 #333;padding-bottom:4px}.veu_socialSet .sb_copy .sb_icon_inner i{font-size:14px}.veu_count_sns_fb,.veu_count_sns_hb,.veu_count_sns_pocket{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:700}.veu_socialSet.veu_contentAddSection ul{margin:0;padding:0}.veu_socialSet.veu_contentAddSection ul li{margin:3px;padding:0}[class*=" vk_icon_w_r_sns_"],[class^=vk_icon_w_r_sns_]{text-transform:none;font-weight:400;font-style:normal;font-variant:normal;font-family:vk_sns;line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_fb:before{content:"\e600"}.vk_icon_w_r_sns_google:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_line:before{content:"\e603"}.vk_icon_w_r_sns_pocket:before{content:"\e604"}.vk_icon_w_r_sns_twitter:before{content:"\e605"}.veu_childPage_list{margin-top:2.5em;display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list:first-child{margin-top:0}.veu_childPage_list .childPage_list_box{margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .childPage_list_box_inner{display:flex;flex-direction:column;height:100%;box-sizing:border-box}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{position:relative;overflow:hidden;color:#333;font-size:14px;height:100%}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list .childPage_list_text{overflow:hidden;line-height:1.5em;margin-bottom:3.5em}.veu_childPage_list .childPage_list_more{position:absolute;bottom:0;right:0}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em}.veu_pageList_ancestor:first-child{margin-top:0}.veu_pageList_ancestor .pageList_ancestor_title{margin-bottom:.5em}.veu_pageList_ancestor .pageList{margin-top:0;margin-bottom:0;padding-left:0}.veu_pageList_ancestor .pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor .pageList a:hover{text-decoration:underline}.veu_pageList_ancestor .pageList>.page_item{list-style:none}.veu_pageList_ancestor .pageList li{margin-bottom:0}.veu_pageList_ancestor .pageList ul{margin:0;padding-left:0;padding-bottom:0}.veu_pageList_ancestor .pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor .pageList ul li:before{position:absolute;top:.26em;left:5px;display:inline-block}.veu_pageList_ancestor .pageList ul li a{padding-left:20px}.veu_pageList_ancestor .pageList ul li li a{padding-left:30px}.veu_pageList_ancestor .pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:700}.veu_followSet{margin:30px 0;display:table;table-layout:fixed;width:100%;background-color:#2b2b2b;color:#fff}.veu_followSet .followSet_img{display:table-cell;min-width:240px;background-position:center;background-size:cover}.veu_followSet .followSet_body{display:table-cell;padding:15px;text-align:center;vertical-align:middle;line-height:1.4;font-size:20px}.veu_followSet .followSet_fb_page{margin-top:0;display:block;width:100%;transform:scale(1.2)}.veu_followSet .followSet_tw_follow{width:100%;padding:15px 0 0}.veu_followSet .followSet_feedly{text-align:center}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:var(--vk-color-bg-accent)}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:5px 0;font-size:28px;line-height:105%;font-weight:700;color:var(--vk-color-primary)}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.2rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block;text-decoration:none;line-height:1.2;padding:.5rem 1.5rem .6rem}.veu_contact .contact_bt_subTxt,.veu_contact .contact_bt_txt{color:#fff}.widget_vkexunit_contact_section{margin-bottom:var(--vk-margin-block-bottom)}.widget_vkexunit_contact_section .veu_contentAddSection{margin:0}.c-widget .veu_contact .customize-partial-edit-shortcut-button,.widget .veu_contact .customize-partial-edit-shortcut-button{top:45px}.veu_insertAds{margin-top:1em;margin-bottom:2em}.veu_relatedPosts a{color:var(--vk-color-text-body);text-decoration:none}.veu_relatedPosts .relatedPosts_title{font-size:var(--vk-size-text-lg)}.veu_relatedPosts>.row{display:flex;margin:0;margin-right:-3%;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px var(--vk-color-border-hr);flex:initial}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{display:flex;padding:1em 0 .8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:var(--vk-size-text-xs)}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;min-width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail img{border:1px solid var(--vk-color-border-hr);max-width:100%;height:auto;-o-object-fit:contain;object-fit:contain}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:var(--vk-size-text-sm);margin-bottom:var(--vk-margin-meta)}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px var(--vk-color-border-hr)}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px var(--vk-color-border-hr)}.page_top_btn{position:fixed;right:2%;bottom:3%;z-index:99999;width:40px;height:38px;color:transparent;border:none;background:rgba(0,0,0,.8);box-shadow:0 0 0 1px rgba(255,255,255,.8),0 0 0 2px rgba(0,0,0,.8);background-image:var(--ver_page_top_button_url);background-size:50%;background-repeat:no-repeat;background-position:center;opacity:0;transition:opacity .3s;text-decoration:none}.page_top_btn:hover{transition:opacity .3s;color:transparent;text-decoration:none}.page_top_btn .customize-partial-edit-shortcut-button{left:-40px}.scrolled .page_top_btn{display:block;opacity:1;color:transparent}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}iframe.twitter-timeline{margin-right:auto;margin-left:auto;width:740px!important}.veu_postList{margin-bottom:30px}.veu_postList .subSection-title,.veu_postList h1.mainSection-title{margin-bottom:0}.veu_postList ul.postList{margin:0;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;margin:0;padding:15px 0;border-bottom:1px solid var(--vk-color-border-hr);line-height:1.4em}.veu_postList .postList a{color:var(--vk-color-text-body);text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:3px 0 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:var(--vk-color-text-meta)}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms{position:relative}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 2px;border-radius:var(--vk-size-radius-sm);background-color:#efefef;font-size:10px;line-height:1;position:relative;top:-1px}.veu_postList .postList_terms a:hover{text-decoration:none}.veu_postList .postList_more{margin:10px 5px 0 0;text-align:right}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px solid var(--vk-color-border-hr);margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto;display:block}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.veu_profile .profile{overflow:hidden}.veu_profile .media_outer{position:relative;display:block;overflow:hidden;margin:.8em 0 .8em;box-sizing:border-box}.veu_profile .media_outer img{max-width:100%;height:auto}.veu_profile .media_round{border-radius:50%;width:120px;height:120px;position:relative}.veu_profile .media_round img{position:absolute;left:-9999px}.veu_profile .media_center{margin-left:auto;margin-right:auto}.veu_profile .media_center img{display:block;margin-left:auto;margin-right:auto}.veu_profile .media_float{float:left;margin-right:1em}.veu_profile .media_float+.profile_text{padding-top:.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:.45em;list-style:none;text-align:center}.veu_profile .sns_btns li a{display:block;position:relative;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns li a:hover{color:#fff;text-decoration:none;opacity:.8}.veu_profile .sns_btns li a.bg_fill .icon{color:#fff}.veu_profile .sns_btns .icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.veu_profile .sns_btns .facebook_btn a{background:#3b5998;border:1px solid #3b5998}.veu_profile .sns_btns .facebook_btn a .icon{color:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee;border:1px solid #55acee}.veu_profile .sns_btns .twitter_btn a .icon{color:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2f915f;border:1px solid #2f915f}.veu_profile .sns_btns .mail_btn a .icon{color:#2f915f}.veu_profile .sns_btns .youtube_btn a{background:#c81d1c;border:1px solid #c81d1c}.veu_profile .sns_btns .youtube_btn a .icon{color:#c81d1c}.veu_profile .sns_btns .rss_btn a{background:#f26522;border:1px solid #f26522}.veu_profile .sns_btns .rss_btn a .icon{color:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b;border:1px solid #3f729b}.veu_profile .sns_btns .instagram_btn a .icon{color:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5;border:1px solid #0077b5}.veu_profile .sns_btns .linkedin_btn a .icon{color:#0077b5}.veu_3prArea .prArea{padding-bottom:3.5em}.veu_3prArea .subSection-title{font-size:18px;margin-top:.8em}.veu_3prArea .summary{margin-bottom:.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl{position:absolute;bottom:0;right:15px}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock .prBlock_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock .prBlock_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px}.prBlock .prBlock_title{margin-top:.9em;margin-bottom:.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock .prBlock_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.prBlock .prBlock_summary{margin-bottom:.5em;text-align:center;font-size:14px;line-height:1.6em}.veu_button i,.veu_button svg{margin-left:.3em;margin-right:.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:.6em;padding-bottom:.45em}.veu_button .btn{padding-top:.8em;padding-bottom:.6em}.veu_button .btn.btn-lg{padding-top:.8em;padding-bottom:.7em}.veu_banner{text-align:center;display:block;overflow:hidden}@media (min-width:481px){.veu_followSet .followSet_body{padding:40px}.veu_followSet .followSet_title{font-size:18px;margin-bottom:10px}}@media (min-width:541px){.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}}@media (min-width:1200px){.veu_contact-layout-horizontal p.contact_txt{margin-bottom:0}.veu_contact-layout-horizontal .contact_txt{float:left;text-align:left}.veu_contact-layout-horizontal .contact_bt{float:right;padding:.7em 1.5em}}@media screen and (max-width:992px){.prBlock{margin-bottom:1.5em}}@media (max-width:971px){.veu_insertAds{margin-bottom:.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}@media (max-width:768px){.veu_relatedPosts .relatedPosts_item{max-width:100%}.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}@media (max-width:767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet li{width:calc(50% - 6px)}.veu_socialSet .veu_count_sns_fb,.veu_socialSet .veu_count_sns_hb,.veu_socialSet .veu_count_sns_pocket{bottom:2px}.veu_socialSet .sb_icon a{padding:8px 10px}.veu_socialSet.veu_contentAddSection ul li{margin-bottom:9px}.veu_childPage_list .wp-post-image{width:25%}}@media screen and (max-width:767px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}@media (max-width:576px){.veu_contact .contact_txt_tel{font-size:25px}}@media (max-width:480px){.veu_followSet .followSet_title{font-size:12px;margin-bottom:0}}
assets/js/block.min.js CHANGED
@@ -2,4 +2,5 @@
2
  "use strict";!function(e){var i=e.i18n.__,t=e.blocks.registerBlockType,C=(e.blockEditor&&e.blockEditor.BlockEdit?e.blockEditor:e.editor).InspectorControls,l=e.components,d=l.ServerSideRender,s=l.PanelBody,u=l.SelectControl,n=e.data,l=n.withSelect,H=(n.select,e.element.Fragment),p=e.element,e=p.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},p.createElement("path",{d:"M10.8895 14.7778L7.62346 14.7854C7.57942 14.7854 7.53538 14.8158 7.5207 14.8614L7.27116 15.5832C7.24915 15.6592 7.30052 15.7352 7.37392 15.7352H8.64364C8.73905 15.7352 8.79043 15.8567 8.72437 15.9251L6.69869 18.1058H6.70603L7.74823 21.5021C7.77025 21.578 7.71887 21.6464 7.64548 21.6464H6.62529C6.57392 21.6464 6.53722 21.616 6.52254 21.5704L6.00144 19.8305C5.97208 19.7241 5.83264 19.7241 5.79594 19.8229L5.37025 21.0462C5.36291 21.069 5.36291 21.0918 5.37025 21.1146L5.75924 22.5962C5.77392 22.6418 5.81796 22.6797 5.86199 22.6797H9.15006C9.22345 22.6797 9.27483 22.6038 9.25281 22.5354L7.92437 18.2577C7.90969 18.2197 7.92437 18.1741 7.95373 18.1437L10.9702 14.9678C11.0363 14.8994 10.9849 14.7778 10.8895 14.7778Z",fill:"black"}),p.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"}),p.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1.5 6.5V1.5H9.5V6.5H1.5ZM0 1C0 0.447715 0.447715 0 1 0H10C10.5523 0 11 0.447715 11 1V7C11 7.55228 10.5523 8 10 8H1C0.447715 8 0 7.55228 0 7V1ZM1.5 13.2779V11.5H7.02166H9.5V13.2812L10.8895 13.2779C10.9268 13.2779 10.9637 13.2791 11 13.2814V11C11 10.4477 10.5523 10 10 10H1C0.447715 10 0 10.4477 0 11V13.281C0.0353798 13.279 0.0713537 13.2779 0.107918 13.2779H1.5ZM3.36751 13L3.2686 13.2779H3V13H3.36751ZM10.1733 17.985C10.6035 17.9099 10.9392 17.5598 10.9926 17.1225L10.1733 17.985ZM14.5 1.5V6.5H22.5V1.5H14.5ZM14 0C13.4477 0 13 0.447715 13 1V7C13 7.55228 13.4477 8 14 8H23C23.5523 8 24 7.55228 24 7V1C24 0.447715 23.5523 0 23 0H14ZM14.5 16.5V11.5H22.5V16.5H14.5ZM13 11C13 10.4477 13.4477 10 14 10H23C23.5523 10 24 10.4477 24 11V17C24 17.5523 23.5523 18 23 18H14C13.4477 18 13 17.5523 13 17V11ZM3 3V5H5V3H3ZM16 3V5H18V3H16ZM16 15V13H18V15H16Z",fill:"black"}));t("vk-blocks/child-page-index",{title:i("Child page index","veu-block"),icon:e,category:"veu-block",attributes:{postId:{type:"number",default:-1}},edit:l(function(e){return{pages:e("core").getEntityRecords("postType","page",{_embed:!0,per_page:-1})}})(function(e){var t=e.attributes,l=e.setAttributes,n=e.pages,e=t.postId,a=(t.className,[{label:i("This Page","veu-block"),value:-1}]);if(null!=n){for(var r=n.length,o=[],c=0,c=0;c<r;c++)0!==n[c].parent&&o.push(n[c].parent);for(c=0;c<r;c++)o.includes(n[c].id)&&a.push({label:n[c].title.rendered,value:n[c].id})}return p.createElement(H,null,p.createElement(C,null,p.createElement(s,{label:i("Parent Page","veu-block")},p.createElement(u,{label:i("Parent Page","veu-block"),value:e,options:a,onChange:function(e){l({postId:parseInt(e,10)})}}))),p.createElement("div",{className:"veu_child_page_list_block"},p.createElement(d,{block:"vk-blocks/child-page-index",attributes:t})))}),save:function(){return null}})}(wp);
3
  "use strict";!function(e){var n=e.i18n.__,t=e.blocks.registerBlockType,c=e.serverSideRender,l=e.components,a=l.PanelBody,o=l.BaseControl,r=l.CheckboxControl,i=e.element.Fragment,C=e.blockEditor.InspectorControls,s=e.element,e=s.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},s.createElement("path",{d:"M10.8895 14.7778L7.62346 14.7854C7.57942 14.7854 7.53538 14.8158 7.5207 14.8614L7.27116 15.5832C7.24915 15.6592 7.30052 15.7352 7.37392 15.7352H8.64364C8.73905 15.7352 8.79043 15.8567 8.72437 15.9251L6.69869 18.1058H6.70603L7.74823 21.5021C7.77025 21.578 7.71887 21.6464 7.64548 21.6464H6.62529C6.57392 21.6464 6.53722 21.616 6.52254 21.5704L6.00144 19.8305C5.97208 19.7241 5.83264 19.7241 5.79594 19.8229L5.37025 21.0462C5.36291 21.069 5.36291 21.0918 5.37025 21.1146L5.75924 22.5962C5.77392 22.6418 5.81796 22.6797 5.86199 22.6797H9.15006C9.22345 22.6797 9.27483 22.6038 9.25281 22.5354L7.92437 18.2577C7.90969 18.2197 7.92437 18.1741 7.95373 18.1437L10.9702 14.9678C11.0363 14.8994 10.9849 14.7778 10.8895 14.7778Z",fill:"black"}),s.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"}),s.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7 0H10.5C11.05 0 11.5 0.45 11.5 1C11.5 2.25 11.7 3.45 12.07 4.57C12.18 4.92 12.1 5.31 11.82 5.59L9.62 7.79C11.06 10.62 13.38 12.93 16.21 14.38L18.41 12.18C18.61 11.99 18.86 11.89 19.12 11.89C19.22 11.89 19.33 11.9 19.43 11.94C20.55 12.31 21.76 12.51 23 12.51C23.55 12.51 24 12.96 24 13.51V17C24 17.55 23.55 18 23 18C18.98 18 15.2862 16.6052 12.3762 14.2731C12.1893 13.8229 11.8056 13.4545 11.2918 13.3264C8.0321 10.2292 6 5.85228 6 1C6 0.45 6.45 0 7 0Z",fill:"black"}));t("vk-blocks/contact-section",{title:n("Contact section","veu-block"),icon:e,category:"veu-block",attributes:{vertical:{type:"boolean",default:!1}},edit:function(e){var t=e.attributes,l=e.setAttributes,t=(e.className,t.vertical);return s.createElement(i,null,s.createElement(C,null,s.createElement(a,{title:n("Display conditions","veu-block"),initialOpen:!1},s.createElement(o,null,s.createElement(r,{label:n("Set telephone and mail form vertically","veu-block"),className:"mb-1",checked:t,onChange:function(e){return l({vertical:e})}})))),s.createElement("div",{className:"veu_contact_section_block"},s.createElement(c,{block:"vk-blocks/contact-section",attributes:e.attributes})))},save:function(){return null}})}(wp);
4
  "use strict";!function(e){var l=e.i18n.__,t=e.blocks.registerBlockType,c=e.components,n=c.ServerSideRender,a=(c.PanelBody,e.element.Fragment),r=e.element,e=r.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},r.createElement("path",{d:"M24,21.5H11l-0.3-1H23V2.4h-21V13h-1V1.4h23V21.5z M5.5,5C6.3,5,7,5.7,7,6.5C7,7.3,6.3,8,5.5,8C4.7,8,4,7.3,4,6.5 C4,5.7,4.7,5,5.5,5z M20,7H9V6h11V7z M7,11.5C7,10.7,6.3,10,5.5,10C4.7,10,4,10.7,4,11.5c0,0.1,0,0.2,0,0.4c0.3-0.2,0.6-0.3,1-0.3h0 L7,11.5L7,11.5z M20,17v-1h-7.9c0,0,0,0,0,0l-0.9,1H20z M20,12H9v-1h11V12z",fill:"black"}),r.createElement("path",{d:"M10.9,14.8l-3.3,0c0,0-0.1,0-0.1,0.1l-0.2,0.7c0,0.1,0,0.2,0.1,0.2h1.3c0.1,0,0.1,0.1,0.1,0.2l-2,2.2h0l1,3.4 c0,0.1,0,0.1-0.1,0.1h-1c-0.1,0-0.1,0-0.1-0.1L6,19.8c0-0.1-0.2-0.1-0.2,0L5.4,21c0,0,0,0,0,0.1l0.4,1.5c0,0,0.1,0.1,0.1,0.1h3.3 c0.1,0,0.1-0.1,0.1-0.1l-1.3-4.3c0,0,0-0.1,0-0.1l3-3.2C11,14.9,11,14.8,10.9,14.8z",fill:"black"}),r.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"}));t("vk-blocks/page-list-ancestor",{title:l("Page list from ancestor","veu-block"),icon:e,category:"veu-block",edit:function(e){e=e.className;return r.createElement(a,null,r.createElement("div",{className:"".concat(e," veu_page_list_ancestor_block")},r.createElement(n,{block:"vk-blocks/page-list-ancestor",attributes:{className:e}})))},save:function(){return null}})}(wp);
5
- "use strict";!function(e){var l=e.i18n.__,t=e.blocks.registerBlockType,c=e.components.ServerSideRender,a=e.element.Fragment,n=e.element,e=n.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},n.createElement("g",{"clip-path":"url(#clip0)"},n.createElement("path",{d:"M11.5 6V7H5.5V9H6.5V8H17.5V9H18.5V7H12.5V6H11.5Z",fill:"black"}),n.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.5 1.5V4H14.5V1.5H9.5ZM9 0C8.44772 0 8 0.447715 8 1V4.5C8 5.05228 8.44772 5.5 9 5.5H15C15.5523 5.5 16 5.05228 16 4.5V1C16 0.447715 15.5523 0 15 0H9Z",fill:"black"}),n.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M3.5 11V13.5H8.5V11H3.5ZM3 9.5C2.44772 9.5 2 9.94772 2 10.5V14C2 14.5523 2.44772 15 3 15H9C9.55228 15 10 14.5523 10 14V10.5C10 9.94772 9.55228 9.5 9 9.5H3Z",fill:"black"}),n.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M15.5 11V13.5H20.5V11H15.5ZM15 9.5C14.4477 9.5 14 9.94772 14 10.5V14C14 14.5523 14.4477 15 15 15H21C21.5523 15 22 14.5523 22 14V10.5C22 9.94772 21.5523 9.5 21 9.5H15Z",fill:"black"}),n.createElement("path",{d:"M7.02166 11.5C8.12596 11.5 8.69181 12.4565 8.61827 13.2832L10.8895 13.2779C12.3071 13.2779 13.0309 14.9832 12.0553 16.0035L9.59833 18.5904L10.6845 22.0882C10.9884 23.0594 10.3009 24.1799 9.15005 24.1799H5.86199C5.49242 24.1799 5.18431 24.0623 4.94092 23.887L4.74798 24.4359L4.74336 24.4483C4.22239 25.8506 2.24664 25.8506 1.72567 24.4483L1.72013 24.4334L-1.42461 15.3852L-1.43556 15.3474C-1.68861 14.4742 -1.12706 13.2779 0.107918 13.2779H3.2686L3.51343 12.59C3.73899 11.9389 4.35249 11.5096 5.02799 11.5076L5.03268 11.5076L7.02166 11.5Z",fill:"white"}),n.createElement("path",{d:"M10.8895 14.7778L7.62346 14.7854C7.57942 14.7854 7.53538 14.8158 7.5207 14.8614L7.27116 15.5832C7.24915 15.6592 7.30052 15.7352 7.37392 15.7352H8.64364C8.73905 15.7352 8.79043 15.8567 8.72437 15.9251L6.69869 18.1058H6.70603L7.74823 21.5021C7.77025 21.578 7.71887 21.6464 7.64548 21.6464H6.62529C6.57392 21.6464 6.53722 21.616 6.52254 21.5704L6.00144 19.8305C5.97208 19.7241 5.83264 19.7241 5.79594 19.8229L5.37025 21.0462C5.36291 21.069 5.36291 21.0918 5.37025 21.1146L5.75924 22.5962C5.77392 22.6418 5.81796 22.6797 5.86199 22.6797H9.15006C9.22345 22.6797 9.27483 22.6038 9.25281 22.5354L7.92437 18.2577C7.90969 18.2197 7.92437 18.1741 7.95373 18.1437L10.9702 14.9678C11.0363 14.8994 10.9849 14.7778 10.8895 14.7778Z",fill:"black"}),n.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"})),n.createElement("defs",null,n.createElement("clipPath",{id:"clip0"},n.createElement("rect",{width:"24",height:"24",fill:"white"}))));t("vk-blocks/sitemap",{title:l("HTML Sitemap","veu-block"),icon:e,category:"veu-block",edit:function(e){e=e.className;return n.createElement(a,null,n.createElement("div",{className:"".concat(e," veu_sitemap_block")},n.createElement(c,{block:"vk-blocks/sitemap",attributes:{className:e}})))},save:function(){return null}})}(wp);
 
2
  "use strict";!function(e){var i=e.i18n.__,t=e.blocks.registerBlockType,C=(e.blockEditor&&e.blockEditor.BlockEdit?e.blockEditor:e.editor).InspectorControls,l=e.components,d=l.ServerSideRender,s=l.PanelBody,u=l.SelectControl,n=e.data,l=n.withSelect,H=(n.select,e.element.Fragment),p=e.element,e=p.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},p.createElement("path",{d:"M10.8895 14.7778L7.62346 14.7854C7.57942 14.7854 7.53538 14.8158 7.5207 14.8614L7.27116 15.5832C7.24915 15.6592 7.30052 15.7352 7.37392 15.7352H8.64364C8.73905 15.7352 8.79043 15.8567 8.72437 15.9251L6.69869 18.1058H6.70603L7.74823 21.5021C7.77025 21.578 7.71887 21.6464 7.64548 21.6464H6.62529C6.57392 21.6464 6.53722 21.616 6.52254 21.5704L6.00144 19.8305C5.97208 19.7241 5.83264 19.7241 5.79594 19.8229L5.37025 21.0462C5.36291 21.069 5.36291 21.0918 5.37025 21.1146L5.75924 22.5962C5.77392 22.6418 5.81796 22.6797 5.86199 22.6797H9.15006C9.22345 22.6797 9.27483 22.6038 9.25281 22.5354L7.92437 18.2577C7.90969 18.2197 7.92437 18.1741 7.95373 18.1437L10.9702 14.9678C11.0363 14.8994 10.9849 14.7778 10.8895 14.7778Z",fill:"black"}),p.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"}),p.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1.5 6.5V1.5H9.5V6.5H1.5ZM0 1C0 0.447715 0.447715 0 1 0H10C10.5523 0 11 0.447715 11 1V7C11 7.55228 10.5523 8 10 8H1C0.447715 8 0 7.55228 0 7V1ZM1.5 13.2779V11.5H7.02166H9.5V13.2812L10.8895 13.2779C10.9268 13.2779 10.9637 13.2791 11 13.2814V11C11 10.4477 10.5523 10 10 10H1C0.447715 10 0 10.4477 0 11V13.281C0.0353798 13.279 0.0713537 13.2779 0.107918 13.2779H1.5ZM3.36751 13L3.2686 13.2779H3V13H3.36751ZM10.1733 17.985C10.6035 17.9099 10.9392 17.5598 10.9926 17.1225L10.1733 17.985ZM14.5 1.5V6.5H22.5V1.5H14.5ZM14 0C13.4477 0 13 0.447715 13 1V7C13 7.55228 13.4477 8 14 8H23C23.5523 8 24 7.55228 24 7V1C24 0.447715 23.5523 0 23 0H14ZM14.5 16.5V11.5H22.5V16.5H14.5ZM13 11C13 10.4477 13.4477 10 14 10H23C23.5523 10 24 10.4477 24 11V17C24 17.5523 23.5523 18 23 18H14C13.4477 18 13 17.5523 13 17V11ZM3 3V5H5V3H3ZM16 3V5H18V3H16ZM16 15V13H18V15H16Z",fill:"black"}));t("vk-blocks/child-page-index",{title:i("Child page index","veu-block"),icon:e,category:"veu-block",attributes:{postId:{type:"number",default:-1}},edit:l(function(e){return{pages:e("core").getEntityRecords("postType","page",{_embed:!0,per_page:-1})}})(function(e){var t=e.attributes,l=e.setAttributes,n=e.pages,e=t.postId,a=(t.className,[{label:i("This Page","veu-block"),value:-1}]);if(null!=n){for(var r=n.length,o=[],c=0,c=0;c<r;c++)0!==n[c].parent&&o.push(n[c].parent);for(c=0;c<r;c++)o.includes(n[c].id)&&a.push({label:n[c].title.rendered,value:n[c].id})}return p.createElement(H,null,p.createElement(C,null,p.createElement(s,{label:i("Parent Page","veu-block")},p.createElement(u,{label:i("Parent Page","veu-block"),value:e,options:a,onChange:function(e){l({postId:parseInt(e,10)})}}))),p.createElement("div",{className:"veu_child_page_list_block"},p.createElement(d,{block:"vk-blocks/child-page-index",attributes:t})))}),save:function(){return null}})}(wp);
3
  "use strict";!function(e){var n=e.i18n.__,t=e.blocks.registerBlockType,c=e.serverSideRender,l=e.components,a=l.PanelBody,o=l.BaseControl,r=l.CheckboxControl,i=e.element.Fragment,C=e.blockEditor.InspectorControls,s=e.element,e=s.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},s.createElement("path",{d:"M10.8895 14.7778L7.62346 14.7854C7.57942 14.7854 7.53538 14.8158 7.5207 14.8614L7.27116 15.5832C7.24915 15.6592 7.30052 15.7352 7.37392 15.7352H8.64364C8.73905 15.7352 8.79043 15.8567 8.72437 15.9251L6.69869 18.1058H6.70603L7.74823 21.5021C7.77025 21.578 7.71887 21.6464 7.64548 21.6464H6.62529C6.57392 21.6464 6.53722 21.616 6.52254 21.5704L6.00144 19.8305C5.97208 19.7241 5.83264 19.7241 5.79594 19.8229L5.37025 21.0462C5.36291 21.069 5.36291 21.0918 5.37025 21.1146L5.75924 22.5962C5.77392 22.6418 5.81796 22.6797 5.86199 22.6797H9.15006C9.22345 22.6797 9.27483 22.6038 9.25281 22.5354L7.92437 18.2577C7.90969 18.2197 7.92437 18.1741 7.95373 18.1437L10.9702 14.9678C11.0363 14.8994 10.9849 14.7778 10.8895 14.7778Z",fill:"black"}),s.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"}),s.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7 0H10.5C11.05 0 11.5 0.45 11.5 1C11.5 2.25 11.7 3.45 12.07 4.57C12.18 4.92 12.1 5.31 11.82 5.59L9.62 7.79C11.06 10.62 13.38 12.93 16.21 14.38L18.41 12.18C18.61 11.99 18.86 11.89 19.12 11.89C19.22 11.89 19.33 11.9 19.43 11.94C20.55 12.31 21.76 12.51 23 12.51C23.55 12.51 24 12.96 24 13.51V17C24 17.55 23.55 18 23 18C18.98 18 15.2862 16.6052 12.3762 14.2731C12.1893 13.8229 11.8056 13.4545 11.2918 13.3264C8.0321 10.2292 6 5.85228 6 1C6 0.45 6.45 0 7 0Z",fill:"black"}));t("vk-blocks/contact-section",{title:n("Contact section","veu-block"),icon:e,category:"veu-block",attributes:{vertical:{type:"boolean",default:!1}},edit:function(e){var t=e.attributes,l=e.setAttributes,t=(e.className,t.vertical);return s.createElement(i,null,s.createElement(C,null,s.createElement(a,{title:n("Display conditions","veu-block"),initialOpen:!1},s.createElement(o,null,s.createElement(r,{label:n("Set telephone and mail form vertically","veu-block"),className:"mb-1",checked:t,onChange:function(e){return l({vertical:e})}})))),s.createElement("div",{className:"veu_contact_section_block"},s.createElement(c,{block:"vk-blocks/contact-section",attributes:e.attributes})))},save:function(){return null}})}(wp);
4
  "use strict";!function(e){var l=e.i18n.__,t=e.blocks.registerBlockType,c=e.components,n=c.ServerSideRender,a=(c.PanelBody,e.element.Fragment),r=e.element,e=r.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},r.createElement("path",{d:"M24,21.5H11l-0.3-1H23V2.4h-21V13h-1V1.4h23V21.5z M5.5,5C6.3,5,7,5.7,7,6.5C7,7.3,6.3,8,5.5,8C4.7,8,4,7.3,4,6.5 C4,5.7,4.7,5,5.5,5z M20,7H9V6h11V7z M7,11.5C7,10.7,6.3,10,5.5,10C4.7,10,4,10.7,4,11.5c0,0.1,0,0.2,0,0.4c0.3-0.2,0.6-0.3,1-0.3h0 L7,11.5L7,11.5z M20,17v-1h-7.9c0,0,0,0,0,0l-0.9,1H20z M20,12H9v-1h11V12z",fill:"black"}),r.createElement("path",{d:"M10.9,14.8l-3.3,0c0,0-0.1,0-0.1,0.1l-0.2,0.7c0,0.1,0,0.2,0.1,0.2h1.3c0.1,0,0.1,0.1,0.1,0.2l-2,2.2h0l1,3.4 c0,0.1,0,0.1-0.1,0.1h-1c-0.1,0-0.1,0-0.1-0.1L6,19.8c0-0.1-0.2-0.1-0.2,0L5.4,21c0,0,0,0,0,0.1l0.4,1.5c0,0,0.1,0.1,0.1,0.1h3.3 c0.1,0,0.1-0.1,0.1-0.1l-1.3-4.3c0,0,0-0.1,0-0.1l3-3.2C11,14.9,11,14.8,10.9,14.8z",fill:"black"}),r.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"}));t("vk-blocks/page-list-ancestor",{title:l("Page list from ancestor","veu-block"),icon:e,category:"veu-block",edit:function(e){e=e.className;return r.createElement(a,null,r.createElement("div",{className:"".concat(e," veu_page_list_ancestor_block")},r.createElement(n,{block:"vk-blocks/page-list-ancestor",attributes:{className:e}})))},save:function(){return null}})}(wp);
5
+ "use strict";!function(e){var l=e.i18n.__,t=e.blocks.registerBlockType,c=e.components.ServerSideRender,a=e.element.Fragment,n=e.element,e=n.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},n.createElement("g",{"clip-path":"url(#clip0)"},n.createElement("path",{d:"M11.5 6V7H5.5V9H6.5V8H17.5V9H18.5V7H12.5V6H11.5Z",fill:"black"}),n.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.5 1.5V4H14.5V1.5H9.5ZM9 0C8.44772 0 8 0.447715 8 1V4.5C8 5.05228 8.44772 5.5 9 5.5H15C15.5523 5.5 16 5.05228 16 4.5V1C16 0.447715 15.5523 0 15 0H9Z",fill:"black"}),n.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M3.5 11V13.5H8.5V11H3.5ZM3 9.5C2.44772 9.5 2 9.94772 2 10.5V14C2 14.5523 2.44772 15 3 15H9C9.55228 15 10 14.5523 10 14V10.5C10 9.94772 9.55228 9.5 9 9.5H3Z",fill:"black"}),n.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M15.5 11V13.5H20.5V11H15.5ZM15 9.5C14.4477 9.5 14 9.94772 14 10.5V14C14 14.5523 14.4477 15 15 15H21C21.5523 15 22 14.5523 22 14V10.5C22 9.94772 21.5523 9.5 21 9.5H15Z",fill:"black"}),n.createElement("path",{d:"M7.02166 11.5C8.12596 11.5 8.69181 12.4565 8.61827 13.2832L10.8895 13.2779C12.3071 13.2779 13.0309 14.9832 12.0553 16.0035L9.59833 18.5904L10.6845 22.0882C10.9884 23.0594 10.3009 24.1799 9.15005 24.1799H5.86199C5.49242 24.1799 5.18431 24.0623 4.94092 23.887L4.74798 24.4359L4.74336 24.4483C4.22239 25.8506 2.24664 25.8506 1.72567 24.4483L1.72013 24.4334L-1.42461 15.3852L-1.43556 15.3474C-1.68861 14.4742 -1.12706 13.2779 0.107918 13.2779H3.2686L3.51343 12.59C3.73899 11.9389 4.35249 11.5096 5.02799 11.5076L5.03268 11.5076L7.02166 11.5Z",fill:"white"}),n.createElement("path",{d:"M10.8895 14.7778L7.62346 14.7854C7.57942 14.7854 7.53538 14.8158 7.5207 14.8614L7.27116 15.5832C7.24915 15.6592 7.30052 15.7352 7.37392 15.7352H8.64364C8.73905 15.7352 8.79043 15.8567 8.72437 15.9251L6.69869 18.1058H6.70603L7.74823 21.5021C7.77025 21.578 7.71887 21.6464 7.64548 21.6464H6.62529C6.57392 21.6464 6.53722 21.616 6.52254 21.5704L6.00144 19.8305C5.97208 19.7241 5.83264 19.7241 5.79594 19.8229L5.37025 21.0462C5.36291 21.069 5.36291 21.0918 5.37025 21.1146L5.75924 22.5962C5.77392 22.6418 5.81796 22.6797 5.86199 22.6797H9.15006C9.22345 22.6797 9.27483 22.6038 9.25281 22.5354L7.92437 18.2577C7.90969 18.2197 7.92437 18.1741 7.95373 18.1437L10.9702 14.9678C11.0363 14.8994 10.9849 14.7778 10.8895 14.7778Z",fill:"black"}),n.createElement("path",{d:"M7.02164 13L5.03265 13.0076C4.98862 13.0076 4.94458 13.038 4.9299 13.0836L4.67302 13.8054C4.64366 13.8814 4.70238 13.9573 4.77577 13.9573H5.61247C5.68586 13.9573 5.73724 14.0333 5.71522 14.1093L3.34458 20.8259C3.30789 20.9247 3.17578 20.9247 3.13908 20.8259L1.43633 15.9784C1.40697 15.9024 1.46569 15.8265 1.53908 15.8265H2.3978C2.44183 15.8265 2.48587 15.8568 2.50055 15.9024L3.11706 17.65C3.15376 17.7487 3.28587 17.7487 3.32257 17.65L4.27669 14.9299C4.30605 14.8539 4.24733 14.7779 4.17394 14.7779H0.107895C0.0345005 14.7779 -0.0168755 14.8539 0.0051428 14.9299L3.13174 23.9259C3.16844 24.0247 3.30055 24.0247 3.33724 23.9259L7.12439 13.152C7.14641 13.076 7.09503 13 7.02164 13Z",fill:"#D8141C"})),n.createElement("defs",null,n.createElement("clipPath",{id:"clip0"},n.createElement("rect",{width:"24",height:"24",fill:"white"}))));t("vk-blocks/sitemap",{title:l("HTML Sitemap","veu-block"),icon:e,category:"veu-block",edit:function(e){e=e.className;return n.createElement(a,null,n.createElement("div",{className:"".concat(e," veu_sitemap_block")},n.createElement(c,{block:"vk-blocks/sitemap",attributes:{className:e}})))},save:function(){return null}})}(wp);
6
+ "use strict";!function(o){var i=o.i18n.__,e=o.blocks.registerBlockType,n=(o.blockEditor&&o.blockEditor.BlockEdit?o.blockEditor:o.editor).InspectorControls,t=o.components,r=t.ServerSideRender,C=t.PanelBody,d=t.SelectControl,t=o.data,s=(t.withSelect,t.select,o.element.Fragment),u=o.element,t=u.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},u.createElement("path",{d:"M12.3895 14.778L9.12346 14.7856C9.07942 14.7856 9.03538 14.8159 9.0207 14.8615L8.77116 15.5833C8.74915 15.6593 8.80052 15.7353 8.87392 15.7353H10.1436C10.2391 15.7353 10.2904 15.8569 10.2244 15.9253L8.19869 18.1059H8.20603L9.24823 21.5022C9.27025 21.5782 9.21887 21.6465 9.14548 21.6465H8.12529C8.07392 21.6465 8.03722 21.6162 8.02254 21.5706L7.50144 19.8306C7.47208 19.7242 7.33264 19.7242 7.29594 19.823L6.87025 21.0463C6.86291 21.0691 6.86291 21.0919 6.87025 21.1147L7.25924 22.5963C7.27392 22.6419 7.31796 22.6799 7.36199 22.6799H10.6501C10.7235 22.6799 10.7748 22.6039 10.7528 22.5355L9.42437 18.2578C9.40969 18.2198 9.42437 18.1743 9.45373 18.1439L12.4702 14.9679C12.5363 14.8995 12.4849 14.778 12.3895 14.778Z",fill:"black"}),u.createElement("path",{d:"M8.52164 13L6.53265 13.0076C6.48862 13.0076 6.44458 13.038 6.4299 13.0836L6.17302 13.8054C6.14366 13.8814 6.20238 13.9573 6.27577 13.9573H7.11247C7.18586 13.9573 7.23724 14.0333 7.21522 14.1093L4.84458 20.8259C4.80789 20.9247 4.67578 20.9247 4.63908 20.8259L2.93633 15.9784C2.90697 15.9024 2.96569 15.8265 3.03908 15.8265H3.8978C3.94183 15.8265 3.98587 15.8568 4.00055 15.9024L4.61706 17.65C4.65376 17.7487 4.78587 17.7487 4.82257 17.65L5.77669 14.9299C5.80605 14.8539 5.74733 14.7779 5.67394 14.7779H1.60789C1.5345 14.7779 1.48312 14.8539 1.50514 14.9299L4.63174 23.9259C4.66844 24.0247 4.80055 24.0247 4.83724 23.9259L8.62439 13.152C8.64641 13.076 8.59503 13 8.52164 13Z",fill:"#D8141C"}),u.createElement("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M5.5 6H19.5C19.7761 6 20 6.22386 20 6.5V12.9218L18.6112 11.6869C17.4394 10.644 15.75 11.5771 15.75 13.0107V14H13.7319C14.0152 14.4333 14.0929 14.9963 13.8856 15.5H15.75V19.9889C15.75 21.5247 17.6676 22.4313 18.773 21.1492L20.3235 19.3504L22.5941 19.2559C24.2232 19.1881 24.7797 17.1733 23.659 16.1754L21.3895 14.1573C21.4611 13.9514 21.5 13.7303 21.5 13.5V6.5C21.5 5.39543 20.6046 4.5 19.5 4.5H5.5C4.39543 4.5 3.5 5.39543 3.5 6.5V13.2779H4.7686L5 12.6277V6.5C5 6.22386 5.22386 6 5.5 6ZM8.5 10.75H16.5V9.25H8.5V10.75ZM17.25 13.0107C17.25 12.8896 17.3127 12.8097 17.3917 12.7717C17.4317 12.7525 17.47 12.7474 17.5017 12.7512C17.5295 12.7545 17.5681 12.7666 17.6145 12.8079L22.6616 17.2957C22.7434 17.3686 22.772 17.4775 22.7337 17.593C22.7152 17.6492 22.6846 17.6901 22.654 17.715C22.6275 17.7365 22.5912 17.7547 22.5317 17.7572L20.2402 17.8525C19.8361 17.8699 19.46 18.0554 19.1963 18.3607L17.6371 20.1697C17.5902 20.224 17.5501 20.2401 17.5228 20.2461C17.4907 20.2532 17.4497 20.2514 17.4055 20.2336C17.3188 20.1989 17.25 20.1188 17.25 19.9889V13.0107Z",fill:"black"}));e("vk-blocks/cta",{title:i("CTA","veu-block"),icon:t,category:"veu-block",attributes:{postId:{type:"string",default:""}},edit:function(e){var t=e.attributes,l=e.setAttributes,c=t.postId,a=veuBlockOption.cat_option,e="",t="disable"===(e=o.data.select("core/editor")&&o.data.select("core/editor").getEditedPostAttribute("meta")&&o.data.select("core/editor").getEditedPostAttribute("meta").vkexunit_cta_each_option?o.data.select("core/editor").getEditedPostAttribute("meta").vkexunit_cta_each_option:e)?u.createElement("div",{className:"veu-cta-block-edit-alert"},i("Because displaying CTA is disabled. The block render no content.","veu-block")):""!==c&&null!=c?u.createElement(r,{block:"vk-blocks/cta",attributes:t}):u.createElement("div",{className:"veu-cta-block-edit-alert alert alert-warning"},i("Please select CTA from Setting sidebar.","veu-block"));return u.createElement(s,null,u.createElement(n,null,u.createElement(C,{label:i("CTA Setting","veu-block")},u.createElement(d,{label:i("Select CTA","veu-block"),value:c,options:a,onChange:function(e){l({postId:e})}}))),u.createElement("div",{className:"veu-cta-block-edit"},t))},save:function(){return null}})}(wp);
inc/call-to-action/package/_scss/{_call-to-action.scss → style.scss} RENAMED
File without changes
inc/call-to-action/package/blocks/block.jsx ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function(wp){
2
+ const { __ } = wp.i18n
3
+ const { registerBlockType } = wp.blocks
4
+ const { InspectorControls } = wp.blockEditor && wp.blockEditor.BlockEdit ? wp.blockEditor : wp.editor
5
+ const { ServerSideRender, PanelBody, SelectControl } = wp.components
6
+ const { withSelect, select } = wp.data
7
+ const { Fragment } = wp.element
8
+ const React = wp.element
9
+ const BlockIcon = (
10
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
11
+ <path d="M12.3895 14.778L9.12346 14.7856C9.07942 14.7856 9.03538 14.8159 9.0207 14.8615L8.77116 15.5833C8.74915 15.6593 8.80052 15.7353 8.87392 15.7353H10.1436C10.2391 15.7353 10.2904 15.8569 10.2244 15.9253L8.19869 18.1059H8.20603L9.24823 21.5022C9.27025 21.5782 9.21887 21.6465 9.14548 21.6465H8.12529C8.07392 21.6465 8.03722 21.6162 8.02254 21.5706L7.50144 19.8306C7.47208 19.7242 7.33264 19.7242 7.29594 19.823L6.87025 21.0463C6.86291 21.0691 6.86291 21.0919 6.87025 21.1147L7.25924 22.5963C7.27392 22.6419 7.31796 22.6799 7.36199 22.6799H10.6501C10.7235 22.6799 10.7748 22.6039 10.7528 22.5355L9.42437 18.2578C9.40969 18.2198 9.42437 18.1743 9.45373 18.1439L12.4702 14.9679C12.5363 14.8995 12.4849 14.778 12.3895 14.778Z" fill="black"/>
12
+ <path d="M8.52164 13L6.53265 13.0076C6.48862 13.0076 6.44458 13.038 6.4299 13.0836L6.17302 13.8054C6.14366 13.8814 6.20238 13.9573 6.27577 13.9573H7.11247C7.18586 13.9573 7.23724 14.0333 7.21522 14.1093L4.84458 20.8259C4.80789 20.9247 4.67578 20.9247 4.63908 20.8259L2.93633 15.9784C2.90697 15.9024 2.96569 15.8265 3.03908 15.8265H3.8978C3.94183 15.8265 3.98587 15.8568 4.00055 15.9024L4.61706 17.65C4.65376 17.7487 4.78587 17.7487 4.82257 17.65L5.77669 14.9299C5.80605 14.8539 5.74733 14.7779 5.67394 14.7779H1.60789C1.5345 14.7779 1.48312 14.8539 1.50514 14.9299L4.63174 23.9259C4.66844 24.0247 4.80055 24.0247 4.83724 23.9259L8.62439 13.152C8.64641 13.076 8.59503 13 8.52164 13Z" fill="#D8141C"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.5 6H19.5C19.7761 6 20 6.22386 20 6.5V12.9218L18.6112 11.6869C17.4394 10.644 15.75 11.5771 15.75 13.0107V14H13.7319C14.0152 14.4333 14.0929 14.9963 13.8856 15.5H15.75V19.9889C15.75 21.5247 17.6676 22.4313 18.773 21.1492L20.3235 19.3504L22.5941 19.2559C24.2232 19.1881 24.7797 17.1733 23.659 16.1754L21.3895 14.1573C21.4611 13.9514 21.5 13.7303 21.5 13.5V6.5C21.5 5.39543 20.6046 4.5 19.5 4.5H5.5C4.39543 4.5 3.5 5.39543 3.5 6.5V13.2779H4.7686L5 12.6277V6.5C5 6.22386 5.22386 6 5.5 6ZM8.5 10.75H16.5V9.25H8.5V10.75ZM17.25 13.0107C17.25 12.8896 17.3127 12.8097 17.3917 12.7717C17.4317 12.7525 17.47 12.7474 17.5017 12.7512C17.5295 12.7545 17.5681 12.7666 17.6145 12.8079L22.6616 17.2957C22.7434 17.3686 22.772 17.4775 22.7337 17.593C22.7152 17.6492 22.6846 17.6901 22.654 17.715C22.6275 17.7365 22.5912 17.7547 22.5317 17.7572L20.2402 17.8525C19.8361 17.8699 19.46 18.0554 19.1963 18.3607L17.6371 20.1697C17.5902 20.224 17.5501 20.2401 17.5228 20.2461C17.4907 20.2532 17.4497 20.2514 17.4055 20.2336C17.3188 20.1989 17.25 20.1188 17.25 19.9889V13.0107Z" fill="black"/>
14
+ </svg>
15
+ );
16
+
17
+ registerBlockType("vk-blocks/cta", {
18
+ title: __("CTA", "veu-block"),
19
+ icon: BlockIcon,
20
+ category: "veu-block",
21
+ attributes: {
22
+ postId: {
23
+ type: 'string',
24
+ default: ''
25
+ }
26
+ },
27
+ edit: ( props ) => {
28
+ const { attributes, setAttributes } = props;
29
+ const { postId } = attributes;
30
+
31
+ // Make choice list of pages
32
+ const options = veuBlockOption.cat_option;
33
+ let setting = '';
34
+ if (
35
+ wp.data.select('core/editor') &&
36
+ wp.data.select('core/editor').getEditedPostAttribute('meta') &&
37
+ wp.data.select('core/editor').getEditedPostAttribute('meta').vkexunit_cta_each_option
38
+ ) {
39
+ setting = wp.data.select('core/editor').getEditedPostAttribute('meta').vkexunit_cta_each_option;
40
+ }
41
+
42
+
43
+ let editContent;
44
+ if ( setting === 'disable' ) {
45
+ editContent = (
46
+ <div className="veu-cta-block-edit-alert">
47
+ { __("Because displaying CTA is disabled. The block render no content.", "veu-block") }
48
+ </div>
49
+ );
50
+ } else if ( postId !== '' && postId !== null && postId !== undefined ) {
51
+ editContent = (
52
+ <ServerSideRender
53
+ block="vk-blocks/cta"
54
+ attributes={attributes}
55
+ />
56
+ );
57
+ } else {
58
+ editContent = (
59
+ <div className="veu-cta-block-edit-alert alert alert-warning">
60
+ { __("Please select CTA from Setting sidebar.", "veu-block") }
61
+ </div>
62
+ );
63
+ }
64
+
65
+ return (
66
+ <Fragment>
67
+ <InspectorControls>
68
+ <PanelBody
69
+ label={ __( "CTA Setting", "veu-block" ) }
70
+ >
71
+ <SelectControl
72
+ label={ __( 'Select CTA', 'veu-block' ) }
73
+ value={ postId }
74
+ options={ options }
75
+ onChange={ ( value )=>{ setAttributes({ postId: value }) } }
76
+ />
77
+ </PanelBody>
78
+ </InspectorControls>
79
+ <div className='veu-cta-block-edit'>
80
+ {editContent}
81
+ </div>
82
+ </Fragment>
83
+ )
84
+ },
85
+ save: () => null
86
+ });
87
+ })(wp);
inc/call-to-action/package/blocks/index.php ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * CTA ブロックを追加
4
+ */
5
+
6
+
7
+ // フィルターフックを追加
8
+ // フルサイト編集意では本文欄を経由しないため、CTAのコンテンツに対して WordPress が通常の投稿に行っているものと同じ処理をする
9
+ // Add fiter for render post content( Cope with FSE )
10
+ add_filter( 'veu_cta_content', 'do_blocks', 9 );
11
+ add_filter( 'veu_cta_content', 'wptexturize' );
12
+ add_filter( 'veu_cta_content', 'convert_smilies', 20 );
13
+ add_filter( 'veu_cta_content', 'shortcode_unautop' );
14
+ add_filter( 'veu_cta_content', 'prepend_attachment' );
15
+ add_filter( 'veu_cta_content', 'wp_filter_content_tags' );
16
+ add_filter( 'veu_cta_content', 'do_shortcode', 11 );
17
+ add_filter( 'veu_cta_content', 'capital_P_dangit', 11 );
18
+
19
+ /**
20
+ * CTA ブロックを追加
21
+ */
22
+ function veu_cta_block_setup() {
23
+ if ( function_exists( 'register_block_type' ) ) {
24
+ register_block_type(
25
+ 'vk-blocks/cta',
26
+ array(
27
+ 'attributes' => array_merge(
28
+ array(
29
+ 'className' => array(
30
+ 'type' => 'string',
31
+ 'default' => '',
32
+ ),
33
+ 'postId' => array(
34
+ 'type' => 'string',
35
+ 'default' => '',
36
+ ),
37
+ ),
38
+ veu_common_attributes()
39
+ ),
40
+ 'editor_script' => 'veu-block',
41
+ 'editor_style' => 'veu-block-editor',
42
+ 'render_callback' => 'veu_cta_block_callback',
43
+ 'supports' => array(),
44
+ )
45
+ );
46
+
47
+ // CTA のリストを取得
48
+ $args = array(
49
+ 'post_type' => 'cta',
50
+ 'nopaging' => true,
51
+ 'post_count' => -1,
52
+ );
53
+ $cta_posts = get_posts( $args );
54
+
55
+
56
+ // CTA の選択肢の配列を作成
57
+ $cta_options = array();
58
+
59
+ foreach ( $cta_posts as $cta_post ) {
60
+ $cta_options[] = array(
61
+ 'value' => $cta_post->ID,
62
+ 'label' => $cta_post->post_title,
63
+ );
64
+ }
65
+
66
+ // ランダムを先頭に追加
67
+ array_unshift(
68
+ $cta_options,
69
+ array(
70
+ 'value' => 'random',
71
+ 'label' => __( 'Random', 'vk-all-in-one-expansion-unit' ),
72
+ )
73
+ );
74
+
75
+ // なんとなく「選択してください」を戦闘に追加
76
+ array_unshift(
77
+ $cta_options,
78
+ array(
79
+ 'value' => '',
80
+ 'label' => __( 'Please Select', 'vk-all-in-one-expansion-unit' ),
81
+ )
82
+ );
83
+
84
+ // CTA のリストをブロック側に送信
85
+ wp_localize_script(
86
+ 'veu-block',
87
+ 'veuBlockOption',
88
+ array(
89
+ 'cat_option' => $cta_options,
90
+ )
91
+ );
92
+
93
+ // CTA のカスタムフィールドをブロックエディタで読めるように
94
+ $args = array(
95
+ 'public' => true,
96
+ );
97
+ $post_types = get_post_types( $args, 'names' );
98
+
99
+ foreach ( $post_types as $key => $post_type ) {
100
+ register_post_meta(
101
+ $post_type,
102
+ 'vkexunit_cta_each_option',
103
+ [
104
+ 'show_in_rest' => true,
105
+ 'single' => true,
106
+ 'type' => 'string',
107
+ ]
108
+ );
109
+ }
110
+ }
111
+ }
112
+ add_action( 'init', 'veu_cta_block_setup', 15 );
113
+
114
+ function veu_cta_block_callback( $attributes, $content ) {
115
+ $attributes = wp_parse_args(
116
+ $attributes,
117
+ array(
118
+ 'postId' => '',
119
+ 'className' => '',
120
+ )
121
+ );
122
+
123
+ $content = '';
124
+
125
+ global $post;
126
+ $post_config = get_post_meta( $post->ID, 'vkexunit_cta_each_option', true );
127
+ // 各記事で非表示指定されていなかったら表示する
128
+ if ( 'disable' !== $post_config ) {
129
+ if ( ! empty( $attributes['postId'] ) ) {
130
+ $post_id = 'random' !== $attributes['postId'] ? $attributes['postId'] : Vk_Call_To_Action::cta_id_random();
131
+ $id = $post_id;
132
+
133
+ $cta_post = get_post( $post_id );
134
+
135
+ if ( ! empty( $cta_post ) ) {
136
+
137
+ $content .= '<div class="veu-cta-block ' . $attributes['className'] . '">';
138
+
139
+ // 本文に入力がある場合は本文を表示.
140
+ $cta_content = $cta_post->post_content;
141
+ if ( ! empty ( $cta_content ) && 'veu_cta_normal' !== $cta_post->vkExUnit_cta_use_type ) {
142
+
143
+ $content .= apply_filters( 'veu_cta_content', $cta_content );
144
+
145
+ } else {
146
+
147
+ $fa = '';
148
+
149
+ if ( class_exists( 'Vk_Font_Awesome_Versions' ) ) {
150
+ $fa = Vk_Font_Awesome_Versions::print_fa();
151
+ }
152
+
153
+ $btn_text = get_post_meta( $id, 'vkExUnit_cta_button_text', true );
154
+ $btn_before = get_post_meta( $id, 'vkExUnit_cta_button_icon_before', true );
155
+
156
+ if ( $btn_before ) {
157
+ $btn_before = '<i class="' . $fa . esc_attr( $btn_before ) . ' font_icon"></i> ';
158
+ }
159
+
160
+ $btn_after = get_post_meta( $id, 'vkExUnit_cta_button_icon_after', true );
161
+
162
+ if ( $btn_after ) {
163
+ $btn_after = ' <i class="' . $fa . esc_attr( $btn_after ) . ' font_icon"></i>';
164
+ }
165
+
166
+ $url = get_post_meta( $id, 'vkExUnit_cta_url', true );
167
+ $text = get_post_meta( $id, 'vkExUnit_cta_text', true );
168
+ $text = preg_replace( '/\n/', '<br/>', $text );
169
+ $imgid = get_post_meta( $id, 'vkExUnit_cta_img', true );
170
+
171
+
172
+ $image_position = get_post_meta( $id, 'vkExUnit_cta_img_position', true );
173
+
174
+ if ( ! $image_position ) {
175
+ $image_position = 'right';
176
+ }
177
+
178
+ $content .= '<section class="veu_cta" id="veu_cta-' . $id . '">';
179
+ $content .= '<h1 class="cta_title">' . $cta_post->post_title . '</h1>';
180
+ $content .= '<div class="cta_body">';
181
+
182
+
183
+ // 別ウィンドウで開くかどうかのカスタムフィールドの値を取得 //////.
184
+ $target_blank = get_post_meta( $id, 'vkExUnit_cta_url_blank', true );
185
+
186
+ if ( 'window_self' !== $target_blank ) {
187
+ $target = ' target="_blank"';
188
+ } else {
189
+ $target = '';
190
+ }
191
+
192
+ if ( $imgid ) {
193
+ $content .= '<div class="cta_body_image cta_body_image_' . $image_position . '">';
194
+ $content .= ( $url ) ? '<a href="' . $url . '"' . $target . '>' : '';
195
+ $content .= wp_get_attachment_image( $imgid, 'large' );
196
+ $content .= ( $url ) ? '</a>' : '';
197
+ $content .= '</div>';
198
+ }
199
+
200
+ $content .= '<div class="cta_body_txt ' . ( ( $imgid ) ? 'image_exist' : 'image_no' ) . '">';
201
+ $content .= wp_kses_post( do_shortcode( $text ) );
202
+ $content .= '</div>';
203
+
204
+ if ( $url && $btn_text ) {
205
+ $content .= '<div class="cta_body_link">';
206
+ $content .= '<a href="' . $url . '" class="btn btn-primary btn-block btn-lg"' . $target . '>';
207
+ $content .= $btn_before . $btn_text . $btn_after;
208
+ $content .= '</a>';
209
+ $content .= '</div>';
210
+ }
211
+
212
+ $content .= '</div><!-- [ /.vkExUnit_cta_body ] -->';
213
+ $content .= '</section>';
214
+ }
215
+
216
+ $content .= '</div>';
217
+
218
+ // Display Edit Button.
219
+ $url = get_edit_post_link( $cta_post->ID );
220
+ if ( $url ) {
221
+ $content .= '<div class="veu_adminEdit"><a href="' . $url . '" class="btn btn-default" target="_blank">' . __( 'Edit CTA', 'vk-all-in-one-expansion-unit' ) . '</a></div>';
222
+ }
223
+
224
+ }
225
+
226
+ }
227
+ }
228
+
229
+ return $content;
230
+
231
+ }
inc/call-to-action/package/class-vk-call-to-action.php CHANGED
@@ -10,6 +10,7 @@ if ( ! class_exists( 'Vk_Call_To_Action' ) ) {
10
  const CONTENT_NUMBER = 100;
11
 
12
  public static function init() {
 
13
  add_action( 'veu_package_init', array( __CLASS__, 'option_init' ) );
14
  add_action( 'init', array( __CLASS__, 'set_posttype' ) );
15
  add_action( 'admin_menu', array( __CLASS__, 'add_metabox_cta_register' ) );
@@ -24,6 +25,7 @@ if ( ! class_exists( 'Vk_Call_To_Action' ) ) {
24
  }
25
 
26
  require_once dirname( __FILE__ ) . '/widget-call-to-action.php';
 
27
 
28
  /*
29
  VEU_Metabox 内の get_post_type が実行タイミングによっては
@@ -70,6 +72,15 @@ if ( ! class_exists( 'Vk_Call_To_Action' ) ) {
70
  );
71
  }
72
 
 
 
 
 
 
 
 
 
 
73
  /**
74
  * Set CTA Post Type
75
  *
@@ -412,7 +423,9 @@ if ( ! class_exists( 'Vk_Call_To_Action' ) ) {
412
  if ( ! $query->post_count ) {
413
  return null; }
414
 
415
- return $query->posts[0];
 
 
416
  }
417
 
418
 
@@ -670,6 +683,7 @@ if ( ! class_exists( 'Vk_Call_To_Action' ) ) {
670
  $ctas[] = $post->ID;
671
  }
672
  }
 
673
  return $ctas;
674
  }
675
 
10
  const CONTENT_NUMBER = 100;
11
 
12
  public static function init() {
13
+ add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueue_scripts' ) );
14
  add_action( 'veu_package_init', array( __CLASS__, 'option_init' ) );
15
  add_action( 'init', array( __CLASS__, 'set_posttype' ) );
16
  add_action( 'admin_menu', array( __CLASS__, 'add_metabox_cta_register' ) );
25
  }
26
 
27
  require_once dirname( __FILE__ ) . '/widget-call-to-action.php';
28
+ require_once dirname( __FILE__ ) . '/blocks/index.php';
29
 
30
  /*
31
  VEU_Metabox 内の get_post_type が実行タイミングによっては
72
  );
73
  }
74
 
75
+ public static function enqueue_scripts() {
76
+ wp_enqueue_style(
77
+ 'veu-cta',
78
+ plugin_dir_url( __FILE__ ) . 'css/style.css',
79
+ array(),
80
+ VEU_VERSION
81
+ );
82
+ }
83
+
84
  /**
85
  * Set CTA Post Type
86
  *
423
  if ( ! $query->post_count ) {
424
  return null; }
425
 
426
+ $target = $query->posts[0];
427
+ wp_reset_postdata();
428
+ return $target;
429
  }
430
 
431
 
683
  $ctas[] = $post->ID;
684
  }
685
  }
686
+ wp_reset_postdata();
687
  return $ctas;
688
  }
689
 
inc/call-to-action/package/css/style.css ADDED
@@ -0,0 +1 @@
 
1
+ .veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta .cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}@media (min-width:768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}@media (max-width:767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}
languages/veu-block.pot CHANGED
@@ -3,6 +3,26 @@ msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot\n"
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  #: inc/child-page-index/block.jsx:18
7
  msgid "Child page index"
8
  msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot\n"
5
 
6
+ #: inc/call-to-action/package/blocks/block.jsx:18
7
+ msgid "CTA"
8
+ msgstr ""
9
+
10
+ #: inc/call-to-action/package/blocks/block.jsx:47
11
+ msgid "Because displaying CTA is disabled. The block render no content."
12
+ msgstr ""
13
+
14
+ #: inc/call-to-action/package/blocks/block.jsx:60
15
+ msgid "Please select CTA from Setting sidebar."
16
+ msgstr ""
17
+
18
+ #: inc/call-to-action/package/blocks/block.jsx:69
19
+ msgid "CTA Setting"
20
+ msgstr ""
21
+
22
+ #: inc/call-to-action/package/blocks/block.jsx:72
23
+ msgid "Select CTA"
24
+ msgstr ""
25
+
26
  #: inc/child-page-index/block.jsx:18
27
  msgid "Child page index"
28
  msgstr ""
readme.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: vektor-inc,kurudrive,hinaloe,jim912,hideokamoto,nc30,SaoriMiyazaki
3
  Donate link:
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.3.0
6
- Tested up to: 6.0.1
7
  Requires PHP: 7.2
8
- Stable tag: 9.78.1.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -81,7 +81,11 @@ e.g.
81
 
82
  == Changelog ==
83
 
84
- = 9.79.0.0 =
 
 
 
 
85
  [ Other ] Default setting corresponds to block theme
86
  [ Other ] Update admin settingpage library 2.4.0
87
 
3
  Donate link:
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.3.0
6
+ Tested up to: 6.0.2
7
  Requires PHP: 7.2
8
+ Stable tag: 9.80.0.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
81
 
82
  == Changelog ==
83
 
84
+ = 9.80.0.0 =
85
+ [ Add Function ] Add CTA Block.
86
+ [ Other ] Update admin setting page library 2.5.0
87
+
88
+ = 9.79.0.1 =
89
  [ Other ] Default setting corresponds to block theme
90
  [ Other ] Update admin settingpage library 2.4.0
91
 
vendor/autoload.php CHANGED
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
- return ComposerAutoloaderInit1f0468198d07ce2fc6a9a8c6297500c2::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInitab6c49f62f1d17197f841a6d28fb042a::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit1f0468198d07ce2fc6a9a8c6297500c2
6
  {
7
  private static $loader;
8
 
@@ -24,12 +24,12 @@ class ComposerAutoloaderInit1f0468198d07ce2fc6a9a8c6297500c2
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInit1f0468198d07ce2fc6a9a8c6297500c2', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInit1f0468198d07ce2fc6a9a8c6297500c2', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInit1f0468198d07ce2fc6a9a8c6297500c2::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitab6c49f62f1d17197f841a6d28fb042a
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInitab6c49f62f1d17197f841a6d28fb042a', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInitab6c49f62f1d17197f841a6d28fb042a', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
+ call_user_func(\Composer\Autoload\ComposerStaticInitab6c49f62f1d17197f841a6d28fb042a::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit1f0468198d07ce2fc6a9a8c6297500c2
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'V' =>
@@ -46,9 +46,9 @@ class ComposerStaticInit1f0468198d07ce2fc6a9a8c6297500c2
46
  public static function getInitializer(ClassLoader $loader)
47
  {
48
  return \Closure::bind(function () use ($loader) {
49
- $loader->prefixLengthsPsr4 = ComposerStaticInit1f0468198d07ce2fc6a9a8c6297500c2::$prefixLengthsPsr4;
50
- $loader->prefixDirsPsr4 = ComposerStaticInit1f0468198d07ce2fc6a9a8c6297500c2::$prefixDirsPsr4;
51
- $loader->classMap = ComposerStaticInit1f0468198d07ce2fc6a9a8c6297500c2::$classMap;
52
 
53
  }, null, ClassLoader::class);
54
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitab6c49f62f1d17197f841a6d28fb042a
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'V' =>
46
  public static function getInitializer(ClassLoader $loader)
47
  {
48
  return \Closure::bind(function () use ($loader) {
49
+ $loader->prefixLengthsPsr4 = ComposerStaticInitab6c49f62f1d17197f841a6d28fb042a::$prefixLengthsPsr4;
50
+ $loader->prefixDirsPsr4 = ComposerStaticInitab6c49f62f1d17197f841a6d28fb042a::$prefixDirsPsr4;
51
+ $loader->classMap = ComposerStaticInitab6c49f62f1d17197f841a6d28fb042a::$classMap;
52
 
53
  }, null, ClassLoader::class);
54
  }
vendor/composer/installed.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'vektor-inc/vk-all-in-one-expansion-unit',
4
- 'pretty_version' => '9.79.0.0',
5
- 'version' => '9.79.0.0',
6
- 'reference' => 'a0af7963268f6b508be4a9e8e457dec429922956',
7
  'type' => 'project',
8
  'install_path' => __DIR__ . '/../../',
9
  'aliases' => array(),
@@ -20,9 +20,9 @@
20
  'dev_requirement' => false,
21
  ),
22
  'vektor-inc/vk-all-in-one-expansion-unit' => array(
23
- 'pretty_version' => '9.79.0.0',
24
- 'version' => '9.79.0.0',
25
- 'reference' => 'a0af7963268f6b508be4a9e8e457dec429922956',
26
  'type' => 'project',
27
  'install_path' => __DIR__ . '/../../',
28
  'aliases' => array(),
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'vektor-inc/vk-all-in-one-expansion-unit',
4
+ 'pretty_version' => '9.80.0.0',
5
+ 'version' => '9.80.0.0',
6
+ 'reference' => '8ee1884a875556b5154f58a9fe1731227d861db8',
7
  'type' => 'project',
8
  'install_path' => __DIR__ . '/../../',
9
  'aliases' => array(),
20
  'dev_requirement' => false,
21
  ),
22
  'vektor-inc/vk-all-in-one-expansion-unit' => array(
23
+ 'pretty_version' => '9.80.0.0',
24
+ 'version' => '9.80.0.0',
25
+ 'reference' => '8ee1884a875556b5154f58a9fe1731227d861db8',
26
  'type' => 'project',
27
  'install_path' => __DIR__ . '/../../',
28
  'aliases' => array(),
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
- * Version: 9.79.0.0
7
  * Requires PHP: 7.2
8
  * Author: Vektor,Inc.
9
  * Text Domain: vk-all-in-one-expansion-unit
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
+ * Version: 9.80.0.0
7
  * Requires PHP: 7.2
8
  * Author: Vektor,Inc.
9
  * Text Domain: vk-all-in-one-expansion-unit