328 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			328 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			SCSS
		
	
	
section.tabs {
 | 
						|
	margin-bottom: 1rem;
 | 
						|
 | 
						|
	.sites {
 | 
						|
		position: relative;
 | 
						|
		margin-bottom: 1rem;
 | 
						|
	}
 | 
						|
 | 
						|
	.lead {
 | 
						|
		margin-top: 0.5rem;
 | 
						|
	}
 | 
						|
 | 
						|
	.nav-tabs {
 | 
						|
		.nav-item {
 | 
						|
			&.disabled {
 | 
						|
				pointer-events: none;
 | 
						|
				user-select: none;
 | 
						|
				flex-grow: 0;
 | 
						|
				padding: 0 1rem;
 | 
						|
				font-weight: 700;
 | 
						|
				font-style: italic;
 | 
						|
				color: #666;
 | 
						|
			}
 | 
						|
 | 
						|
			.nav-link {
 | 
						|
				padding-top: 0.25rem;
 | 
						|
				padding-bottom: 0.25rem;
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		&.nav-site-tab {
 | 
						|
			.nav-item {
 | 
						|
				.nav-link {
 | 
						|
					&:hover {
 | 
						|
						@include media-breakpoint-up(xl) {
 | 
						|
							background-color: #f8f8f8;
 | 
						|
						}
 | 
						|
					}
 | 
						|
 | 
						|
					&.active {
 | 
						|
						@include media-breakpoint-up(xl) {
 | 
						|
							background-color: #f8f8f8;
 | 
						|
							border-bottom-color: #f8f8f8;
 | 
						|
							background-color: #f8f8f8;
 | 
						|
						}
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		.nav-item {
 | 
						|
			flex-basis: 50%;
 | 
						|
 | 
						|
			@include media-breakpoint-down(lg) {
 | 
						|
				.nav-link {
 | 
						|
					border-bottom-left-radius: $border-radius;
 | 
						|
					border-bottom-right-radius: $border-radius;
 | 
						|
				}
 | 
						|
 | 
						|
				&:nth-last-child(-n+2) {
 | 
						|
					.nav-link {
 | 
						|
						border-bottom-left-radius: 0;
 | 
						|
						border-bottom-right-radius: 0;
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
 | 
						|
			@include media-breakpoint-up(xl) {
 | 
						|
				flex: 1 1 auto;
 | 
						|
			}
 | 
						|
 | 
						|
			.nav-link {
 | 
						|
				cursor: pointer;
 | 
						|
				position: relative;
 | 
						|
				transition: all 0.25s;
 | 
						|
				font-size: 0.9rem;
 | 
						|
				white-space: nowrap;
 | 
						|
 | 
						|
				@include media-breakpoint-up(xl) {
 | 
						|
					padding-left: 0;
 | 
						|
					padding-right: 0.75rem;
 | 
						|
					text-align: center;
 | 
						|
				}
 | 
						|
 | 
						|
				&.active {
 | 
						|
					@include media-breakpoint-down(lg) {
 | 
						|
						color: #fff;
 | 
						|
						border-color: #343a40;
 | 
						|
						background-color: #343a40;
 | 
						|
 | 
						|
						&.text-muted {
 | 
						|
							color: #fff !important;
 | 
						|
						}
 | 
						|
					}
 | 
						|
 | 
						|
					@include media-breakpoint-up(xl) {
 | 
						|
						border-bottom-color: #fff;
 | 
						|
						background-color: transparent;
 | 
						|
					}
 | 
						|
				}
 | 
						|
 | 
						|
				&.changed {
 | 
						|
					font-weight: 700;
 | 
						|
 | 
						|
					small {
 | 
						|
						display: inline;
 | 
						|
 | 
						|
						@include media-breakpoint-up(xl) {
 | 
						|
							padding-left: 0.2rem;
 | 
						|
						}
 | 
						|
					}
 | 
						|
				}
 | 
						|
 | 
						|
				small {
 | 
						|
					position: absolute;
 | 
						|
					top: 50%;
 | 
						|
					transform: translateY(-50%);
 | 
						|
					display: none;
 | 
						|
					color: #999;
 | 
						|
 | 
						|
					@include media-breakpoint-down(lg) {
 | 
						|
						right: 0.25rem;
 | 
						|
					}
 | 
						|
				}
 | 
						|
 | 
						|
				button.close {
 | 
						|
					line-height: 0.8;
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	.tab-content {
 | 
						|
		padding: 0.5rem 0.75rem 0.25rem;
 | 
						|
		border-left: 1px solid #dee2e6;
 | 
						|
		border-right: 1px solid #dee2e6;
 | 
						|
		border-bottom: 1px solid #dee2e6;
 | 
						|
		border-bottom-right-radius: 0.25rem;
 | 
						|
		border-bottom-left-radius: 0.25rem;
 | 
						|
 | 
						|
		&.site-content {
 | 
						|
			background-color: #f8f8f8;
 | 
						|
 | 
						|
			.form-group {
 | 
						|
				margin-bottom: 0;
 | 
						|
 | 
						|
				.form-check {
 | 
						|
					// padding-top: 0.25rem;
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		.row + .row:not(.form-group) {
 | 
						|
			margin-top: 0.5rem;
 | 
						|
		}
 | 
						|
 | 
						|
		.disabled {
 | 
						|
			pointer-events: none;
 | 
						|
			user-select: none;
 | 
						|
			opacity: 0.4;
 | 
						|
 | 
						|
			.disabled {
 | 
						|
				opacity: 1;
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		.form-group {
 | 
						|
			margin-bottom: 0.25rem;
 | 
						|
 | 
						|
			@include media-breakpoint-only(xs) {
 | 
						|
				margin-bottom: 0.5rem;
 | 
						|
			}
 | 
						|
 | 
						|
			&:last-child {
 | 
						|
				margin-bottom: 0;
 | 
						|
			}
 | 
						|
 | 
						|
			.form-control-sm {
 | 
						|
				padding-top: 0;
 | 
						|
				padding-bottom: 0;
 | 
						|
			}
 | 
						|
 | 
						|
			select.form-control-sm {
 | 
						|
				height: 24px;
 | 
						|
			}
 | 
						|
 | 
						|
			.col-form-label-sm {
 | 
						|
				padding-top: 0.2rem;
 | 
						|
				padding-bottom: 0;
 | 
						|
			}
 | 
						|
 | 
						|
			.input-group-sm {
 | 
						|
				.input-group-text {
 | 
						|
					font-size: 0.75rem;
 | 
						|
				}
 | 
						|
			}
 | 
						|
 | 
						|
			label {
 | 
						|
				margin-bottom: 0;
 | 
						|
 | 
						|
				&.col-form-label {
 | 
						|
					@include media-breakpoint-only(xs) {
 | 
						|
						font-weight: 700;
 | 
						|
						margin-bottom: -0.25rem;
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
 | 
						|
			.form-check {
 | 
						|
				font-size: 0;
 | 
						|
				padding-bottom: 3px;
 | 
						|
 | 
						|
				&.form-check-left {
 | 
						|
					padding-left: 0;
 | 
						|
 | 
						|
					.form-check-input {
 | 
						|
						position: relative;
 | 
						|
						margin-left: 0.25rem;
 | 
						|
					}
 | 
						|
				}
 | 
						|
 | 
						|
				.form-check-label {
 | 
						|
					cursor: pointer;
 | 
						|
					user-select: none;
 | 
						|
				}
 | 
						|
			}
 | 
						|
 | 
						|
			.form-control.input-changed,
 | 
						|
			.form-check.input-changed,
 | 
						|
			select.input-changed {
 | 
						|
				background-color: #fdffd9;
 | 
						|
			}
 | 
						|
 | 
						|
			.form-check.input-changed {
 | 
						|
				border-radius: 0.2rem;
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
main {
 | 
						|
	flex: 1 1 auto;
 | 
						|
	opacity: 0;
 | 
						|
	transition: opacity 0.25s ease-in-out;
 | 
						|
 | 
						|
	&.active {
 | 
						|
		opacity: 1;
 | 
						|
	}
 | 
						|
 | 
						|
	.btn {
 | 
						|
		&.btn-download {
 | 
						|
			margin: 2px 0;
 | 
						|
			img {
 | 
						|
				vertical-align: -1px;
 | 
						|
				margin-right: 0.1rem;
 | 
						|
				width: 1rem;
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	.commands {
 | 
						|
		margin-bottom: 1rem;
 | 
						|
		line-height: 1.35;
 | 
						|
 | 
						|
		.step {
 | 
						|
			counter-reset: step-command-counter;
 | 
						|
 | 
						|
			.counter {
 | 
						|
				display: inline-block;
 | 
						|
				margin-top: 0.15rem;
 | 
						|
 | 
						|
				&::before {
 | 
						|
					counter-increment: step-command-counter;
 | 
						|
					content: counter(step-command-counter);
 | 
						|
				}
 | 
						|
			}
 | 
						|
 | 
						|
			& > span:first-of-type .counter {
 | 
						|
				margin-top: 0;
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	.file {
 | 
						|
		margin-bottom: 2rem;
 | 
						|
 | 
						|
		.btn-clipboard {
 | 
						|
			font-size: 0;
 | 
						|
			padding: 0.2rem 0.4rem 0.05rem;
 | 
						|
			vertical-align: text-bottom;
 | 
						|
			float: right;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	.base64-zip-line-container {
 | 
						|
		position: relative;
 | 
						|
		overflow: hidden;
 | 
						|
 | 
						|
		#base64-zip-line {
 | 
						|
			position: absolute;
 | 
						|
			top: -9999px;
 | 
						|
			left: -9999px;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	.commands,
 | 
						|
	.file .code {
 | 
						|
		overflow-x: auto;
 | 
						|
		font-size: 0.75rem;
 | 
						|
		line-height: 1.25;
 | 
						|
		background-color: #f8f8f8;
 | 
						|
		border: 1px solid #e8e8e8;
 | 
						|
 | 
						|
		pre {
 | 
						|
			margin-bottom: 0;
 | 
						|
			font-size: inherit;
 | 
						|
 | 
						|
			code {
 | 
						|
				display: block;
 | 
						|
				padding: 8px 8px 12px;
 | 
						|
				-moz-tab-size: 4;
 | 
						|
				tab-size: 4;
 | 
						|
				overflow: visible;
 | 
						|
				overflow-x: visible;
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |