我已經制作了自己的樣式表,我需要在Jenkins插件中包含樣式表。如何將CSS Jelly文件添加到Jenkins插件?
<l:layout css="/plugin/myPlugin/css/jquery-ui.css">
<link rel="stylesheet" href="${rootURL}/plugin/myPlugin/jquery-ui.css" type="text/css" media="screen" />
請諮詢我..
謝謝..
我已經制作了自己的樣式表,我需要在Jenkins插件中包含樣式表。如何將CSS Jelly文件添加到Jenkins插件?
<l:layout css="/plugin/myPlugin/css/jquery-ui.css">
<link rel="stylesheet" href="${rootURL}/plugin/myPlugin/jquery-ui.css" type="text/css" media="screen" />
請諮詢我..
謝謝..
要在果凍文件鏈接,CSS文件已經過時,see jelly tags documentation:
This was originally added to allow plugins to load their stylesheets, but the use of thie
attribute is discouraged now. plugins should now do so by inserting <style> elements
and/or <script> elements in <l:header/> tag.
請改用直列CSS標籤(code example )。
將
下你的CSS文件(S)/src目錄/ Web應用程序/ CSS
,並引用它們作爲..
的 「href =」 $ {}將把rootURL /plugin//css/layout.css「
使用<link>
元素與上面提到的$ rootURL爲我工作。我注意到的重要事情是確保在<l:layout>
之後放置<link>
元素。我最初在<j:jelly>
標記之後剛剛擁有它,並且無法呈現$ {rootURL}。
<link>
標籤將比內聯樣式更清潔。