Skip to content

Commit bc76283

Browse files
committed
fixed orientation mode visibility in other grid types, updated changelog and version number, fixed a small bug in pyramid killer free submode, added orientation tool tip text
1 parent e2dac17 commit bc76283

6 files changed

Lines changed: 97 additions & 62 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## History
2-
2+
* 2026/06/02 ver 3.2.4
3+
* Cage mode in all grid types except cairo pentagonal
4+
* Bug fixes and code improvement
5+
* 8 orientations in Number mode
36
* 2026/04/18 ver 3.2.3
47
* New cut corner option for triangular grids
58
* local storage improvements

docs/css/base-structure.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,6 +1314,11 @@ input[type=number] {
13141314
margin-left: -15px;
13151315
}
13161316

1317+
#style_text_rot.tooltiptext {
1318+
width: 90px;
1319+
margin-left: -15px;
1320+
}
1321+
13171322
#undo_text.tooltiptext {
13181323
width: 70px;
13191324
margin-left: -35px;
@@ -1364,6 +1369,10 @@ input[type=number] {
13641369
left: 15%;
13651370
}
13661371

1372+
#style_text_rot.tooltiptext::after {
1373+
left: 15%;
1374+
}
1375+
13671376
.tooltip:hover .tooltiptext {
13681377
visibility: visible;
13691378
opacity: 1;

docs/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<!-- STYLES -->
4848
<!-- Local styles -->
4949
<script>
50-
var ver = "3.2.3"; // Also defined in class_p.js
50+
var ver = "3.2.4"; // Also defined in class_p.js
5151
let style_sources = [
5252
"./css/font-awesome.min.css",
5353
"./css/light_theme.css",
@@ -755,7 +755,9 @@
755755
</div>
756756
<div id="orientation_button" style="display:none;">
757757
<span>
758-
<label class="label_mode tooltip" id="style_txt_rot">Orientation:</label>
758+
<label class="label_mode tooltip" id="style_txt_rot">Orientation:<span id="style_text_rot"
759+
class="tooltiptext">Choose one
760+
orientation</span></label>
759761
</span>
760762
<input type="radio" name="orientation_button" value="R" id="rot_R" checked="checked">
761763
<label for="rot_R" class="labelL" id="rot_R_lb">A</label>

0 commit comments

Comments
 (0)