Skip to content

Instantly share code, notes, and snippets.

@xendke
Created October 29, 2018 20:15
Show Gist options
  • Save xendke/044bae669fbcae64d102c635c79332bc to your computer and use it in GitHub Desktop.
Save xendke/044bae669fbcae64d102c635c79332bc to your computer and use it in GitHub Desktop.
Google Chrome - Neater Bookmarks extension custom CSS. Simpler theme
input {
outline: none;
}
img[src="folder.png"] {
display: none;
}
#tree {
padding: 5px 5px;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background:transparent;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: #ccc;
background: rgba(0,0,0,0.2);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(255,0,0,0);
}
@-webkit-keyframes blueFade {
0% {
background-color: transparent;
}
10%{
background-color: #DCDCDC;
}
100% {
background-color: transparent;
}
}
#results ul li a:active,
#results ul li a.active,
#results ul li a:focus,
#tree ul li a:active,
#tree ul li span:active,
#tree ul li a.active,
#tree ul li span.active,
#tree ul li a:focus,
#tree ul li span:focus,
menu[type=context] command:focus{
color: #fff;
background-color: #585858;
background-image: none;
-webkit-box-shadow: 0 -1px #5594d2;
text-shadow: 0 0 rgba(255,255,255,.5), 0 1px rgba(0,0,0,.5);
outline: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment