-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.css
More file actions
83 lines (69 loc) · 1.64 KB
/
Copy pathindex.css
File metadata and controls
83 lines (69 loc) · 1.64 KB
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
/* shared styles are loaded from: */
/* https://dl.infragistics.com/x/css/samples/shared.v8.css */
igc-badge {
--ig-size: var(--ig-size-small);
}
.badge-teal {
--ig-badge-background-color: var(--ig-success-700);
--ig-badge-border-radius: 50%;
}
.badge-amber {
--ig-badge-background-color: #C97C00;
--ig-badge-border-radius: 50%;
}
.badge-magenta {
--ig-badge-background-color: #9C27B0;
--ig-badge-text-color: var(--ig-gray-50);
--ig-badge-border-radius: 50%;
}
.badge-lime {
--ig-badge-background-color: var(--ig-success-700);
--ig-badge-border-radius: 50%;
--ig-badge-dot-size: 0.5rem;
}
.badge-teal igc-icon,
.badge-amber igc-icon,
.styling-item.pink igc-avatar igc-icon {
color: var(--ig-gray-50);
}
.badge-teal igc-icon {
position: relative;
}
.badge-teal igc-icon::after {
content: "";
position: absolute;
inset: 50% auto auto 50%;
width: 4px;
height: 4px;
border-radius: 50%;
background: var(--ig-success-700);
transform: translate(-50%, -50%);
}
.styling-item igc-avatar {
--size: 40px;
}
.styling-item.green igc-avatar {
--icon-color: var(--ig-success-900);
--ig-avatar-background: var(--ig-success-200);
--ig-avatar-color: var(--ig-success-900);
}
.styling-item.pink igc-avatar {
--ig-avatar-background: #DA64FF;
--ig-avatar-color: var(--ig-gray-50);
}
.styling-item igc-badge {
position: absolute;
inset-block-end: -2px;
inset-inline-end: -2px;
}
.badge-styling {
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
min-height: 7rem;
}
.styling-item {
position: relative;
display: flex;
}