summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/rule-list/rule-list.component.scss
blob: 6446fbd0a7f766ba6b9ea7cdc787b213a3300c97 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
.container {
  // margin: 1rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  .header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #191919;
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 5px;
    margin: 8px 0;
  }
  .item {
    border: 1px solid #d2d2d2;
    padding: 0 10px;
    height: 40px;
  }
  .mat-fab,
  .mat-mini-fab,
  .mat-raised-button {
    box-shadow: none;
  }
}

.my-full-screen-dialog .mat-dialog-container {
  max-width: none;
  width: 100vw;
  height: 100vh;
  padding: 0;
}

.my-confrim-dialog .mat-dialog-container {
  max-width: 600px;
  width: 500px;
  height: 200px;
  padding: 0;
}

.btn-list {
  display: flex !important;
  justify-content: center !important;
  color: #d2d2d2 !important;
  &:hover {
    color: #009fdb !important;
  }
}

.hr {
  display: block;
  margin: 10px 0 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
}

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

.mat-mini-fab .mat-button-wrapper {
  padding: 0 !important;
}

.mat-icon {
  // width: 18px;
  // height: 18px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Rules for sizing the icon. */

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-30 {
  font-size: 30px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */

.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */

.material-icons.md-light {
  color: rgba(255, 255, 255, 1);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}