HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.33
System: Linux li317-225.members.linode.com 3.10.0-1062.12.1.el7.x86_64 #1 SMP Tue Feb 4 23:02:59 UTC 2020 x86_64
User: apache (48)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/farmoskosmicfarms_backup/resources/css/sass/gui/_summernote.scss
/* Summernote */
.note-editor {
	&, &.note-frame {
		border: 1px solid #ddd;
		margin-top: 0 !important;
	}

	border-radius: 4px;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

	&.active {
		border-color: #66afe9;
		box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);
	}

	.note-title {
		padding-top: 0 !important;
	}

	.btn-light {
		border-color: #CCC !important;
	}

	.note-toolbar {
		background-color: #f5f5f5;
		border: {
			bottom: 1px dashed #ddd;
			left: none;
			right: none;
			top: none;
		}
		border-radius: 4px 4px 0 0;
		padding: 3px 10px 7px;
		user-select: none;

		i {
			margin: 0;

			&:before {
				margin: 0;
			}
		}

		.btn-group {
			float: none !important;

			> .btn-group:last-child > .btn:first-child {
				border-bottom-left-radius: 3px;
				border-top-left-radius: 3px;
			}

			> .btn-group:first-child > .btn:last-child,
			> .btn-group:first-child > .dropdown-toggle {
				border-bottom-right-radius: 3px;
				border-top-right-radius: 3px;
			}
		}

		@media only screen and (max-width: 767px) {
			text-align: center;
		}
	}

	.note-editable {
		clear: both;
		background: #FFF;
		border: none;
		border-radius: 0 0 4px 4px;
		font-family: Arial, Helvetica, Sans-serif;
	}

	.note-statusbar {
		background: #FFF;
		border-radius: 0 0 4px 4px;

		.note-resizebar {
			border-color: #DDD;
			display: block;
		}
	}
}


// DARK
// -----------------------------------------------------------------------------
html.dark {

	.note-editor {
		border-color: $dark-color-3;
		color: #EEE;

		.note-toolbar,
		.note-statusbar {
			background: $dark-color-5;
			border-color: $dark-color-1;

			.note-btn {
				background: $dark-color-3;
				border-color: $dark-color-4 !important;
			}
		}

		.note-editable {
			background: $dark-color-3;
			border-color: $dark-color-1;
		}

		.note-statusbar .note-resizebar {
			border-color: $dark-color-1;

			.note-icon-bar {
				border-color: #444;
			}
		}

		.note-editing-area .note-editable {
			color: #EEE;
			background: $dark-color-3;
		}

		.caret {
			border-color: #FFF transparent transparent;
		}
	}

}