Skip to content

Commit a72c040

Browse files
committed
update buttton
1 parent 1b817e2 commit a72c040

File tree

9 files changed

+23
-13
lines changed

9 files changed

+23
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## CHANGELOG
22

3+
### [26.3.2] - February 25, 2026
4+
- Changed "Refresh" button positioning from relative to fixed
5+
36
### [26.3.1] - February 25, 2026
47
- Added a "Refresh" button to Web Logs to refresh immediately without reloading the whole page
58

@@ -536,6 +539,7 @@
536539
- Initial release
537540

538541

542+
[26.3.2]: https://github.com/cmason3/jinjafx_server/compare/26.3.1...26.3.2
539543
[26.3.1]: https://github.com/cmason3/jinjafx_server/compare/26.3.0...26.3.1
540544
[26.3.0]: https://github.com/cmason3/jinjafx_server/compare/26.2.4...26.3.0
541545
[26.2.4]: https://github.com/cmason3/jinjafx_server/compare/26.2.3...26.2.4

jinjafx_server/jinjafx_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import re, argparse, hashlib, traceback, glob, hmac, uuid, struct, binascii, gzip, requests, ctypes, subprocess
2929
import cmarkgfm, emoji, jsonschema
3030

31-
__version__ = '26.3.1'
31+
__version__ = '26.3.2'
3232

3333
llock = threading.RLock()
3434
rlock = threading.RLock()

jinjafx_server/www/dt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>JinjaFx DataTemplate</title>
77
<link rel="shortcut icon" href="/874f2915/jinjafx.png">
88
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.8/css/bootstrap.min.css" integrity="sha512-2bBQCjcnw658Lho4nlXJcc6WkV/UxpE/sAokbXPxQNGqmNdQrWqtw26Ns9kFF/yG792pKR1Sx8/Y1Lf1XN4GKA==" crossorigin="anonymous" referrerpolicy="no-referrer">
9-
<link rel="stylesheet" href="/2dde8c7d/jinjafx.css">
9+
<link rel="stylesheet" href="/ea73c0c8/jinjafx.css">
1010
<link rel="stylesheet" href="/6bf86b6e/jinjafx_dt.css">
1111
</head>
1212
<body>

jinjafx_server/www/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.20/addon/dialog/dialog.min.css" integrity="sha512-Vogm+Cii1SXP5oxWQyPdkA91rHB776209ZVvX4C/i4ypcfBlWVRXZGodoTDAyyZvO36JlTqDqkMhVKAYc7CMjQ==" crossorigin="anonymous" referrerpolicy="no-referrer">
1212
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.20/addon/display/fullscreen.min.css" integrity="sha512-T8xB3MmwpA77VK9lUH3UkdUTnkmpqOxHF8OceOKaHrvpcXMSNX0xtpa9FoLTDAVO1JnB2UiMdVeI2V0HTHjTWA==" crossorigin="anonymous" referrerpolicy="no-referrer">
1313
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.20/addon/fold/foldgutter.min.css" integrity="sha512-YwkMTlTHn8dBnwa47IF+cKsS00HPiiVhQ4DpwT1KF2gUftfFR7aefepabSPLAs6zrMyD89M3w0Ow6mQ5XJEUCw==" crossorigin="anonymous" referrerpolicy="no-referrer">
14-
<link rel="stylesheet" href="/2dde8c7d/jinjafx.css">
15-
<link rel="stylesheet" href="/c1aa7561/jinjafx_m.css">
14+
<link rel="stylesheet" href="/ea73c0c8/jinjafx.css">
15+
<link rel="stylesheet" href="/02201556/jinjafx_m.css">
1616
</head>
1717
<body>
1818
<div id="overlay"></div>

jinjafx_server/www/jinjafx.css

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,3 @@ a:hover {
7575
outline: none !important;
7676
box-shadow: none !important;
7777
}
78-
.topright {
79-
position: absolute;
80-
z-index: 10;
81-
right: 8px;
82-
top: 8px;
83-
}

jinjafx_server/www/jinjafx_logs.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@ pre::-webkit-scrollbar {
1515
width: 0;
1616
height: 0;
1717
}
18+
.topright {
19+
position: fixed;
20+
z-index: 10;
21+
right: 8px;
22+
top: 8px;
23+
}

jinjafx_server/www/jinjafx_m.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ textarea {
9797
border-radius: 0.5rem;
9898
padding: 10px;
9999
}
100+
.topright {
101+
position: absolute;
102+
z-index: 10;
103+
right: 8px;
104+
top: 8px;
105+
}
100106
.zi-2 {
101107
z-index: 2 !important;
102108
}

jinjafx_server/www/logs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<title>JinjaFx Logs</title>
77
<link rel="shortcut icon" href="/874f2915/jinjafx.png">
88
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.8/css/bootstrap.min.css" integrity="sha512-2bBQCjcnw658Lho4nlXJcc6WkV/UxpE/sAokbXPxQNGqmNdQrWqtw26Ns9kFF/yG792pKR1Sx8/Y1Lf1XN4GKA==" crossorigin="anonymous" referrerpolicy="no-referrer">
9-
<link rel="stylesheet" href="/2dde8c7d/jinjafx.css">
10-
<link rel="stylesheet" href="/de7e1d2d/jinjafx_logs.css">
9+
<link rel="stylesheet" href="/ea73c0c8/jinjafx.css">
10+
<link rel="stylesheet" href="/98b24acd/jinjafx_logs.css">
1111
</head>
1212
<body>
1313
<div id="password_input" class="modal fade" data-bs-backdrop="static" tabindex="-1">

jinjafx_server/www/output.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>Generating...</title>
77
<link rel="shortcut icon" href="/874f2915/jinjafx.png">
88
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.8/css/bootstrap.min.css" integrity="sha512-2bBQCjcnw658Lho4nlXJcc6WkV/UxpE/sAokbXPxQNGqmNdQrWqtw26Ns9kFF/yG792pKR1Sx8/Y1Lf1XN4GKA==" crossorigin="anonymous" referrerpolicy="no-referrer">
9-
<link rel="stylesheet" href="/2dde8c7d/jinjafx.css">
9+
<link rel="stylesheet" href="/ea73c0c8/jinjafx.css">
1010
<link rel="stylesheet" href="/6239af43/jinjafx_o.css">
1111
</head>
1212
<body>

0 commit comments

Comments
 (0)