﻿@import '../default.less';
@import '../mixins.less';
//DON'T ADD IMPORTS, ABOVE ARE TO MAKE INTELLISENSE WORK

div.world-data-finder 
{
	#TextFilter
	{
		background: white url('/Img/v2/page/chosen-sprite.png') no-repeat 100% -22px;
		outline: 0;
		border: 1px solid #AAA;
		font-size: 9pt;
		width: 80%;
		height: 19px;
		font-family: Lucida Sans;
		color: #666;
		padding-left: 3px;
	}

	#VerifyStatus
	{
		outline: 0;
		border: 1px solid #AAA;
		font-size: 9pt;
		width: 18%;
		height: 23px;
		font-family: Lucida Sans;
	}

	table.knoema-table
	{
		tbody
		{
			tr
			{
				&.not-verified
				{
					background-color: #fed6dd;

					&:nth-child(odd)
					{
						background-color: pink;
					}
				}

				&.verified
				{
					background-color: #b7ff9b;

					&:nth-child(odd)
					{
						background-color: #8dff5f;
					}
				}
			}

			a.verify
			{
				display: inline-block;
				margin-bottom: 5px;
			}

			a.mark-verified
			{
				display: inline-block;
			}
		}
	}

	div.legend
	{
		font-size: 9pt;
		font-family: Lucida Sans;

		span
		{
			display: inline-block;
			width: 16px;
			height: 10px;
			border: 1px solid #262626;

			&.not-verified
			{
				background-color: pink;
			}

			&.verified
			{
				background-color: #8dff5f;
			}
		}
	}
}
