OSDN Git Service

報告書の表がサーチボックスのせいで横長になるのを直す
authorKazuhiro Fujieda <fujieda@users.osdn.me>
Fri, 26 Jul 2019 13:38:47 +0000 (22:38 +0900)
committerKazuhiro Fujieda <fujieda@users.osdn.me>
Fri, 26 Jul 2019 13:38:47 +0000 (22:38 +0900)
LogViewer/tags.tag

index 1d9611f..5311184 100644 (file)
@@ -169,7 +169,8 @@ this.setHeaderAndFooter = function(table, header) {
     var footer = table.find("tfoot tr");
     table.find("th").each(function(index) {
         footer.append(
-            '<th><input type="search" placeholder="Search ' + $(this).text() + '"/></th>');
+            '<th style="padding: 1px"><input style="min-width: 100%" size="1" type="search" placeholder="Search ' +
+            $(this).text() + '"/></th>');
     });
 };