Commit b213f64 1 parent 097a6c0 commit b213f64 Copy full SHA for b213f64
File tree 3 files changed +28
-2
lines changed
3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Stors" ,
3
- "version" : " 0.3.2 " ,
3
+ "version" : " 0.3.3 " ,
4
4
"description" : " A simple task manager for a day" ,
5
5
"homepage" : " https://insert.black" ,
6
6
"repository" : " https://github.com/drecodeam/stors" ,
Original file line number Diff line number Diff line change 25
25
[class.ticked] = "!!item.isTicked "
26
26
[class.active] = "(item.id === currentTaskID) "
27
27
>
28
+ < div class ="play-icon ">
29
+ < i class ="ion ion-ios-play "> </ i >
30
+ </ div >
28
31
< div class ="item-time "> {{item.displayTime}}</ div >
29
32
< div class ="item-separator "> | </ div >
30
33
< div class ="item-title "> {{item.name}}</ div >
Original file line number Diff line number Diff line change @@ -104,11 +104,19 @@ $haiti : #170139;
104
104
.task-list-item {
105
105
position : relative ;
106
106
overflow : hidden ;
107
- padding : 1.5rem 2 rem ;
107
+ padding : 1.5rem 1 rem ;
108
108
color : #f1f1f1 ;
109
109
font-family : $font-sans-serif ;
110
110
transition : 0.2s all ease-in-out ;
111
111
line-height : 1.5rem ;
112
+
113
+ .play-icon {
114
+ display : inline-block ;
115
+ padding-right : 1rem ;
116
+ opacity : 0 ;
117
+ transition : 0.4s all ease-in-out ;
118
+ }
119
+
112
120
.done-icon {
113
121
position : absolute ;
114
122
right : 3rem ;
@@ -156,9 +164,15 @@ $haiti : #170139;
156
164
font-weight : 300 ;
157
165
opacity : 0.8 ;
158
166
padding-left : 0.25rem ;
167
+ text-overflow : ellipsis ;
168
+ white-space : nowrap ;
169
+ overflow : hidden ;
170
+ vertical-align : middle ;
171
+ max-width : 220px ;
159
172
}
160
173
.item-progress-bar {
161
174
bottom : 15% ;
175
+ left : 2.5rem ;
162
176
position : absolute ;
163
177
overflow : hidden ;
164
178
background : $pelorous ;
@@ -171,6 +185,9 @@ $haiti : #170139;
171
185
& .ticked {
172
186
text-decoration : line-through ;
173
187
opacity : 0.25 ;
188
+ .play-icon {
189
+ display : none ;
190
+ }
174
191
.active-icon {
175
192
display : none ;
176
193
}
@@ -194,6 +211,9 @@ $haiti : #170139;
194
211
.done-icon {
195
212
opacity : 1 ;
196
213
}
214
+ .play-icon {
215
+ opacity : 1 ;
216
+ }
197
217
.delete-icon {
198
218
opacity : 1 ;
199
219
}
@@ -209,6 +229,9 @@ $haiti : #170139;
209
229
.item-separator {
210
230
animation : animate- progress 2s linear infinite ;
211
231
}
232
+ .play-icon {
233
+ opacity : 1 ;
234
+ }
212
235
}
213
236
}
214
237
}
You can’t perform that action at this time.
0 commit comments