I just did what Ralph partially said. I just added these and achieved what I wanted to.
Code:
input[type=text], input[type=password] {
font-size:14px;
border:0.7px solid #ccc;
background: white;
padding: 4px 6px;
line-height: 20px;
height: 20px;
width: 160px;
border-radius: 4px;
}
input[type=text]:focus, input[type=password]:focus{
border-color:black;
-moz-box-shadow: 0px 0px 6px #dfdfdf;
-webkit-box-shadow: 0px 0px 6px #dfdfdf;
box-shadow: 0px 0px 6px #dfdfdf;
}
.dropdown-menu > li > a:hover {
color:white;
background:black;
}
Bookmarks