例如,在twitter引導中有一個類「下拉菜單」。 <ul class="dropdown-submenu">
。 正如你所看到的那樣,它有一個向右的箭頭。如何在盤旋時將箭頭的顏色設置爲黑暗?在Twitter中創建custom.css引導程序
1
A
回答
1
你可以做到這一點通過以下方式:
對於下拉菜單onHover選項顏色變化:符的
.navbar .nav li.dropdown > a:hover .caret, .navbar .nav li.dropdown > a:focus .caret {
border-bottom-color: red;/*change color to your liking*/
border-top-color: red;/*change color to your liking*/
}
改變顏色時有效(下拉菜單):
.navbar .nav li.dropdown.open > .dropdown-toggle .caret, .navbar .nav li.dropdown.active > .dropdown-toggle .caret, .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
border-bottom-color: #008745;/*change color*/
border-top-color: #008745;/*change color*/
}
For Dropdown子菜單
.dropdown-submenu > a:after {
border-color: transparent transparent transparent #000000;/*change here */
border-style: solid;
border-width: 5px 0 5px 5px;
content: " ";
display: block;
float: right;
height: 0;
margin-right: -10px;
margin-top: 5px;
width: 0;
}
下拉子菜單onHover選項顏色變化:
.dropdown-submenu:hover > a:after{
border-left-color:#fff; /* change the color to anything of your choice*/
}
符的默認顏色在這裏設置並在下文提到的是可以改變的:
.caret {
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid #FFFFFF; /* change the color to anything of ur liking */
content: "";
display: inline-block;
height: 0;
vertical-align: top;
width: 0;
}
0
相關問題
- 1. 在Twitter中心導航引導程序
- 2. 我無法在引導程序項目中編輯我的custom.css
- 3. 在引導程序中創建邊距
- 4. 創建86引導程序
- 5. 創建引導程序
- 6. 在Twitter中填充引導程序
- 7. ClearFloat與Twitter引導程序
- 8. 在Twitter中創建穩定的響應式佈局引導程序
- 9. Twitter中的邊距引導程序
- 10. Timeline.js中止twitter引導程序標籤
- 11. 在Twitter上使用validate.js引導程序
- 12. 風格Twitter引導程序導航
- 13. Twitter引導程序導航崩潰
- 14. 創建Twitter的引導和animate.css
- 15. 創建自己的Twitter引導按鈕
- 16. 創建Twitter應用程序
- 17. 在Twitter中使用bootstrapValidator引導程序嚮導
- 18. 如何在twitter引導程序嚮導中使用規則
- 19. 使用引導程序創建目錄
- 20. Twitter引導程序展開/摺疊全部 - 在引導程序選項卡內
- 21. Twitter的引導下拉菜單創建在倒塌導航欄
- 22. 在twitter引導中創建兩個下拉菜單
- 23. 使twitter引導程序全角?
- 24. Twitter引導程序浮點數div右
- 25. Twitter引導程序重置按鈕
- 26. 如何使用twitter引導程序?
- 27. 將Snap.js安裝到Twitter引導程序
- 28. Twitter引導程序絕對定位
- 29. 帶Twitter引導程序的1/3列
- 30. Twitter引導程序元素對齊
他被要求在引導更改圖標的顏色,使用圖標 – 2013-03-05 12:20:56
一個像我知道薩赫勒他是什麼要求。可以按照我提到的方式設置插入符號的顏色。 – Shail 2013-03-05 12:22:04
謝謝你給我建議@SahilPopli ..我真的很感謝你的努力。, – user2058595 2013-03-06 08:38:25