Skip to content
Snippets Groups Projects
base.less 70.1 KiB
Newer Older
Gabriel Engel's avatar
Gabriel Engel committed
.clearfix {
	clear: both;
	&::after {
		content: "";
		display: table;
Gabriel Engel's avatar
Gabriel Engel committed
*,
*:before,
bharathkkb's avatar
bharathkkb committed
*:after{
bharathkkb's avatar
bharathkkb committed
}
bharathkkb's avatar
bharathkkb committed
*:not(input):not(textarea),
*:not(input):not(textarea):before,
*:not(input):not(textarea):after {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
.no-scroll {
	overflow: hidden !important;
}

.page-settings, .page-settings * {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

:focus {
	outline: 0 !important;
	outline-color: transparent;
	outline-style: none;
}

Gabriel Engel's avatar
Gabriel Engel committed
a {
	text-decoration: none;
Gabriel Engel's avatar
Gabriel Engel committed
code {
	border-radius: 4px;
	border: 1px solid;
Gabriel Engel's avatar
Gabriel Engel committed
	display: block;
Gabriel Engel's avatar
Gabriel Engel committed
	font-size: 13px;
	font-weight: 600;
Gabriel Engel's avatar
Gabriel Engel committed
	margin: 5px 0;
Gabriel Engel's avatar
Gabriel Engel committed
	padding: 0.5em;
Gabriel Engel's avatar
Gabriel Engel committed
	vertical-align: middle;
Gabriel Engel's avatar
Gabriel Engel committed
	word-wrap: break-word;
	text-align: left;
	font-family: "Source Code Pro", Monaco, monospace, Courier, "Lucida Console";
	&.inline {
		display: inline;
		padding: 0 0.5em;
		margin: 0 0.1em;
Gabriel Engel's avatar
Gabriel Engel committed
		line-height: 16px;
		font-family: "Source Code Pro", Monaco, monospace, Courier, "Lucida Console";
pre {
	display: inline-block;
	width: 100%;
}

	padding-left: 10px;
	position: relative;
	&:before {
		content: ' ';
		position: absolute;
.login-terms {
	max-width: 400px;
	margin: auto;

	a {
		font-weight: bold !important;
		text-decoration: underline;

		&:hover {
		}
	}
}

.upload-preview {
	.upload-preview-file {
		height: 200px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
}

.upload-preview-title {
	padding: 3px;
	border-radius: 0 0 5px 5px;
}

	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.copyonly {
	float: left;
	display: inline-block;
	vertical-align: baseline;
	width: 0;
	height: 0;
	font-size: 0;
	-moz-box-orient: vertical;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

Rodrigo Nascimento's avatar
Rodrigo Nascimento committed
.first-unread {
	&.first-unread-opaque {
		.body {
			&::before {
			}

			&::after {
			}
		}
	}
Rodrigo Nascimento's avatar
Rodrigo Nascimento committed
	.body {
		&::before {
			content: "";
			display: block;
			height: 1px;
			position: absolute;
			right: 0px;
			left: 20px;
			top: 0px;
			.transition(background-color, .5s, linear);
Rodrigo Nascimento's avatar
Rodrigo Nascimento committed
		}

		&::after {
			content: "unread messages";
			display: block;
			position: absolute;
			right: 0px;
			top: -4px;
Rodrigo Nascimento's avatar
Rodrigo Nascimento committed
			text-transform: uppercase;
			font-size: 8px;
			padding: 0 5px;
			.transition(color, .5s, linear);
.text-center {
	text-align: center;
}

.connection-status > .alert {
	padding: 2px;
	position: absolute;
	width: 100%;
	border-radius: 0px;
}

.alert {
	padding: 15px;
Loading
Loading full blame...