2014-03-04 52 views
0

我正在編寫我的第一個wordpress插件,並且在設置樣式時遇到了一些問題。 我知道我可以在我的插件中使用自己的CSS文件,但我不想那樣。 我想使用WordPress中使用的相同風格管理員,我的問題在這裏,有沒有來自wordpress關於它的CSS的任何文檔?即:如果你想使用標籤,你可以簡單地在這裏或任何地方寫內容。在插件中使用Wordpress CSS

等待你的幫助。

+0

檢查:https://github.com/bueltge/WordPress-Admin-Style – brasofilo

回答

0

可悲的是在WordPress管理中使用的CSS沒有當前文檔,你就必須使用一個在瀏覽器中編輯採摘除了頁面把它撿起來。 (在鉻上點擊F12打開它)。

有這個網站:http://dotorgstyleguide.wordpress.com/它顯示了一些使用的花式,但它有點過時的和尚未完成。

這些是挑選出來的幾個位。

// always wrap your code around a div with the class wrap to keep it contained 
<div class="wrap"> 
</div> 

// Use H2 for page titles. You can put icons before using icon32 or icon16 as the 
// class for its size and setting the id as what the name of the icon is 
<div id="icon-tools" class="icon32"></div> 
<h2>Page Title</h2> 

// Table format 
<table class="form-table"> 
    <tr valign="top"> 
     <th scope="row"> 
      <label for="active">Form Label</label> 
     </th> 
     <td> 
      <input type="checkbox" id="active" maxlength="45" size="10" name="active" value="TRUE" /> 
      <p class="description">Small description under box</p> 
     </td> 
    </tr> 
</table> 

這就像我能想到的那樣。可悲的是,它只是把它分開,看看什麼是有用的,什麼不是。上面的位應該給你一個很好的起點。

+0

謝謝@Rhys,我會盡力找到任何來源。現在我正在起訴檢查部分,但我說也許還有另一種方法可以避免浪費我的時間。 –