Skip to content

Commit e2fc1f4

Browse files
LianaHusAniket-Engg
authored andcommitted
switch instead of check for gridview:Wq
`
1 parent 74df73b commit e2fc1f4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.EECellStyle {
22
min-height: 6rem;
33
max-width: 12rem;
4-
min-width: 10rem;
4+
min-width: 12rem;
55
}

libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
width: 1rem;
2929
height: 1rem;
3030
position: relative;
31-
right: 0.9rem;
32-
top: -0.7rem;
31+
right: 2.1rem;
32+
top: 4.7rem;
3333
background: transparent;
3434
z-index: 1000;
3535
}

libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
103103
tooltipText={ props.titleTooltip ? props.titleTooltip : props.title }
104104
>
105105
<label
106-
className='m-0 p-0 text-uppercase align-items-left font-weight-bold text-truncate overflow-hidden whitespace-nowra'
106+
className='m-0 p-0 text-uppercase align-items-left font-weight-bold text-truncate overflow-hidden whitespace-nowrap'
107107
>{ props.title }
108108
</label>
109109
</CustomTooltip>
@@ -113,7 +113,7 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
113113
</div>
114114
</div>
115115
{ filterCon.showPin && <button
116-
className={`${pinned ? 'fa-circle-check text-dark' : 'fa-circle text-secondary'}` + ` fa-regular border-0 mb-0 remixui_grid_cell_pin`}
116+
className={`${pinned ? 'fas fa-toggle-on fa-lg text-dark' : 'fas fa-toggle-off fa-lg text-secondary'}` + ` fa-regular border-0 mb-0 remixui_grid_cell_pin`}
117117
style={{ fontSize: 'large' }}
118118
data-id={`${pinned ? `${props.id}-pinned` : `${props.id}-unpinned`}`}
119119
onClick={async () => {

0 commit comments

Comments
 (0)