How to keep Twitter Bootstrap customization with Bower?

You should never modify the contents of the bower_components folder. We’ll make sure to make that clearer. As for your question. Copy the _variables.scss file from the bower_components folder to eg. app/styles, then import it into your main.scss, or whatever it’s named, above the import statement for bootstrap. This will result in your custom file … Read more

Mysql Color Scheme

I’ve spent much time trying to solve that question. It took me nearly a year to solve it 🙂 There is nice option in mysql config called “pager”. I’ve just published my configs for mysql client and grc (availiable in most nix dists). Check it out on github! https://github.com/nitso/colour-mysql-console

Cannot remove Padding from Tabs when using Custom views with Tab Layout

<android.support.design.widget.TabLayout android:id=”@+id/tab_layout” android:layout_width=”210dp” android:layout_height=”28dp” android:layout_centerInParent=”true” android:background=”@drawable/bg_forum_tab” app:tabIndicatorColor=”@color/colorBtnBg” app:tabIndicatorHeight=”0dp” app:tabPaddingBottom=”-1dp” app:tabPaddingEnd=”-1dp” app:tabPaddingStart=”-1dp” app:tabPaddingTop=”-1dp” app:tabSelectedTextColor=”@color/colorBtnBg” app:tabTextColor=”@color/colorWhite” /> Set tabPaddingStart/tabPaddingEnd/tabPaddingTop/tabPaddingBottom like this.

Android ActionBar Customize Search View

I did a class SearchViewFormatter to format easily the native SearchView android widget. An example: new SearchViewFormatter() .setSearchBackGroundResource(R.drawable.my_bg) .setSearchIconResource(R.drawable.my_ic, true, false) //true to icon inside edittext, false to outside .setSearchVoiceIconResource(R.drawable.my_ic) .setSearchTextColorResource(R.color.my_color) .setSearchHintColorResource(R.color.my_color) .setSearchCloseIconResource(R.drawable.my_ic) .setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS) .format(mSearchView);