Skip to content

Commit

Permalink
📝 Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyBlaze committed Apr 28, 2020
1 parent 534498c commit 63be0c6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions octoprint_fullscreen/static/css/fullscreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
.fullscreen {
pointer-events: all !important;
padding: 0 !important;
position: absolute !important;
/* position: absolute !important;
top: 0;
left: 0;
left: 0; */
width: 100%;
height: 100%;
background: black;
z-index: 99;
/* z-index: 99; */

display: -ms-flexbox;
display: -webkit-flex;
Expand All @@ -30,6 +30,7 @@
align-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.fullscreen .webcam_fixed_ratio_inner {
display: -ms-flexbox;
Expand All @@ -49,6 +50,7 @@
align-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.fullscreen img {
width: 100%;
Expand Down Expand Up @@ -182,13 +184,14 @@ _:-ms-lang(x), _:-webkit-full-screen, .fullscreen img {
position: static;
}
.inlineFullscreen .webcam_fixed_ratio_inner {
height: 100vh !important;
height: 100% !important;
}
.inlineFullscreen #webcam_rotator {
width: 100vw;
height: 100vh !important;
width: 100%;
height: 100% !important;
padding: 0;
position: absolute;
position: fixed;
top: 0;
left: 0;
z-index: 99;
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint-Fullscreen"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.0.4"
plugin_version = "0.0.5"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit 63be0c6

Please sign in to comment.