Sha256: 39b6a0d55f130bf2bedc8f382b7064a4b3fc9287efc7afed8bde66260dc5d920

Contents?: true

Size: 870 Bytes

Versions: 8

Compression:

Stored size: 870 Bytes

Contents

// TextBox

.@{prefix}-textbox {
	background: @textbox-bg;
	border: 1px solid @textbox-border;
	.border-radius(3px);
	.box-shadow(@textbox-box-shadow);
	display: inline-block;
	.transition(~"border linear .2s, box-shadow linear .2s");
	height: 28px;
	resize: none;
	padding: 0 4px 0 4px;
	white-space: pre-wrap;
	*white-space: pre;
	color: @text;
}

.@{prefix}-textbox:focus, .@{prefix}-textbox.@{prefix}-focus {
	border-color: @textbox-border-focus;
	.box-shadow(inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px fadeout(@textbox-border-focus, 15%));
}

.@{prefix}-placeholder .@{prefix}-textbox {
	color: @textbox-text-placeholder;
}

.@{prefix}-textbox.@{prefix}-multiline {
	padding: 4px;
	height: auto;
}

.@{prefix}-textbox.@{prefix}-disabled {
	color: mix(@text, @textbox-bg, 40%);
}

// RTL

.@{prefix}-rtl .@{prefix}-textbox {
	text-align: right;
	direction: rtl;
}

Version data entries

8 entries across 5 versions & 2 rubygems

Version Path
tinymce-rails-4.5.1 vendor/assets/javascripts/tinymce/skins/lightgray/TextBox.less
tinymce-rails-4.5.0 vendor/assets/javascripts/tinymce/skins/lightgray/TextBox.less
spiderfw-1.0.1 apps/core/components/public/css/tinymce/skins/lightgray/TextBox.less
spiderfw-1.0.1 apps/core/components/public/js/tinymce/skins/lightgray/TextBox.less
spiderfw-1.0.0 apps/core/components/public/css/tinymce/skins/lightgray/TextBox.less
spiderfw-1.0.0 apps/core/components/public/js/tinymce/skins/lightgray/TextBox.less
spiderfw-0.6.39 apps/core/components/public/css/tinymce/skins/lightgray/TextBox.less
spiderfw-0.6.39 apps/core/components/public/js/tinymce/skins/lightgray/TextBox.less