generated from 8iq/nodejs-hackathon-boilerplate-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): DOMA-8921 updated Checkbox (#4675)
* feat(ui): DOMA-8921 updated Checkbox * refactor(ui): DOMA-8921 fixed stylelint * feat(ui): DOMA-8921 remove prop Checkbox.focus * refactor(condo): DOMA-8921 refactored after review
- Loading branch information
Showing
4 changed files
with
70 additions
and
102 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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
.condo-checkbox-inner-layer(@color, @checkbox-inner-border-radius) { | ||
.condo-checkbox-layer(@margin) { | ||
position: absolute; | ||
box-sizing: border-box; | ||
width: 100%; | ||
height: 100%; | ||
background: @color border-box; | ||
border-radius: @checkbox-inner-border-radius; | ||
top: @margin; | ||
right: @margin; | ||
bottom: @margin; | ||
left: @margin; | ||
display: block; | ||
border-radius: inherit; | ||
content: ""; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.condo-transition(@transition-property...) { | ||
transition-timing-function: ease-in; | ||
transition-duration: @condo-global-transition-duration-default; | ||
transition-property: @transition-property; | ||
} |