Sha256: 19dfca24897d1210d1cad2b1691085dcd462e075012b48951fb169ae50fce8e2

Contents?: true

Size: 1.16 KB

Versions: 26

Compression:

Stored size: 1.16 KB

Contents

//colors
$color_turquoise_blue_approx: #66d9e0;
$white: #fff;
$black: #000;

#site_chooser {
	width: 20%;
	border-collapse: collapse;
	float: right;
}
#nav {
	list-style: none;
	font-weight: bold;
	margin-bottom: 10px;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	margin: 0;
	cursor: pointer;
	li {
		margin-right: 10px;
		position: relative;
		color: $color_turquoise_blue_approx;
		&:hover {
			a {
				background: $black;
				text-decoration: underline;
			}
			ul a {
				text-decoration: none;
			}
		}
	}
	a {
		display: block;
		padding: 5px;
		color: $white;
		background: $black;
		text-decoration: none;
		&:hover {
			color: $white;
			background: $black;
			text-decoration: underline;
		}
		&.site-link:hover {
			color: $color_turquoise_blue_approx;
			transition: all 0.2s;
		}
	}
	ul {
		background: $white;
		background: rgba(255,255,255,0);
		list-style: none;
		position: absolute;
		margin-top: 10px;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.2s;
		li {
			float: none;
		}
		a {
			white-space: nowrap;
		}
	}
	&:hover ul {
		visibility: visible;
		opacity: 1;
		transition: opacity 0.2s;
		z-index: 99999;
	}
}

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
trusty-cms-4.0.2 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.7 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.6 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.5 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-4.0.1 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.4 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.3 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.2 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-4.0.0 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.1 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.9.0 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.8.4 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.8.3 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.8.2 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.8.1 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.8.0 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.7.1 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.7.0 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.6.2 app/assets/stylesheets/admin/_site_chooser.scss
trusty-cms-3.6.1 app/assets/stylesheets/admin/_site_chooser.scss