ZMYaro / holo-web

A CSS library that imitates the Android Holo themes. If you are looking for a similar library for Material Design, try https://MaterialZ.dev.
https://holo.zmyaro.com
MIT License
114 stars 25 forks source link

Carriage returns in source files (^M/CR) #8

Closed marcoms closed 10 years ago

marcoms commented 10 years ago

I just noticed from a git diff (not limited to this file):

+++ b/platforms/android/assets/www/css/holo-base-widgets.css
@@ -0,0 +1,99 @@
+body {^M
+       padding-top:44px;^M
+       padding-bottom:44px;^M
+}^M
+^M
+.actionBar, .holo-actionBar { /* the top action bar should be a <header> element */^M
+       display: block;^M
+       -webkit-box-sizing: border-box;^M
+          -moz-box-sizing: border-box;^M
+               box-sizing: border-box;^M
+       position: fixed;^M
+       top: 0px;^M
...

This can easily be fixed with a simple search+replace in nano or sed

ZMYaro commented 10 years ago

This is what I get for leaving my Linux dev environment. Thanks for fixing it.