-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
So in the signing widget we can click anywhere on the row for selecting the checkbox.
- Loading branch information
Showing
4 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
A checkbox-container is some element that contains a single checkbox | ||
somewhere and should behave like all of it were the checkbox. E.g. hover on | ||
the container changes the checkbox style, the cursor will be a pointer | ||
everywhere in the container and a click should toggle the checkbox (this | ||
needs to be taken care of in code.) | ||
*/ | ||
.checkbox-container { | ||
cursor: pointer; | ||
} | ||
|
||
.checkbox-container:hover .checkbox__checkmark { | ||
background-color: $hover-background; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters