-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.razor
More file actions
97 lines (73 loc) · 4 KB
/
Copy pathIndex.razor
File metadata and controls
97 lines (73 loc) · 4 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
84
85
86
87
88
89
90
91
92
93
94
95
@page "/"
@rendermode InteractiveServer
<PageTitle>Primitive Classes</PageTitle>
<div class="main-content">
<div class="dx-stack">
<div class="dx-label-heading">Primitive classes only</div>
<div class="dx-card dx-card-profile">
<div class="dx-card-header">
<div class="dx-row dx-gap-160 dx-align-start">
<span class="dx-avatar dx-avatar-large">
<img src="images/avatars/Amelia_Harper.png" alt="Amelia Harper">
</span>
<div class="dx-stack dx-flex-grow dx-gap-160">
<div class="dx-stack dx-gap-40">
<div class="dx-row dx-flex-between dx-name-row">
<h3 class="dx-label-name">Amelia Harper</h3>
<DxButton RenderStyleMode="ButtonRenderStyleMode.Text" IconUrl="@Icon.EditPen" />
</div>
<span class="dx-label-role">Engineer</span>
</div>
<div class="dx-row dx-buttons-row">
<DxDropDownButton Text="Call"
IconUrl="@Icon.Phone"
RenderStyle="ButtonRenderStyle.Primary">
<Items>
<DxDropDownButtonItem Text="Mobile" />
<DxDropDownButtonItem Text="Work" />
</Items>
</DxDropDownButton>
<DxButton RenderStyleMode="ButtonRenderStyleMode.Text"
IconUrl="@Icon.Mail" />
<DxButton RenderStyleMode="ButtonRenderStyleMode.Text"
IconUrl="@Icon.Chat" />
</div>
</div>
</div>
<DxTabs>
<DxTabPage Text="Tasks"></DxTabPage>
<DxTabPage Text="Evaluations"></DxTabPage>
</DxTabs>
</div>
<div class="dx-card-body">
<div class="dx-card dx-card-item">
<div class="dx-row dx-flex-between">
<span class="dx-badge dx-badge-success">Low</span>
<span class="dx-badge">12/12/26</span>
</div>
<span class="dx-label-title">Create 2020 R&D Plans</span>
<p class="dx-label-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<DxProgressBar Value="30" LabelPosition="ProgressBarLabelPosition.Right" Size="100%" />
</div>
<div class="dx-card dx-card-item">
<div class="dx-row dx-flex-between">
<span class="dx-badge dx-badge-warning">Medium</span>
<span class="dx-badge">12/12/26</span>
</div>
<span class="dx-label-title">Create 2020 R&D Plans</span>
<p class="dx-label-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<DxProgressBar Value="60" LabelPosition="ProgressBarLabelPosition.Right" Size="100%" />
</div>
<div class="dx-card dx-card-item">
<div class="dx-row dx-flex-between">
<span class="dx-badge dx-badge-danger">High</span>
<span class="dx-badge">12/12/26</span>
</div>
<span class="dx-label-title">Create 2020 R&D Plans</span>
<p class="dx-label-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<DxProgressBar Value="95" LabelPosition="ProgressBarLabelPosition.Right" Size="100%" />
</div>
</div>
</div>
</div>
</div>