/**
 * Indicator for staging server
 */
#tpc_staging {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #900;
  color: #fff;
  text-transform: uppercase;
  font-family: monospace;
  font-size: 40px;
  line-height: 1;
  width: 24px;
  padding: 5px;
  word-wrap: break-word;
  z-index: 999;
}

/* Floating button for views edit node buttons*/
.views-row.has-edit-button {
	position: relative;
	
}
.views-row.has-edit-button .views-field-edit-node a{
	display: none;
}

.views-row.has-edit-button:hover .views-field-edit-node a{
	position: absolute;
	display: block;
	top: 10px;
	right: 10px;
	padding: 10px;
	border-radius: 5px;
	color: #fff !important;
	text-decoration: none;
	background-color: rgba(0,0,0,.5);
	
}

.views-row.has-edit-button:hover .views-field-edit-node a:hover{
	color: #fff !important;
  text-decoration: none;
  background-color: rgba(0,0,0,.8) !important;
  
}