entities-hierarchy-widget.scss 2.75 KB
/**
 * Copyright © 2016-2020 The Thingsboard Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
.tb-has-timewindow {
  .tb-entities-hierarchy {
    md-toolbar {
      min-height: 60px;
      max-height: 60px;
    }
  }
}

.tb-entities-hierarchy {
  md-toolbar {
    min-height: 39px;
    max-height: 39px;
  }

  .tb-entities-nav-tree-panel {
    overflow-x: auto;
    overflow-y: auto;

    .tb-nav-tree-container {
      &.jstree-proton {
        .jstree-anchor {
          div.node-icon {
            display: inline-block;
            width: 22px;
            height: 22px;
            margin-right: 2px;
            margin-bottom: 2px;
            background-color: transparent;
            background-repeat: no-repeat;
            background-attachment: scroll;
            background-position: center center;
            background-size: 18px 18px;
          }

          md-icon.node-icon {
            width: 22px;
            min-width: 22px;
            height: 22px;
            min-height: 22px;
            margin-right: 2px;
            margin-bottom: 2px;
            color: inherit;

            &.material-icons { /* stylelint-disable-line selector-max-class */
              font-size: 18px;
              line-height: 22px;
              text-align: center;
            }
          }

          &.jstree-hovered:not(.jstree-clicked),
          &.jstree-disabled {
            div.node-icon { /* stylelint-disable-line selector-max-class */
              opacity: .5;
            }
          }
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .tb-entities-hierarchy {
    .tb-entities-nav-tree-panel {
      .tb-nav-tree-container {
        &.jstree-proton-responsive {
          .jstree-anchor {
            div.node-icon {
              width: 40px;
              height: 40px;
              margin: 0;
              background-size: 24px 24px;
            }

            md-icon.node-icon {
              width: 40px;
              min-width: 40px;
              height: 40px;
              min-height: 40px;
              margin: 0;

              &.material-icons { /* stylelint-disable-line selector-max-class */
                font-size: 24px;
                line-height: 40px;
              }
            }
          }
        }
      }
    }
  }
}