XF 1.2 Shadow CSS login tab

In the default style that is defined here:

Admin CP -> Appearance -> Templates -> login_bar.css

Rich (BB code):
#loginBar #loginBarHandle
{
	@property "loginBarHandle";
	font-size: 11px;
	color: @primaryLightest;
	background-color: @primaryDarker;
	padding: 0 10px;
	margin-right: 20px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	position: absolute;
	right: 0px;
	bottom: -20px;
	text-align: center;
	z-index: 1;
	line-height: 20px;
	box-shadow: 0px 2px 5px @primaryDarker;
	@property "/loginBarHandle";
}

Or via the style property interface:

Admin CP -> Appearance -> Style Properties -> Login Bar -> Handle
 
Top Bottom