Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.88 KB | None | 0 0
  1. function repeater_vertical_header() {
  2.   ?>
  3.   <style type="text/css">
  4.     .vertical-header thead {
  5.       float: left;
  6.     }
  7.  
  8.     .vertical-header thead th,
  9.     .vertical-header td {
  10.       display: block;
  11.       width: auto !important;
  12.     }
  13.  
  14.     .vertical-header tbody {
  15.       float: left;
  16.       border-right: 1px solid #e1e1e1;
  17.     }
  18.  
  19.     .vertical-header tbody tr {
  20.       float: left;
  21.     }
  22.  
  23.     .vertical-header th,
  24.     .vertical-header td {
  25.       height: 44px;
  26.       line-height: 27px;
  27.       border-color: #e1e1e1;
  28.       border-width: 1px 0 0 1px !important;
  29.     }
  30.  
  31.     .vertical-header .acf-row-handle {
  32.       background-color: #fff !important;
  33.     }
  34.  
  35.     .vertical-header .acf-row-handle .acf-icon {
  36.       position: static;
  37.       float: left;
  38.       margin: 4px;
  39.     }
  40.   </style>
  41.   <?php
  42. }
  43.  
  44. add_action('acf/input/admin_head', 'repeater_vertical_header');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement