feat/offline-first: work in progress [might break]
All checks were successful
/ test (push) Successful in 6s

This commit is contained in:
Leon van Kammen 2024-08-26 11:58:33 +02:00
parent 3960fad936
commit 9d1b42c199
2 changed files with 18 additions and 1 deletions

9
make
View file

@ -30,5 +30,14 @@ dev(){
./xrsh.com -c 0 -C /tmp/cert.pem -K /tmp/key.pem -D . "$@"
}
shell(){
OCI=$(which podman || which docker)
set -x
$OCI rm -f xrsh || true
$OCI run --name xrsh -d \
-v ./src/com/isoterminal/mnt:/mnt busybox:1.31.1-musl tail -f /dev/null
$OCI exec -it xrsh /bin/sh -i -c 'source /mnt/profile && sh'
}
test -z $1 && install
test -z $1 || "$@"

View file

@ -107,7 +107,8 @@ button,input,.btn{
border: 1px solid #FFF3;
}
.winbox .wb-header{
background: var(--xrsh-light-primary);
background:transparent !important;
z-index:1000;
font-weight: bold;
border-radius: var(--xrsh-window-radius) var(--xrsh-window-radius) 0px 0px;
line-height:36px;
@ -115,9 +116,16 @@ button,input,.btn{
.winbox.max .wb-header{
border-radius:0px;
}
.winbox .wb-body{
top:0px;
padding-top:25px;
}
.winbox .wb-control{
height:29px;
}
.winbox .wb-drag{
padding-left:19px;
}
.winbox .wb-control > span{
background-size: 12px auto !important;
}