Skip to content

Commit c16294c

Browse files
author
pipeline
committed
bug(EJ2-2894): class name updated.
1 parent 168e2f9 commit c16294c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/grid/rowtemplate.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</e-columns>
77
<template #rowTemplate let-data>
88
<tr>
9-
<td class="photo">
9+
<td class="rowphoto">
1010
<img src="src/grid/images/{{data.EmployeeID}}.png" alt="{{data.EmployeeID}}" />
1111
</td>
1212
<td class="details">

src/grid/rowtemplate.style.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
.photo img {
1+
.rowphoto img {
22
width: 100px;
33
height: 100px;
44
border-radius: 50px;
55
box-shadow: inset 0 0 1px #e0e0e0, inset 0 0 14px rgba(0,0,0,0.2);
66
}
77

88
@media screen and (max-width: 600px) and (min-width: 320px) {
9-
.photo img {
9+
.rowphoto img {
1010
width: 50px;
1111
height: 50px;
1212
}
1313
}
1414

1515
@media screen and (max-width: 800px) and (min-width: 600px) {
16-
.photo img {
16+
.rowphoto img {
1717
width: 70px;
1818
height: 70px;
1919
}
2020
}
2121

22-
.photo,
22+
.rowphoto,
2323
.details {
2424
border-color: #e0e0e0;
2525
border-style: solid;
2626
}
2727

28-
.photo {
28+
.rowphoto {
2929
border-width: 1px 0px 0px 0px;
3030
text-align: center;
3131
}

0 commit comments

Comments
 (0)