0

怎么改变颜色WinJS.UI.SearchBox?图标和文本颜色。

在此处输入图像描述

4

1 回答 1

1

我不知道是否有任何颜色选项WinJS.UI.SearchBox

输入颜色:

.win-searchbox-suggestion-selected,
.win-searchbox-suggestion-selected:hover,
.win-searchbox-suggestion-selected:focus,
.win-searchbox-button-input-focus,
.win-searchbox-button-input-focus:hover
 {
     background-color : #e2001a; //your color
     color : #000; 
 }

.win-searchbox-flyout-highlighttext
{
   color : #c0009a;
   background: transparent;
}

选定的文字颜色:

::selection {
 background-color:  #e2001a;
 color : #000;
}
于 2013-10-09T13:54:15.160 回答