Skip to content

Commit

Permalink
double click-active, pointer
Browse files Browse the repository at this point in the history
Signed-off-by: Veena S <[email protected]>
  • Loading branch information
veenas1 committed Jun 28, 2024
1 parent dd7ebdc commit e1cc0ee
Showing 1 changed file with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,14 @@
background-color: $layer-hover-01;
}
.properties-vt-row-doubleClick{
color: $button-primary;
border: 1px solid $button-primary;
background-color: $background-active;
border-left: 4px solid $button-primary;
cursor: pointer;
&:focus,
&:active {
color: $button-primary;
border: 1px solid $button-primary;
background-color: $background-active;
}
}
.properties-table-cell-control {
// Required for numberfields within react-virtualized table cell
Expand Down Expand Up @@ -194,6 +198,7 @@
&:hover {
background-color: $layer-accent-hover-01;
}
cursor: pointer;
}

.properties-vt-single-selection {
Expand All @@ -207,17 +212,22 @@
padding-left: 3px;
}
.properties-vt-row-selected {
cursor: pointer;
border-left: 4px solid $button-primary;
padding-left: 0;
&:not(.properties-vt-row-disabled):hover {
border-left: 4px solid $button-primary;
}
}
.properties-vt-row-doubleClick{
color: $button-primary;
border: 1px solid $button-primary;
border-left: 4px solid $button-primary;
background-color: $background-active;
cursor: pointer;
&:focus,
&:active {
color: $button-primary;
border: 1px solid $button-primary;
background-color: $background-active;
}
}
}

Expand Down

0 comments on commit e1cc0ee

Please sign in to comment.