Last active
June 25, 2017 01:54
-
-
Save LeoDJ/7aee2f9239396063f807afd47b72d667 to your computer and use it in GitHub Desktop.
Banggood Compact Shopping Cart Bookmarklet
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
javascript:(function(){$(document.head).append('<style>.cart_main_list dt {display: none;}.cart_main_list dd ul {height: 75px;min-height: 0;}.cart_main_list dd ul .td_product a.img {margin-top: -20px;}.cart_main_list dd .ul_total {display: none;}.cart_main {margin-bottom: 0px;border: 0;padding: 0;}.cart_main_list dd ul .td_filter {display: none;}.cart_main_list dd ul .td_product_btn {display: none;}</style>')})() |
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
javascript:(function(){$(document.head).append('<style>.cart_main_list dt {display: none;}.cart_main_list dd ul {height: 40px;min-height: 0;}.cart_main_list dd ul .td_product a.img {margin-top: -20px;}.cart_main_list dd .ul_total {display: none;}.cart_main {margin-bottom: 0px;border: 0;padding: 0;}.cart_main_list dd ul .td_filter {display: none;}.cart_main_list dd ul .td_product_btn {display: none;}.cart_main_list dd ul .td_product a.img {width: 40px;height: 40px;}.cart_main_list dd ul .td_product a.img img {width: 40px;height: 40px;}.cart_main_list dd ul li {padding: 0;}.cart_main_list dd ul .td_quantity a {top: 0;}.cart_main_list dd ul .td_product a.title {margin-left: 50px;}</style>');})() |
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
.cart_main_list dt { | |
display: none; | |
} | |
.cart_main_list dd ul { | |
height: 75px; | |
min-height: 0; | |
} | |
.cart_main_list dd ul .td_product a.img { | |
margin-top: -20px; | |
} | |
.cart_main_list dd .ul_total { | |
display: none; | |
} | |
.cart_main { | |
margin-bottom: 0px; | |
border: 0; | |
padding: 0; | |
} | |
.cart_main_list dd ul .td_filter { | |
display: none; | |
} | |
.cart_main_list dd ul .td_product_btn { | |
display: none; | |
} |
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
/*======================*/ | |
/* even more compact */ | |
/*======================*/ | |
.cart_main_list dt { | |
display: none; | |
} | |
.cart_main_list dd ul { | |
height: 40px; | |
min-height: 0; | |
} | |
.cart_main_list dd ul .td_product a.img { | |
margin-top: -20px; | |
} | |
.cart_main_list dd .ul_total { | |
display: none; | |
} | |
.cart_main { | |
margin-bottom: 0px; | |
border: 0; | |
padding: 0; | |
} | |
.cart_main_list dd ul .td_filter { | |
display: none; | |
} | |
.cart_main_list dd ul .td_product_btn { | |
display: none; | |
} | |
.cart_main_list dd ul .td_product a.img { | |
width: 40px; | |
height: 40px; | |
} | |
.cart_main_list dd ul .td_product a.img img { | |
width: 40px; | |
height: 40px; | |
} | |
.cart_main_list dd ul li { | |
padding: 0; | |
} | |
.cart_main_list dd ul .td_quantity a { | |
top: 0; | |
} | |
.cart_main_list dd ul .td_product a.title { | |
margin-left: 50px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment