StableNet® UI and styles

Stablenet UI Configuration

Set Analytics Portal URL

  1. In the Management / Administration / Default Properties section of Stablenet, search for the Property StableNet® Analytics Portal URL

  2. Edit the property an set it to a SKOOR hosts HTTPS address:

    image-20240308-144939.png

Configure user group

  1. Create a user group in Management / Administration / Users/Customers

  2. Add users to the group in the Group Members section (users with identical names must not exist in SKOOR)

SKOOR UI Configuration

Configure user group

  1. In the SKOOR UI, change to the Engine component

    image-20240515-113724.png
  2. Navigate to /root /Users

  3. Create a user group in SKOOR

    image-20240515-114336.png
  4. Enter the name of the Stablenet user group in the Remote group field

    image-20240515-114254.png
  5. Set a User role to reflect the permissions for this group of users

  6. Choose a start page. This page opens after login into SKOOR

StableNet® Icons

Standard SKOOR installation

Create new favicon directory:

mkdir /srv/eranger/html/favicons_stablenet

Add icons to the new directory favicons_stablenet (ask SKOOR support for incons zip archive):

unzip stablenet_favicons.zip -d /srv/eranger/html/favicons_stablenet/

To configure the SKOOR Dashboards to use the new icons, add or change the title and faviconRoot parameters in the settings.json:

/opt/eranger/eranger-dashboards/settings.json
{
  "title":"StableNet® Analytics Portal",
  "faviconRoot": "/favicons_stablenet"
}

Docker Compose installation

Add StableNet icons and SSL certificates to the eranger-ui services environment section of the SKOOR docker-compose.yaml:

  • The favicons_stablenet directory must be created and items must be added

  • Certificate paths must be changed to valid locations of the host system

      - "${PERSISTENT_FS}/engine/favicons_stablenet:/srv/eranger/html/favicons_stablenet"
      - "${PERSISTENT_FS}/ssl/fullchain.pem:/etc/pki/tls/certs/localhost.crt"
      - "${PERSISTENT_FS}/ssl/privkey.pem:/etc/pki/tls/private/localhost.key"

Add dashboard icons and title to the eranger-webservice services environment section of the SKOOR docker-compose.yaml:

      - SKOOR_DASHBOARD_title=StableNet® Analytics Portal
      - SKOOR_DASHBOARD_faviconRoot=/favicons_stablenet
      - SKOOR_DASHBOARD_etlService=true

StableNet® Theme

Navigate to the Settings section to change the Dashboard theme:

image-20240905-065056.png

Then click the Theme tab:

image-20240905-065237.png

Set the theme UI colors as follows:

  • Background Tint (light): #a9a9a9

  • Accent 1 (light and dark): #54e0cc

CSS

div.layout-footer {
  display: none;
}

body.plain.stablenet.dark {
  background-color: #2a2a2a;
}

body.plain.stablenet .layout-titlebar {
  display: flex !important;
  height: 48px;
  padding-left: 20px !important;
}

body.plain.stablenet .layout-titlebar-actions {
  display: none;
}

body.plain.stablenet .layout-titlebar .dashboard-title {
  padding-left: 0 !important;
}

body.plain.stablenet .layout-titlebar .dashboard-title h1 {
  font-size: 1.2em;
  color: rgb(0, 40, 70);
  font-weight: 600;
}

body.plain.stablenet.dark .layout-titlebar .dashboard-title h1 {
  color: var(--color-text);
}

body.plain.stablenet .layout-titlebar .date-picker-value {
  font-size: 1.2em;
}

body.plain.stablenet .layout-titlebar .date-picker-value h1 {
  min-width: 200px; 
}

body.plain.stablenet .layout-content-sidebar-backdrop {
  display: none;   
}

@media (max-width: 992px)
html:not(.print) body.plain.stablenet .sidebar-visible .layout-content-sidebar-backdrop {
    display: none; 
}

body.stablenet .widget.date_picker svg {
  fill: #115797;
}

body.stablenet.dark .widget.date_picker svg {
  fill: #00cccc;
}