All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.css._SourceEditor.scss Maven / Gradle / Ivy

There is a newer version: 4.0.119
Show newest version
.source-editor {
	border-bottom: solid $editorBorderWidth $editorBorderColor;
	border-right: solid $editorBorderWidth $editorBorderColor;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: $editorHeight;
	min-height: $editorMinHeight;
	overflow: hidden;
	position: relative;
	width: 100%;

	@include media-breakpoint-up(sm) {
		float: left;
		height: 50%;
		width: 50%;
	}

	&.json {
		height: 100%;
		width: 100%;
	}

	&__syntax {
		pointer-events: none;
		position: absolute;
		right: 1em;
		top: 0.5em;
		z-index: 10;
	}

	&__fixed-text {
		background-color: $white;
		border-bottom: solid thin $light-l1;
		border-left: 2.25ch solid $light-l1;
		font-size: 0.85rem;
		line-height: 1.5rem;
		padding: 0 0 0 0.75ch;

		&__help {
			margin-right: 0.55rem;

			&__tooltip {
				pointer-events: none;
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy