summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/action-list/action-list.component.scss
blob: 67fa048703b9ed3f08d7253ac08a1bb6f8a674cf (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
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #191919;
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 0px;
    margin: 0;
    // padding: 0.4rem 1rem;
  }

  .main-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    flex-grow: 1;
    // overflow-y: auto;
    padding: 24px 10px;
    width: 100%;
    // height: calc(100vh - 54px);
  }
}

.mat-fab,
.mat-mini-fab,
.mat-raised-button {
  box-shadow: none;
}

.button-remove {
  display: flex;
  justify-content: center;
  padding-top: 5px;
  color: #a7a7a7;
  &:hover {
    color: #009fdb;
  }
}

:host {
  @mixin md-icon-size($size: 24px) {
    // font-size: $size;
    height: $size;
    width: $size;
  }

  .material-icons.mat-icon {
    @include md-icon-size(24px);
  }
  /deep/ .mat-button-wrapper {
    padding: 0;
  }
  .mat-icon {
    width: 18px;
    height: 18px;
  }
}

.black {
  color: black;
}
.highlight {
  color: #009fdb;
}

.error-list {
  margin: 10px;
  color: white;
  background: red;
  padding: 1rem;
  border-radius: 5px;
  font-weight: bold;
}