diff options
-rw-r--r-- | skins/gnats1/gnats1.css | 18 | ||||
-rw-r--r-- | template-html.lsp | 11 |
2 files changed, 13 insertions, 16 deletions
diff --git a/skins/gnats1/gnats1.css b/skins/gnats1/gnats1.css index 7187932..a4135b2 100644 --- a/skins/gnats1/gnats1.css +++ b/skins/gnats1/gnats1.css @@ -288,18 +288,24 @@ body { cursor: pointer; } -#content textarea { - border-right: 1px solid #cacaca; - border-bottom: 1px solid #cacaca; - width: 97%; -} + /* #content p,input.text,select,textarea,input.password { - width: 30%; + width: 400px; } */ +#content p,input.text,input.password { + width: 97%; +} + +#content textarea { + border-right: 1px solid #cacaca; + border-bottom: 1px solid #cacaca; + width: 97%; +} + #content table { width: 100%; } diff --git a/template-html.lsp b/template-html.lsp index be27a55..f429394 100644 --- a/template-html.lsp +++ b/template-html.lsp @@ -13,16 +13,7 @@ Content-Type: text/html <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<? -local hostname = "" -if viewlibrary and viewlibrary.dispatch_component then - local result = viewlibrary.dispatch_component("alpine-baselayout/hostname/read", nil, true) - if result and result.value then - hostname = result.value - end -end -?> -<title><?= hostname .. " - " .. pageinfo.controller .. "->" .. pageinfo.action ?></title> +<title><?= pageinfo.controller .. "->" .. pageinfo.action ?></title> <script type="text/javascript" src="/js/jquery-1.2.5.min.js"></script> <script type="text/javascript" src="/js/sgbeal-togglepane.jquery.min.js"></script> <link rel="stylesheet" type="text/css" href="<?= pageinfo.skindir ?>static/reset.css"> |