summaryrefslogtreecommitdiffstats
path: root/app/server-health/styles/inventory.scss
blob: 7b1d0dd4ca7403df3a27db61aeca4a53055f610e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.inventory__container {
  h3,
  h4{
    margin-bottom: 0;
  }
  h4{
    font-size: 1rem;
    font-weight: bold;
  }
  padding-bottom: 5em;
  .content__search {
    margin-right: 0;
  }
  .inventory__table {
    .hardware__header {
      padding:1.2em 1.5em 1.2em 1.5em;
      background: $background-05;
      font-weight: 700;
      color: $primary-light;
    }
    .ng-hide {
      height: 0;
    }
    .harware__details {
       background: $background-02;
      .hardware__title {
        border-left: 1px solid $border-color-01;
        border-right: 1px solid $border-color-01;
        position: relative;
        font-weight: 700;
        text-transform: capitalize;
        padding: 1em 1.5em 1em 1.5em;
        border-bottom: 1px solid $border-color-01;
        background-color: $primary-light;
        &:hover {
          background: $background-02;
          cursor: pointer;
        }
        &.expanded {
          background: $background-02;
        }
      }
      .hardware__items {
        background: $background-02;
        border-right: 1px solid $border-color-01;
        border-left: 1px solid $border-color-01;
        display: block;
        overflow: hidden;
        @include fastTransition-all;
        &.expanded {
          height: 100%;
          border-bottom: 1px solid $border-color-01;
        }
        .items {
          max-height: 320px;
          padding: 1em 1.5em 1em 1.5em;
          overflow:auto;
          overflow-wrap: break-word;
        }
        .subcomponents {
          max-height: 320px;
          padding: 1em 1.5em 1em 1.5em;
          overflow: auto;
          border-top:1px solid $border-color-01;
          @include mediaQuery(medium) {
            border-top:0;
            border-left:1px solid $border-color-01;
          }
        }
      }
    }
  }
}

OpenPOWER on IntegriCloud