Commit f8c6d929012c3b245cc0b750287e7625181d5df5
1 parent
81b645b8
Exists in
master
and in
39 other branches
Only applying rules if main-table is present
Showing
1 changed file
with
19 additions
and
19 deletions
Show diff stats
src/proxy/diazo/jenkins.xml
... | ... | @@ -3,28 +3,28 @@ |
3 | 3 | xmlns:css="http://namespaces.plone.org/diazo/css" |
4 | 4 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
5 | 5 | |
6 | - <notheme if-path="/ci/job/colab/configSubmit" /> | |
6 | + <rules css:if-content="#main-table"> | |
7 | + <replace css:theme="#jenkins-css" content="//head/link" /> | |
8 | + <replace css:theme="#jenkins-js" content="//head/script" /> | |
9 | + <before css:theme-children="#main-content" css:content="#main-table" /> | |
7 | 10 | |
8 | - <replace css:theme="#jenkins-css" content="//head/link" /> | |
9 | - <replace css:theme="#jenkins-js" content="//head/script" /> | |
10 | - <before css:theme-children="#main-content" css:content="#main-table" /> | |
11 | + <!-- Breadcrumbs --> | |
12 | + <after css:theme="nav.navbar-fixed-top" css:content="#left-top-nav" /> | |
11 | 13 | |
12 | - <!-- Breadcrumbs --> | |
13 | - <after css:theme="nav.navbar-fixed-top" css:content="#left-top-nav" /> | |
14 | + <merge attributes="class" css:theme="body" css:content="body" /> | |
14 | 15 | |
15 | - <merge attributes="class" css:theme="body" css:content="body" /> | |
16 | + <after theme-children="/html/head"> | |
17 | + <script>jQuery.noConflict();</script> | |
18 | + <style> | |
19 | + #breadcrumbs { | |
20 | + border: 0 !important; | |
21 | + } | |
16 | 22 | |
17 | - <after theme-children="/html/head"> | |
18 | - <script>jQuery.noConflict();</script> | |
19 | - <style> | |
20 | - #breadcrumbs { | |
21 | - border: 0 !important; | |
22 | - } | |
23 | - | |
24 | - #right-top-nav { | |
25 | - margin-right: 5em !important; | |
26 | - } | |
27 | - </style> | |
28 | - </after> | |
23 | + #right-top-nav { | |
24 | + margin-right: 5em !important; | |
25 | + } | |
26 | + </style> | |
27 | + </after> | |
28 | + </rules> | |
29 | 29 | |
30 | 30 | </rules> | ... | ... |