0
我想爲SquirrelMail創建一個自定義樣式表。最小引導CSS包含在現有項目中
如何從bootstrap中獲得單個css文件中的圓角和藍色發光,我可以將其包含在SquirrelMail中?
我已經想通了如何create glowing input fields and textareas
我想爲SquirrelMail創建一個自定義樣式表。最小引導CSS包含在現有項目中
如何從bootstrap中獲得單個css文件中的圓角和藍色發光,我可以將其包含在SquirrelMail中?
我已經想通了如何create glowing input fields and textareas
這將創建一個發光的輸入域和文字區域:
textarea,textarea:focus,input,input:focus{
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
border: 1px solid #c4c4c4;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
box-shadow: 0px 0px 8px #d9d9d9;
-moz-box-shadow: 0px 0px 8px #d9d9d9;
-webkit-box-shadow: 0px 0px 8px #d9d9d9;
}
input:focus,textarea:focus {
outline: none;
border: 1px solid #7bc1f7;
box-shadow: 0px 0px 8px #7bc1f7;
-moz-box-shadow: 0px 0px 8px #7bc1f7;
-webkit-box-shadow: 0px 0px 8px #7bc1f7;
}
否則,你將不得不從customized bootstrap提取CSS規則,但將最有可能的結果在一個龐大而不可改變的文件中。
下載引導程序並從中提取您需要的CSS規則。 – APAD1