Commit c10d50b3 authored by Laura Schlimmer's avatar Laura Schlimmer
Browse files

metric_explorer -> cockpit

parent c8406481
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
<?php

function fn_render_metric_explorer() {
  $base_path = dirname(__FILE__);
  include($base_path . "/metric-explorer/metric-explorer.html");
  include($base_path . "/metric-explorer/metric-explorer-list.html");
  include($base_path . "/metric-explorer/metric-explorer-preview.html");
?>

<style type="text/css">
  <?php
    include($base_path . "/metric-explorer/fn-metric-explorer.css");
  ?>
</style>

<?php
  }
?>

+0 −7
Original line number Diff line number Diff line
@@ -11,13 +11,6 @@
 * only if attribute future-selectable is set future dates are selectable
 * same holds true for past-selectable
 */

include("../3rdparty/libfnord/fnord-cockpit/fn-cockpit-timenav.html");
include("../3rdparty/libfnord/fnord-webcomponents/components/fn-input.html");
include("../3rdparty/libfnord/fnord-webcomponents/components/fn-datepicker.html");
include("../3rdparty/libfnord/fnord-webcomponents/components/fn-daterangepicker.html");
include("../3rdparty/libfnord/fnord-webcomponents/components/fn-dropdown.html");

class TimeNavigation {

  function __construct() {
+14 −4
Original line number Diff line number Diff line
<?php
  $base_path = dirname(__FILE__);
  include($base_path . "/../fnord-webcomponents/fnord.css");
  include($base_path . "/../fnord-webcomponents/components/fn-input.css");
  include($base_path . "/../fnord-webcomponents/3rdparty/fontawesome.css");
  include($base_path . "/../fnord-webcomponents/components/fn-button.css");
  include($base_path . "/../fnord-webcomponents/components/fn-input.css");
  include($base_path . "/../fnord-webcomponents/components/fn-table.css");
  include($base_path . "/../fnord-webcomponents/components/fn-pager.css");
  include($base_path . "/../fnord-webcomponents/components/fn-message.css");
  include($base_path . "/../fnord-webcomponents/components/fn-modal.css");
?>

html {
  height: 100%;
  font-size: 14px;
@@ -22,10 +35,6 @@ body {
.viewport {
}

<?php
  include("../3rdparty/libfnord/fnord-webcomponents/components/fn-input.css");
?>

a {
  text-decoration: none;
  color: rgba(0,0,0,.8);
@@ -207,3 +216,4 @@ h1.small {
  font-style: normal;
  color: #555;
}
Loading