Exemple #1
0
 /**
  * Enqueues specific tabs assets for the active pages
  *
  * @since 1.0.0
  * @access protected
  */
 protected function enqueue_active_assets()
 {
     parent::enqueue_active_assets();
     echo '<style type="text/css">';
     echo '#' . $this->id() . ' .uix-repeat{ box-shadow: 1px 0 0 ' . $this->base_color() . ' inset, -37px 0 0 #f5f5f5 inset, -38px 0 0 #ddd inset, 0 2px 3px rgba(0, 0, 0, 0.05); };';
     echo '</stype>';
 }
Exemple #2
0
 /**
  * Enqueues specific tabs assets for the active pages
  *
  * @since 1.0.0
  * @access protected
  */
 protected function enqueue_active_assets()
 {
     echo '<style>';
     echo 'h3#' . $this->id() . '_uixModalLable { background: ' . $this->base_color() . '; }';
     echo '#' . $this->id() . '_uixModal.uix-modal-wrap > .uix-modal-body:after {background: url(' . $this->url . 'assets/svg/loading.php?base_color=' . urlencode(str_replace('#', '', $this->base_color())) . ') no-repeat center center;}';
     echo '</style>';
     parent::enqueue_active_assets();
 }