/**
 * jQuery Lined Textarea Plugin
 *   http://alan.blog-city.com/jquerylinedtextarea.htm
 *
 * Copyright (c) 2010 Alan Williamson
 *
 * Contribution done by Ryan Zielke (neoalchemy@gmail.com)
 *
 * Released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * Usage:
 *   Displays a line number count column to the left of the textarea
 *   
 *   Class up your textarea with a given class, or target it directly
 *   with JQuery Selectors
 *   
 *   $(".lined").linedtextarea({
 *   	selectedLine: 10,
 *    selectedClass: 'lineselect'
 *   });
 *
 */

textarea { resize:both; } 

.linedwrap {
	border: 1px solid #c0c0c0;
	padding: 3px;
	display: inline-block;
}

.linedtextarea {
	padding: 0px;
	margin: 0px;
}

.linedtextarea textarea, .linedwrap .codelines .lineno {
	font-size: 10pt;
	font-family: monospace;
	line-height: normal !important;
}

.linedtextarea textarea {
	padding-right:0.3em;
	padding-top:0.3em;
	border: 0;
}

.linedwrap .lines {
	margin-top: 0px;
	width: 50px;
	float: left;
	overflow: hidden;
	border-right: 1px solid #c0c0c0;
	margin-right: 10px;
}

.linedwrap .codelines {
	padding-top: 5px;
}

.linedwrap .codelines .lineno {
	color:#AAAAAA;
	padding-right: 0.5em;
	padding-top: 0.0em;
	text-align: right;
	white-space: nowrap;
}

.linedwrap .codelines .lineselect {
	color: red;
}
/*新加*/
.linedtextarea textarea, .linedwrap .codelines .lineno {
	font-size: 15px;
	font-family: monospace;
	line-height: normal !important;
	height: 20px;
}
.linedwrap{
	background-color: #EEEEEE;
}
#json_input {
	background-color: #EEEEEE;
	border: #EEEEEE;
	height: 350px;
	margin: 0;
	padding: 0 !important;
	width: 100%;
}
.form-control{
	webkit-box-shadow: inset 0 1px 1px rgba(238,238,238,.075);
	box-shadow: inset 0 1px 1px rgba(238,238,238,.075);

}
.form-control:focus{
	border-color:#eeeeee;!important;
	outline:0;
	-webkit-box-shadow:inset 0 1px 1px rgba(238,238,238,.075),0 0 8px rgba(238,238,238,.6);
}
textarea {
	outline: medium none;
	overflow: auto;
	resize: none;
	vertical-align: top;
}
.linedwrap .codelines {
	padding-top: 1px;
}