Skip to content

Commit d24bd62

Browse files
tumms2021389manasa
andauthored
feat: MediaCo Todo component override added (#531)
* overridden ToDo component * feat: MediaCo Todo component override added --------- Co-authored-by: manasa <[email protected]>
1 parent a9f70ad commit d24bd62

File tree

6 files changed

+417
-3
lines changed

6 files changed

+417
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pega/react-sdk-components",
3-
"version": "0.25.5",
3+
"version": "0.25.6",
44
"description": "React SDK packaging: bridge and components, overrides",
55
"main": "index.ts",
66
"scripts": {

packages/react-sdk-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pega/react-sdk-components",
3-
"version": "0.25.5",
3+
"version": "0.25.6",
44
"description": "React SDK Infrastructure: bridge and components",
55
"_filesComment": "During packing, npm ignores everything NOT in the files list",
66
"files": [
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
.psdk-display-divider {
2+
border-bottom: 0.0625rem solid var(--app-neutral-light-color);
3+
}
4+
5+
.psdk-todo {
6+
padding: 0.5rem;
7+
}
8+
9+
.psdk-todo-header {
10+
display: inline-flex;
11+
}
12+
13+
.psdk-todo-text {
14+
padding: 0.5rem 0.625rem;
15+
font-size: 1.1rem;
16+
font-weight: bold;
17+
}
18+
19+
.psdk-assignment-count {
20+
background-color: var(--app-primary-light-color);
21+
margin: 0.5rem;
22+
border-radius: 45%;
23+
padding: 0.15rem 0.4rem;
24+
}
25+
26+
.psdk-todo-id {
27+
color: var(--app-primary-color);
28+
cursor: pointer;
29+
}
30+
31+
.psdk-avatar {
32+
margin: 0rem;
33+
padding: 0rem;
34+
min-width: 2.5rem;
35+
min-height: 2.5rem;
36+
max-width: 2.5rem;
37+
max-height: 2.5rem;
38+
border-radius: 50%;
39+
justify-content: center;
40+
align-items: center;
41+
text-align: center;
42+
display: flex;
43+
background: var(--app-primary-color);
44+
color: var(--app-text-color);
45+
font-weight: bold;
46+
font-size: 1.25rem;
47+
}
48+
49+
.psdk-todo-assignment {
50+
display: inline-flex;
51+
width: 100%;
52+
padding: 0.625rem 0rem;
53+
}
54+
55+
.psdk-todo-assignment-data {
56+
display: inline-flex;
57+
}
58+
59+
.psdk-todo-assignment-task {
60+
color: var(--app-neutral-color);
61+
}
62+
63+
.psdk-todo-assignment-action {
64+
display: inline-flex;
65+
}
66+
67+
.psdk-todo-card {
68+
width: 100%;
69+
padding-left: 0.625rem;
70+
}
71+
72+
.psdk-todo-show-more {
73+
width: 100%;
74+
text-align: center;
75+
}
76+
77+
.psdk-todo-avatar-header {
78+
display: flex;
79+
align-items: center;
80+
padding: 16px;
81+
}

0 commit comments

Comments
 (0)