2014-04-30 16 views
0

我知道這可能是一個愚蠢的問題。我一直試圖去除點擊ThemeRoller一段時間後的任何按鈕。數據主題滾輪中沒有給出選項來更改顏色或將其刪除。如何刪除在主題滾輪按鈕單擊後的陰影效果

任何人都可以幫助我。

感謝

編輯1 好的蝸居到CSS這是爲我工作

/* Focus buttons and text inputs with div wrap */ 
.ui-page-theme-c .ui-focus, 
html .ui-bar-c .ui-focus, 
html .ui-body-c .ui-focus, 
html body .ui-group-theme-c .ui-focus, 
html head + body .ui-btn-c.ui-focus, 
html head + body .ui-body-c.ui-focus { 
    -webkit-box-shadow: 0 0 0px #3388cc /*{c-active-background-color}*/; 
    -moz-box-shadow: 0 0 0px #3388cc /*{c-active-background-color}*/; 
    box-shadow: 0 0 0px #3388cc /*{c-active-background-color}*/; 
} 

作出的影子爲0px,而不是默認的12像素之後。

注:你必須這樣做,在各自的主題,像我的是數據的主題-C

感謝誰分享那裏的人回答

+0

後您的代碼,請 – Richa

回答

1

好的蝸居到CSS後這對我來說

/* Focus buttons and text inputs with div wrap */ 
.ui-page-theme-c .ui-focus, 
html .ui-bar-c .ui-focus, 
html .ui-body-c .ui-focus, 
html body .ui-group-theme-c .ui-focus, 
html head + body .ui-btn-c.ui-focus, 
html head + body .ui-body-c.ui-focus { 
    -webkit-box-shadow: 0 0 0px #3388cc /*{c-active-background-color}*/; 
    -moz-box-shadow: 0 0 0px #3388cc /*{c-active-background-color}*/; 
    box-shadow: 0 0 0px #3388cc /*{c-active-background-color}*/; 
} 

作出的影子爲0px,而不是默認的12px的什麼工作。

注意:你必須這樣做,在各自的主題,像我的是數據的主題-C

感謝誰分享那裏的人回答

1

那麼你可以嘗試以下方式:

button:active{ 
box-shadow: none !important; 
} 

如果問題與盒子陰影不相關,請嘗試概述。

+0

它不工作。我也嘗試過使用大綱。我想改變的是點擊按鈕後出現的陰影效果,我認爲默認顏色是淺藍色 – Vikram