我正在从SP服务器上进行控制分类法。在设置并从SP服务器(其他工作人员)获取数据后,现在我必须更改其样式,以使其与系统的其他控件保持一致。

此控件是从SP获得的,如下所示http://www.c-sharpcorner.com/UploadFile/93cb27/client-side-taxonomy-picker-for-sharepoint-app/

但是,正如您在最后的结果中看到的那样,我们拥有它的默认样式(如图中所示)

html - 从Sharepoint服务器更改客户端分类法选择器的样式-LMLPHP

所以我的问题是如何更改文本框的样式。

谢谢

最佳答案

我最终为这些课程增加了风格



.ms-taxonomy .ms-taxonomy-fieldeditor .ms-taxonomy-writeableregion {
	position: relative;
	display: block;
	float: left;
	height: 38px;
	line-height: 1.3;
	border: 1px solid #c4c7cc;
	background-color: white;
	border-radius: 5px;
	margin: 0;
	padding: 10px;
	color: #323232;
	width: 100%;
	transition: border-color 0.25s ease;
	font-size: 12px;
    overflow: auto;
}

10-08 08:01