allaw-ui 3.5.7 → 3.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import "../../../styles/colors.css";
|
|
2
|
-
|
|
3
1
|
.inboxBtn {
|
|
4
2
|
display: flex;
|
|
5
3
|
flex-direction: row;
|
|
@@ -21,54 +19,54 @@
|
|
|
21
19
|
}
|
|
22
20
|
|
|
23
21
|
.qualificationActive:hover {
|
|
24
|
-
background-color:
|
|
25
|
-
color:
|
|
22
|
+
background-color: #000000;
|
|
23
|
+
color: #25beeb;
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
.qualificationActive:hover .icon {
|
|
29
|
-
color:
|
|
27
|
+
color: #25beeb;
|
|
30
28
|
}
|
|
31
29
|
|
|
32
30
|
.qualificationActive:hover .label {
|
|
33
|
-
color:
|
|
31
|
+
color: #25beeb;
|
|
34
32
|
}
|
|
35
33
|
|
|
36
34
|
.disabled {
|
|
37
35
|
cursor: initial;
|
|
38
|
-
background-color:
|
|
39
|
-
color:
|
|
36
|
+
background-color: #daebfb;
|
|
37
|
+
color: #1985e8;
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
.qualificationZero {
|
|
43
41
|
cursor: initial;
|
|
44
|
-
background-color:
|
|
45
|
-
color:
|
|
46
|
-
border: 2px solid
|
|
42
|
+
background-color: #ffffff;
|
|
43
|
+
color: #d1dce8;
|
|
44
|
+
border: 2px solid #d1dce8;
|
|
47
45
|
}
|
|
48
46
|
|
|
49
47
|
.qualificationActive {
|
|
50
48
|
background-color: transparent;
|
|
51
|
-
color:
|
|
49
|
+
color: #000000;
|
|
52
50
|
position: relative;
|
|
53
|
-
border: 2px solid
|
|
51
|
+
border: 2px solid #000000;
|
|
54
52
|
overflow: hidden;
|
|
55
53
|
}
|
|
56
54
|
|
|
57
55
|
.qualificationActive:hover {
|
|
58
|
-
background-color:
|
|
59
|
-
color:
|
|
56
|
+
background-color: #000000;
|
|
57
|
+
color: #25beeb;
|
|
60
58
|
}
|
|
61
59
|
|
|
62
60
|
.colorDarkGrey {
|
|
63
|
-
color:
|
|
61
|
+
color: #d1dce8;
|
|
64
62
|
}
|
|
65
63
|
|
|
66
64
|
.colorNoir {
|
|
67
|
-
color:
|
|
65
|
+
color: #000000;
|
|
68
66
|
}
|
|
69
67
|
|
|
70
68
|
.label {
|
|
71
|
-
font-family:
|
|
69
|
+
font-family: "Open Sans", sans-serif;
|
|
72
70
|
font-size: 16px;
|
|
73
71
|
font-style: normal;
|
|
74
72
|
font-weight: 600;
|
|
@@ -76,63 +74,63 @@
|
|
|
76
74
|
}
|
|
77
75
|
|
|
78
76
|
.labelDisabled {
|
|
79
|
-
color:
|
|
77
|
+
color: #1985e8;
|
|
80
78
|
}
|
|
81
79
|
|
|
82
80
|
.bg-mid-grey {
|
|
83
|
-
background-color:
|
|
81
|
+
background-color: #728ea7;
|
|
84
82
|
}
|
|
85
83
|
|
|
86
84
|
.bg-dark-grey {
|
|
87
|
-
background-color:
|
|
85
|
+
background-color: #456073;
|
|
88
86
|
}
|
|
89
87
|
|
|
90
88
|
.bg-noir {
|
|
91
|
-
background-color:
|
|
89
|
+
background-color: #000000;
|
|
92
90
|
}
|
|
93
91
|
|
|
94
92
|
.bg-pure-white {
|
|
95
|
-
background-color:
|
|
93
|
+
background-color: #ffffff;
|
|
96
94
|
}
|
|
97
95
|
|
|
98
96
|
.bg-light-red {
|
|
99
|
-
background-color:
|
|
97
|
+
background-color: #fdf2f2;
|
|
100
98
|
}
|
|
101
99
|
|
|
102
100
|
.bg-light-blue {
|
|
103
|
-
background-color:
|
|
101
|
+
background-color: #daebfb;
|
|
104
102
|
}
|
|
105
103
|
|
|
106
104
|
.bg-dark-green {
|
|
107
|
-
background-color:
|
|
105
|
+
background-color: #29a36a;
|
|
108
106
|
}
|
|
109
107
|
|
|
110
108
|
.color-mid-grey {
|
|
111
|
-
color:
|
|
109
|
+
color: #728ea7;
|
|
112
110
|
}
|
|
113
111
|
|
|
114
112
|
.color-dark-grey {
|
|
115
|
-
color:
|
|
113
|
+
color: #456073;
|
|
116
114
|
}
|
|
117
115
|
|
|
118
116
|
.color-noir {
|
|
119
|
-
color:
|
|
117
|
+
color: #000000;
|
|
120
118
|
}
|
|
121
119
|
|
|
122
120
|
.color-pure-white {
|
|
123
|
-
color:
|
|
121
|
+
color: #ffffff;
|
|
124
122
|
}
|
|
125
123
|
|
|
126
124
|
.color-red {
|
|
127
|
-
color:
|
|
125
|
+
color: #e15151;
|
|
128
126
|
}
|
|
129
127
|
|
|
130
128
|
.color-green {
|
|
131
|
-
color:
|
|
129
|
+
color: #29a36a;
|
|
132
130
|
}
|
|
133
131
|
|
|
134
132
|
.color-blue {
|
|
135
|
-
color:
|
|
133
|
+
color: #1985e8;
|
|
136
134
|
}
|
|
137
135
|
|
|
138
136
|
.icon {
|