Primefaces настроить rowEditor со значком темы
я хотел бы настроить p:rowEditor
значки (карандаш и т. д.) с тем, которые предоставляются любой темой Primefaces, например, Sentinel (см. здесь: [ https://www.primefaces.org/eos/sentinel/font-icons.xhtml][1])
Я отредактировал свой пользовательский файл CSS и попытался переписать классы редактора строк, скопировав элементы CSS, использованные в файл CSS темы Sentinel, в результате получилось следующее:
.ui-datatable table tbody tr td .ui-row-editor .ui-icon-pencil
{
background: none !important;
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
}
.ui-datatable table tbody tr td .ui-row-editor .ui-icon-pencil:before {
content: '\e851';
}
Нет шансов заставить его работать. Я вижу все пустым. Может быть, мне нужно настроить какой-либо атрибут позиции? Любое предложение? Спасибо!
1 ответ
Решение
Скорее всего, text-indent
свойство является причиной не показа содержимого.
components.css
определяет:
.ui-icon{
text-indent: -99999px;
}
Чтобы переопределить это, добавьте text-indent: 0;
к вашему css для .ui-icon-pencil
,