-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #794 from BoostIO/fix-progress-bar-ui
Fix progress bar ui at Noteitem
- Loading branch information
Showing
4 changed files
with
19 additions
and
10 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
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 |
---|---|---|
@@ -1,36 +1,45 @@ | ||
.todo-process | ||
font-size 12px | ||
display flex | ||
padding-top 15px | ||
width 85% | ||
|
||
.todo-process-text | ||
display inline-block | ||
padding-right 10px | ||
white-space nowrap | ||
text-overflow ellipsis | ||
color $ui-inactive-text-color | ||
i | ||
color grey | ||
color $ui-inactive-text-color | ||
padding-right 5px | ||
|
||
.todo-process-bar | ||
display inline-block | ||
margin auto | ||
width 150px | ||
height 5px | ||
height 4px | ||
border-radius 10px | ||
background-color #DADFE1 | ||
border-radius 2px | ||
flex-grow 1 | ||
border 1px solid alpha(#6C7A89, 10%) | ||
|
||
.todo-process-bar--inner | ||
height 100% | ||
border-radius 5px | ||
background-color #6C7A89 | ||
transition 0.3s | ||
|
||
|
||
body[data-theme="dark"] | ||
.todo-process | ||
color $ui-dark-text-color | ||
|
||
.todo-process-bar | ||
background-color #363A3D | ||
|
||
.todo-process-text | ||
color $ui-inactive-text-color | ||
|
||
.todo-process-bar--inner | ||
background-color: alpha(#939395, 50%) |