summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/modules/_softwareProductComponentNetwork.scss
blob: e14ab02fcd79b1426d0b41f7282b1d3ca0bfe9de (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
75
76
77
78
79
80
81
.vsp-components-network {
  .network-data {
    .single-col {
      .validation-input-wrapper {
        label {
          max-width: 230px;
        }
      }
    }
  }
  .list-editor-view {
    margin-top: 50px;
  }
}
.network-nic-modal {
  .modal-body {
    padding: 0;
  }
  .vsp-components-network-editor {
    .editor-data {
      padding-left: 50px;
      padding-right: 50px;
      padding-top: 20px;
      height: 500px;
      .grid-section {
        padding-bottom: 15px;
        .section-title {
          @extend .heading-5;
          padding-bottom: 10px;
          padding-left: 0px;
        }
      }
      .part-title {
        @extend .heading-5;
        padding-bottom: 10px;
        padding-left: 14px;
      }
      .part-title-small {
        @extend .heading-3;
        padding-bottom: 10px;
        padding-left: 0px;
      }
      .network-radio label {
        font-size: 15px;
      }

      .packets-bytes-gen {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        .top-row {
          display: flex;
          .part-title-small {
            padding-left: 0px;
            &.packets {
              flex: 0 0 52%;
            }
            &.bytes {
              flex: 0 0 48%;
            }
          }
        }
        .bottom-row {
          display: flex;
          justify-content: space-between;
          flex-direction: row;
          flex: 1;
          .inputs-wrapper {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            flex: 1;
            .validation-input-wrapper {
              flex: 0 0 22%;
            }
          }
        }
      }
    }
  }
}