summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/components/_progressBar.scss
blob: 040c8cefd764c241a92ecaa36e6d913f7e82e3df (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
 .progress-bar-view {
    display: -webkit-box;
    padding: 5px;
    .progress-bar-outside {
      display: flex;
      width: 90%;
      justify-content: space-between;
      background-color: lightgray;
      border-radius: 15px;
      height: 10px;
      .progress-bar-inside {
        display: block;
        border: 1px solid gainsboro;
        background-color: #4faa39;
        border-radius: inherit;
      }
    }
    .progress-bar-view-label {
      margin-right: -30px;
      margin-top: -2px;
      margin-left: 10px;
      color: black;
     }
  }