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
| /*
| =====================
| Task Indicator
| =====================
| */
|
| .widget-five {
| background: $m-color_10;
| padding: 28px 0 0 0;
| height: 100%;
|
| .widget-content {
| .header {
| display: flex;
| justify-content: space-between;
| padding-left: 15px;
| padding-right: 15px;
| padding-bottom: 23px;
| border-bottom: 1px dashed $dark;
| }
|
| .header-body {
| align-self: center;
|
| h6 {
| font-weight: 700;
| font-size: 15px;
| letter-spacing: 0;
| margin-bottom: 0;
| }
|
| p {
| margin-bottom: 0;
| font-weight: 600;
| color: $m-color_6;
| padding: 0;
| }
| }
|
| .task-action {
| display: flex;
|
| .dropdown.custom-dropdown {
| align-self: center;
|
| a.dropdown-toggle svg {
| color: $m-color_6;
| }
|
| .dropdown-menu {
| padding: 8px 8px;
| min-width: 10rem;
| border-radius: 6px;
| top: 5px !important;
| }
| }
| }
| }
|
| .w-content {
| text-align: center;
| height: 100%;
| padding: 20px 26px;
|
| div {
| .task-left {
| margin-bottom: 0;
| font-size: 30px;
| color: $m-color_13;
| background: $m-color_19;
| font-weight: 600;
| border-radius: 50%;
| display: inline-flex;
| height: 76px;
| width: 76px;
| justify-content: center;
| padding: 13px 0px;
| border: 5px solid $m-color_18;
| margin-bottom: 20px;
| -webkit-box-shadow: 0px 0px 8px 2px $m-color_3;
| box-shadow: 0px 0px 8px 2px rgba(172, 176, 195, 0.2392156863);
| }
|
| .task-completed {
| font-size: 14px;
| font-weight: 700;
| margin-bottom: 4px;
| color: $m-color_14;
| }
|
| .task-hight-priority {
| color: $l-dark;
| font-weight: 500;
| margin-bottom: 0;
|
| span {
| color: $info;
| font-weight: 700;
| }
| }
| }
| }
| }
|
|