Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Straighten the corners of a custom card

    Code Block
    .OcuDarcula .page.page--im .pointerPopup,
    .OcuLight .page.page--im .pointerPopup {
      border-radius: 0px
    }

  2. Remove the ‘pin - reset popup’ symbol

    Code Block
    .pointerPopup__header__button.pointerPopup__header__button--reset.button {
        display: none;
    }

  3. Remove the line (divider) under the text and above the image

    Code Block
    .divider {
      display: none;
    }

  4. Remove the thick line under the title

    Code Block
    .pointerPopup__content .pointerPopup__content__tabs .pointerPopup__content__tab {
        border: none;
    }

  5. Change the color of the thick line under the title

    Code Block
    .pointerPopup__content .pointerPopup__content__tabs .pointerPopup__content__tab.pointerPopup__content__tab--active {
        border-color: green;
    }

  6. Change the color of the icons in the header (reset, close)

    Code Block
    // in this case we specifically change it for the close button
    .OcuLight .page.page--im .pointerPopup .pointerPopup__header__button--close {
      fill: red;
    }

Scrollable map

  1. For all interactive maps in a scenario

Code Block
:root {--scrollbar-top: 100px;--scrollbar-left: 100px;}

2. For a specific interactive map

Code Block
.im__wrapper--mapName1 {--scrollbar-top: 200px;}

.im__wrapper--mapName2 {--scrollbar-left: 2000px;}

.im__wrapper--mapName3 {--scrollbar-top: 300px;--scrollbar-left: 300px;}