Skip to content

Commit 79c311f

Browse files
committed
tegaki.css
1 parent bfa2368 commit 79c311f

2 files changed

Lines changed: 18 additions & 3 deletions

File tree

petitnote/app/tegaki/tegaki.css

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
grid-area: 2 / 3 / 4 / 4;
121121
padding: 6px;
122122
overflow: hidden auto;
123+
z-index: 1000;
123124
}
124125

125126
#tegaki-status-cnt {
@@ -676,4 +677,17 @@ input[type="number"]::-webkit-inner-spin-button {
676677
input[type="number"] {
677678
-moz-appearance:textfield;
678679
appearance:textfield;
679-
}
680+
}
681+
/* スマホ対応 */
682+
@media screen and (max-width: 767px){
683+
#tegaki {
684+
grid-template-columns: 40px 1fr 0px;
685+
grid-template-rows: 24px 1fr 280px;
686+
}
687+
#tegaki-ctrl-cnt {
688+
grid-area: 3 / 2 / 4 / 3; /* 3行目2列目に配置 */
689+
}
690+
#tegaki-layers-wrap {
691+
padding: 10px;
692+
}
693+
}

petitnote/index.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
//Petit Note (c)さとぴあ @satopian 2021-2025
33
//1スレッド1ログファイル形式のスレッド式画像掲示板
4-
$petit_ver='v1.86.8';
5-
$petit_lot='lot.20250515';
4+
$petit_ver='v1.86.9';
5+
$petit_lot='lot.20250518';
66

77
$lang = ($http_langs = $_SERVER['HTTP_ACCEPT_LANGUAGE'] ?? '')
88
? explode( ',', $http_langs )[0] : '';
@@ -1976,6 +1976,7 @@ function edit(): void {
19761976
$userid = ($admindel && !$res_oya_deleted) ? $_userid : $userid;//管理者による変更時は投稿者のidを変更しない
19771977
$hash = ($admindel && $res_oya_deleted) ? password_hash($admin_pass,PASSWORD_BCRYPT,['cost' => 5]) : $_hash;//削除ずみのoyaの編集時は管理者パスを設定。
19781978
$verified = ($admindel && $res_oya_deleted) ? 'adminpost' : $_verified;//削除ずみのoyaの編集時は管理者パスを設定。
1979+
19791980
$r_line= "$_no\t$sub\t$name\t$verified\t$com\t$url\t$_imgfile\t$_w\t$_h\t$thumbnail\t$_painttime\t$_log_img_hash\t$_tool\t$pchext\t$_time\t$_first_posted_time\t$host\t$userid\t$hash\t$_oya\n";
19801981

19811982
$r_arr[$i] = $r_line;

0 commit comments

Comments
 (0)