Current File : /home/jvzmxxx/wiki/extensions/Flow/modules/styles/flow/widgets/mw.flow.ui.NewTopicWidget.less
.flow-ui-newTopicWidget {
	clear: both;
	margin-top: 1.5em;

	&-title.oo-ui-textInputWidget {
		// OO.ui.TextInputWidget has a max-width: 50 by default
		max-width: none;

		input {
			// Match heading styles
			font-size: 1.5em;
			font-weight: bold;
			line-height: 1.25em;

			// Reproduce mw-input
			-webkit-appearance: none;
			border: 1px solid #ccc;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			width: 100%;
			padding: 0.3em 0.3em 0.3em 0.6em;
			display: block;
			vertical-align: middle;
			border-radius: 2px;
			font-family: inherit;
			-webkit-transition: border 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 ), box-shadow 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 );
			-moz-transition: border 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 ), box-shadow 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 );
			-o-transition: border 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 ), box-shadow 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 );
			transition: border 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 ), box-shadow 0.2s cubic-bezier( 0.39, 0.575, 0.565, 1 );

			&::-webkit-input-placeholder {
				font-style: italic;
				font-weight: normal;
			}
			&::-moz-placeholder {
				font-style: italic;
				font-weight: normal;
			}
			&:-moz-placeholder {
				font-style: italic;
				font-weight: normal;
			}
			&:-ms-input-placeholder {
				font-style: italic;
				font-weight: normal;
			}
		}
	}
}