A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix dark styles for add-to-playlist

+26 -3
+1
CHANGELOG.md
··· 3 3 ## 2.3.0 4 4 5 5 - Adds ability to download a playlist as a zip file 6 + - Fixes dark styles for add-to-playlist overlay 6 7 - No longer scrolls track list to the top when moving things in a playlist or when processing tracks 7 8 8 9 ## 2.2.3
+15 -2
src/Applications/UI/Alfred.elm
··· 14 14 import Material.Icons exposing (Coloring(..)) 15 15 import Material.Icons.Hardware as Icons 16 16 import Return3 exposing (..) 17 + import String.Ext as String 17 18 import Task 18 19 import UI.Reply exposing (Reply) 19 20 ··· 177 178 , C.mt_12 178 179 , C.text_center 179 180 , C.text_white 181 + 182 + -- Dark mode 183 + ------------ 184 + , C.dark__text_base07 180 185 ] 181 186 [ text instance.message ] 182 187 ··· 217 222 , C.text_2xl 218 223 , C.tracking_tad_closer 219 224 , C.w_full 225 + 226 + -- Dark mode 227 + ------------ 228 + , C.dark__bg_base00 220 229 ] 221 230 [] 222 231 ] ··· 234 243 , C.overflow_hidden 235 244 , C.shadow_md 236 245 , C.w_full 246 + 247 + -- Dark mode 248 + ------------ 249 + , C.dark__bg_base00 237 250 ] 238 251 (List.indexedMap 239 252 (\idx result -> ··· 245 258 246 259 -- 247 260 , if idx == instance.focus then 248 - C.text_white 261 + String.joinWithSpace [ C.text_white, C.dark__text_base07 ] 249 262 250 263 else 251 264 C.text_inherit ··· 258 271 C.bg_transparent 259 272 260 273 else 261 - C.bg_gray_100 274 + String.joinWithSpace [ C.bg_gray_100, C.dark__bg_base01 ] 262 275 ] 263 276 [ text result 264 277
+10 -1
src/Library/String/Ext.elm
··· 1 - module String.Ext exposing (addSuffix, chopEnd, chopStart) 1 + module String.Ext exposing (..) 2 2 3 3 {-| Flipped version of `append`. 4 4 -} ··· 6 6 -- 🔱 7 7 8 8 9 + {-| Flipped version of `append`. 10 + -} 9 11 addSuffix : String -> String -> String 10 12 addSuffix a b = 11 13 String.append b a ··· 35 37 36 38 else 37 39 str 40 + 41 + 42 + {-| Join a list of Strings with a space in between. 43 + -} 44 + joinWithSpace : List String -> String 45 + joinWithSpace = 46 + String.join " "