﻿/*//////////////////////////////////////////////////////////////////////////////
// File: 	ParcelSearchResults.cs
// Purpose:	The CSS styles for the parcel search results list when searching
//			for real estate.
//			This is intended to override any of the existing themeXXX.css style
//			sheets.
//
///////////////////////////////////////////////////////////////////////////////
// Date     Name    Description of Change
// ----------------------------------------------------------------------------
// 05/29/14 CLB     Created. 
///////////////////////////////////////////////////////////////////////////////
//                  *** Proprietary Computer Software ***
// No part of the material contained herein may be reproduced in any form or by
// any means, electronic or mechanical, including photocopying, without 
// permission in writing.
//                  (c) GCS Software, Inc. 2008-2014
///////////////////////////////////////////////////////////////////////////////*/


/* RealEstate class is dynamically added by Search.aspx.cs code.
   For real estate searches we override the row coloring
*/
#content div#resultsListParcel tr.row.RealEstate:hover				{background:#cacad7 !important;} /* medium gray row hover color */
#content div#resultsListParcel tr.alt.RealEstate					{background:#e8e8f5 !important;} /* light gray alternate row color */
#content div#resultsListParcel tr.sel.RealEstate td					{background:#acacb9 !important;} /* dark gray selection color */

/* CurrentParcel class is dynamically added by Search.aspx.cs code.
   For current parcels, the text is green
*/
#content div#resultsListParcel tr.CurrentParcel a 				{color:#006400; text-decoration:none;}
#content div#resultsListParcel tr.CurrentParcel a:visited		{color:#006400;}
#content div#resultsListParcel tr.CurrentParcel a:hover			{color:#006400; text-decoration:none;}
#content div#resultsListParcel tr.CurrentParcel a:active		{color:#006400; text-decoration:none;}

/* HistoricalParcel class is dynamically added by Search.aspx.cs code.
   For historical parcels, the text is red
*/
#content div#resultsListParcel tr.HistoricalParcel a			{color:#ff0000; text-decoration:none;}
#content div#resultsListParcel tr.HistoricalParcel a:visited	{color:#ff0000;}
#content div#resultsListParcel tr.HistoricalParcel a:hover		{color:#ff0000; text-decoration:none;}
#content div#resultsListParcel tr.HistoricalParcel a:active		{color:#ff0000; text-decoration:none;}

