/**
 * Window Shop project main stylesheets file.
 * <p>
 * Note! Add controller/action-specific stylesheets to X_Y.css files (where X is controller name and Y is action name).
 * Those files are automatically loaded from within layouts/default.php.
 * <p>
 * @author Jouni Kähkönen 2013
 */

body {
    overflow-y: scroll;
}

.flexTemplate {
	display:none !important;
}

/* Placeholder text color more gray. */
::-webkit-input-placeholder { color: #aaa !important; }
:-moz-placeholder { color: #aaa !important; }

.cartLink {
	
}

.cartLinkJustAddedItem {
	color: #f89406 !important;
}

.databaseLogRow {
	padding-top:50px;
	padding-bottom:50px;
	padding-left:150px;
	padding-right:150px;
	border:1px solid black;
	background:#eee;
	opacity: 0.1;
	clear:both;
    transition: opacity 0.8s ease-in-out;
}

.databaseLogRow:hover {
	opacity: 1.0;
}

/** Add this class to link (button), if you want to disable it.
    Then you can check in your event handler, if disableLink is set. */
.disableLink {
	color: #E8DBA9;
}
.disableLink:hover {
	color: #E8DBA9;
}
