themes: add facility to include custom css
authorJo-Philipp Wich <jow@openwrt.org>
Wed, 21 Nov 2012 18:36:40 +0000 (18:36 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Wed, 21 Nov 2012 18:36:40 +0000 (18:36 +0000)
themes/bootstrap/luasrc/view/themes/bootstrap/header.htm
themes/freifunk-bno/luasrc/view/themes/freifunk-bno/header.htm
themes/freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm
themes/openwrt/luasrc/view/themes/openwrt.org/header.htm

index 1d23877664dab3880c2bade27e5fc016fc7e9cc3..c79c152ba98b1bfc976d4016cb75991819d5a36f 100644 (file)
@@ -106,6 +106,10 @@ You may obtain a copy of the License at
   <link rel="shortcut icon" href="<%=media%>/favicon.ico">
   <% if node and node.css then %><link rel="stylesheet" href="<%=resource%>/<%=node.css%>">
   <% end -%>
+  <% if css then %><style title="text/css">
+  <%-= css %>
+  </style>
+  <% end -%>
   <script src="<%=resource%>/xhr.js"></script>
  </head>
 
index 7313fff55087137ce3295e751aa972b56f4604f2..be03d87b52590c1fdc9f580a7e755311aa067abe 100644 (file)
@@ -41,6 +41,10 @@ require("luci.http").prepare_content("text/html")
 <head>
        <link rel="stylesheet" type="text/css" href="<%=media%>/cascade.css" />
        <% if node and node.css then %><link rel="stylesheet" type="text/css" href="<%=resource%>/<%=node.css%>" /><% end %>
+       <% if css then %><style title="text/css">
+       <%-= css %>
+       </style>
+       <% end -%>
        <link rel="shortcut icon" href="<%=media%>/images/favicon.ico" />
        <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
        <meta http-equiv="content-script-type" content="text/javascript" />
index c14d8be0e748b9bf5b9887fa481e13fef78b5d97..a8c257e405e29ea5977e4c568e638621e6fc7a8b 100644 (file)
@@ -79,6 +79,10 @@ You may obtain a copy of the License at
 <!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/ie7.css" /><![endif]-->
 <% if node and node.css then %><link rel="stylesheet" type="text/css" media="screen" href="<%=resource%>/<%=node.css%>" />
 <% end -%>
+<% if css then %><style title="text/css">
+<%= css %>
+</style>
+<% end -%>
 <script type="text/javascript" src="<%=resource%>/xhr.js"></script>
 
 <title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. translate(tostring(node.title)) or '')) %> - LuCI</title>
index 9f85959763e9c7b713b6d119572e48278a2e6d68..5006723e6a48e345f74fcf3d0a25ae3fd374ba03 100644 (file)
@@ -107,6 +107,10 @@ $Id$
 <!--[if IE 8]><link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/ie8.css" /><![endif]-->
 <% if node and node.css then %><link rel="stylesheet" type="text/css" media="screen" href="<%=resource%>/<%=node.css%>" />
 <% end -%>
+<% if css then %><style title="text/css">
+<%= css %>
+</style>
+<% end -%>
 <script type="text/javascript" src="<%=resource%>/xhr.js"></script>
 <title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %> - LuCI</title>
 </head>