summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/components/_dualListBox.scss
blob: 0c7d82e31cdf3e64340316718b3564eb2a820297 (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

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color:
.dual-list-box {
  display: flex;
  margin: 25px 0 10px 0;
	.svg-icon.search {
		height: 14px;
		width: 14px;
	}

  .dual-search-multi-select-section {
    flex: 1;

    .dual-text-box-search {
      margin: 5px 0 30px 0;
    }
    .dual-list-box-multi-select {
      flex: 1 1;
      display: flex;
      height: 166px;
      margin-bottom: 0;
      select {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-y: scroll;
        height: inherit;
        option {
          padding: 4px 0 4px 10px;
        }
      }
      option:checked {
        background: $blue linear-gradient(0deg, $blue 0%, $blue 100%);
      }
    }
  }
  .dual-list-options-bar {
    margin: 62px 54px 27px 54px;
    padding-top: 23px;
		.svg-icon {
			width: 14px;
			height: 14px;
		}
    .dual-list-option {
      text-align: center;
      line-height: 10px;
      font-size: 25px;
      width: 20px;
      height: 15px;
      cursor: pointer;
      margin-top: 20px;
      fill: $blue;
    }
  }
}