summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/target/target.component.scss
blob: ed2d70ec3026bb6cc9221951f0f8c28d68e1b0b4 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.targetTree {
  tree-viewport {
    overflow: hidden;
  }
}

.conatiner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;

  .center-content {
    display: flex;
    width: 100%;

    .action-info {
      background: #93cdff;
      padding: 6px;
      border-radius: 5px;
      height: 20px;
      margin: 0 10px;
    }

    .regex {
      max-width: 250px;
      float: right;
      display: flex;
      align-items: center;
      padding: 20px 10px;

      .label {
        border: 1px solid #d2d2d2;
        padding: 0 5px;
        height: 30px;
        justify-content: center;
        align-items: center;
        display: flex;
      }
    }
  }
}
.target {
  width: 100%;
  .top-select {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .label {
    border: 1px solid #d2d2d2;
    padding: 0 5px;
    height: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .bottom-select {
    border: 1px solid #ccc;
    padding: 7px;
    .filter-container {
      padding: 5px;
      .filter {
        background: #fff;
        color: black;
        font: inherit;
        border: 0;
        outline: 0;
        padding: 10px;
        width: 100%;
      }
    }
  }
}

.small-padding {
  padding-right: 10px;
}

.text-input {
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0 5px;
  border: 1px solid #d2d2d2;
}

.clickable {
  cursor: pointer;
}

.required::before {
  content: '*';
  color: red;
}