Skip to content

Commit

Permalink
Fix macro panel overload UI on some resolutions
Browse files Browse the repository at this point in the history
Add GRBL as fixed languages list for PR for GRBL_ESP32 as reference
  • Loading branch information
luc-github committed Sep 26, 2020
1 parent e1f9a49 commit 67f51ab
Show file tree
Hide file tree
Showing 19 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions buildLanguagePacks.bat
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ copy index.html.gz languages\zh_CN
mkdir languages\uk
cmd.exe /c gulp package --lang uk
copy index.html.gz languages\uk
mkdir languages\grbl
cmd.exe /c gulp package --lang uk
copy index.html.gz languages\grbl
cmd.exe /c gulp package
mkdir languages\multi
copy index.html.gz languages\multi
Expand Down
Binary file modified index.html.gz
Binary file not shown.
Binary file modified languages/de/index.html.gz
Binary file not shown.
Binary file modified languages/en/index.html.gz
Binary file not shown.
Binary file modified languages/es/index.html.gz
Binary file not shown.
Binary file modified languages/fr/index.html.gz
Binary file not shown.
Binary file added languages/grbl/index.html.gz
Binary file not shown.
Binary file modified languages/hu/index.html.gz
Binary file not shown.
Binary file modified languages/it/index.html.gz
Binary file not shown.
Binary file modified languages/multi/index.html.gz
Binary file not shown.
Binary file modified languages/pl/index.html.gz
Binary file not shown.
Binary file modified languages/ptbr/index.html.gz
Binary file not shown.
Binary file modified languages/ru/index.html.gz
Binary file not shown.
Binary file modified languages/tr/index.html.gz
Binary file not shown.
Binary file modified languages/uk/index.html.gz
Binary file not shown.
Binary file modified languages/zh_CN/index.html.gz
Binary file not shown.
9 changes: 8 additions & 1 deletion www/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ w25 {
}
}

@media (min-width: 1200px) and (max-width: 1350px){

@media (min-width: 800px) and (max-width: 1350px){
.fixedbutton {
width: 6em !important;
}
Expand Down Expand Up @@ -391,6 +392,12 @@ w25 {
}
}

@media (min-width: 1600px) {
.fixedbutton {
width: 6em !important;
}
}

@media (min-width: 641px) {
.container-fluid {
min-width: 350px;
Expand Down
2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
var target_firmware = "";
</script>
<script>
var web_ui_version = "2.1b65";
var web_ui_version = "2.1b66";
</script>
<script>
var direct_sd = false;
Expand Down
2 changes: 1 addition & 1 deletion www/sub/controlspanel.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</div>
<div id="control-body" class="panel-body panel-flex-main">
<div class="row">
<div id="JogUI" class="col col-lg-6">
<div id="JogUI" class="col col-md-7 col-lg-7">
<!-- replaceSVG --><object data="images/jogdial.svg" type="image/svg+xml"></object><!-- /replaceSVG -->
</div>
<div class="col col-lg-4 " >
Expand Down

0 comments on commit 67f51ab

Please sign in to comment.