需要更改哪些屬性以更改所選文本出口處的輸入字段顏色?我想刪除暗灰色框突出更改所選出口處的文本輸入背景色
(見下圖)
<div id="ember1102" class="ember-view">
<i class="fa fa-pencil fa-lg editable-row-input-right" style="display:inline-block; " data-ember-action="1103"></i>
<input id="alternate-name-1-265140" type="text" class="pure-input-1 pure-input-inline editable-row-input-left ember-view ember-text-field" disabled="">
</div>
的CSS是大規模發佈所有的在這裏,但這裏是最高級別:
.pure-input-1.pure-input-inline.editable-row-input-left {
display:inline-block;
min-width: 0px;
cursor: text;
&:disabled{
color:inherit;
background-color: inherit;
padding-right: 20px;
&:hover{
background: inherit !important;
}
&:focus{
}
}
&:enabled{
color:inherit;
background-color: white;
&:focus{
background: white !important;
border: 2px solid $ecm-dark-blue !important;
}
&:hover{
background: white !important;
}
}
}
改變了鉻編輯器中的所有顏色屬性我可以看到沒有運氣改變背景顏色。
我也試着背景和-webkit高亮
在您的CSS中代表什麼? –
不好意思。我需要更改標籤 – ajputnam
@ShadiShaaban - 使用sass或更少。它會改變你寫CSS的好方法。 – evolutionxbox