mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-23 13:09:00 +00:00
Fix Memex Update Form Jank
This commit is contained in:
parent
978311327e
commit
63d9c70667
@ -73,6 +73,9 @@ public class MemexService extends Service {
|
||||
before((req, rsp) -> {
|
||||
logger.info("{} {}", req.requestMethod(), req.pathInfo());
|
||||
});
|
||||
after((req, rsp) -> {
|
||||
rsp.header("Cache-control", "no-cache");
|
||||
});
|
||||
|
||||
post("/create", this::create);
|
||||
get("/create", this::createForm, this::renderModel);
|
||||
|
@ -5,6 +5,11 @@ body {
|
||||
background-color: #f8f8ee;
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
height: 60ch;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #acae89;
|
||||
color: #fff;
|
||||
@ -232,4 +237,5 @@ footer {
|
||||
color: #aaa;
|
||||
box-shadow: #0008 0 0 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user