Ejemplo n.º 1
0
 /**
  * A list of CSS files to include for this page.
  *
  * @return string[]
  */
 protected function stylesheets()
 {
     $stylesheets = parent::stylesheets();
     $stylesheets[] = WT_DATATABLES_BOOTSTRAP_CSS_URL;
     $stylesheets[] = WT_BOOTSTRAP_DATETIMEPICKER_CSS_URL;
     $stylesheets[] = $this->assetUrl() . 'style.css';
     return $stylesheets;
 }
Ejemplo n.º 2
0
 /** {@inheritdoc} */
 public function stylesheets()
 {
     $stylesheets = array($this->jquery_ui_url . 'jquery-ui.min.css', $this->colorbox_url . 'colorbox.css', $this->bootstrap_url . 'css/bootstrap-theme.min.css', $this->assetUrl() . 'style.css', $this->assetUrl() . 'justlight.css');
     return array_merge(parent::stylesheets(), $stylesheets);
 }