aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/_components.scss
blob: bd85f547c9276489b8a13eeffe48cd97285f9367 (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

@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: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /
@import "components/punchOut";
@import "components/buttons";
@import "components/forms";
@import "components/validationForm";
@import "components/dualListBox";
@import "components/listEditorView";
@import "components/toggleInput";
@import "components/notifications";
@import "components/inputOptions";
@import "components/progressBar";
@import "components/versionController";
@import "components/sequenceDiagram";
@import "components/navigationSideBar";
@import "components/loader";
@import "components/dropzone";
@import "components/submitErrorResponse";
@import "components/expandableInput";
@import "components/grid";
@import "components/icon";
@import "components/svgIcon";
@import "components/activityLog";
@import "components/selectActionTable";

%noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.clickable {
  cursor: pointer;
}

.no-padding {
  padding: 0;
}

.next-to-icon-label {
  $margin: 10px;
  margin-left: $margin;
  &.right {
    margin-left: 0;
    margin-right: $margin;
  }
}

.search-wrapper {
  display: flex;
  .search-input-control {
    flex: 1 1;
    margin: 0;
    .form-control {
      font-style: italic;
    }
  }
  .search-icon {
    position: relative;
    left: -23px;
    align-self: center;
    width: 0;
    color: $dark-gray;
  }
  .filter-icon {
    position: relative;
    left: -20px;
    align-self: center;
    width: 0;
    background-color: $white;
  }
}

.warning-icon {
  margin-left: 50%;
  color: $yellow;
}

.chevron::before {
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  content: '';
  display: inline-block;
  height: 0.8em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  width: 0.8em;
}
.chevron.right:before {
  left: 0;
  transform: rotate(45deg);
}
.chevron.down:before {
  transform: rotate(135deg);
}
.chevron.left:before {
  transform: rotate(-135deg);
}
.chevron.top:before {
  transform: rotate(-45deg);
}