From 23bcac4260b44efb6d0a83ecc099ce8083088832 Mon Sep 17 00:00:00 2001 From: Justin Grimes Date: Tue, 5 Mar 2024 00:35:41 -0500 Subject: [PATCH] v3.3 - Update Readme, fix cleanup bug, flip button CSS. -v3.3. -Update README.md. -Remove mention of Docker repo, as it is not maintained. -I appreciate all of the community feedback at https://github.com/zelon88/HRConvert2/issues/46. -I will come up with an official Docker solution. -Fix bug in cleanFiles() function that was causing problems with archive conversions & preventing cleanup. -Flip button CSS, so buttons don't appear quite so... upside-down... all the time. -Remove un-needed (redundant) button related CSS from HRConvert2.css. -Increase default DeleteThreshold in config.php from 30 to 60 minutes. -Remove un-needed extension being passed to the convertDrawings() function. -Fix drawings not returning a valid filename. -Conversions would complete, but not download. -Tested ImageMagick support for SVG, could not get it to work. -Tested Dia support for converting things into PNG, BMP, and JPG. Got PNG to work, so added support. --- Resources/HRConvert2.css | 43 +--------------------------------------- 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/Resources/HRConvert2.css b/Resources/HRConvert2.css index 5a8ee4f..fe1d078 100644 --- a/Resources/HRConvert2.css +++ b/Resources/HRConvert2.css @@ -16,45 +16,4 @@ select::-ms-expand { @media screen and (min-width:0\0) { select { background:none\9; - padding: 5px\9; } } - -.info-button { - -moz-box-shadow: 3px 4px 0px 0px #f3f6f4; - -webkit-box-shadow: 3px 4px 0px 0px #f3f6f4; - box-shadow: 3px 4px 0px 0px #f3f6f4; - background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bcbcbc), color-stop(1, #eeeeee)); - background:-moz-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%); - background:-webkit-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%); - background:-o-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%); - background:-ms-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%); - background:linear-gradient(to bottom, #bcbcbc 5%, #eeeeee 100%); - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#bcbcbc\', endColorstr=\'#eeeeee\',GradientType=0); - background-color:#bcbcbc; - -moz-border-radius:5px; - -webkit-border-radius:5px; - border-radius:5px; - border:1px solid #5b5b5b; - display:inline-block; - cursor:pointer; - color:#ffffff; - font-family:Arial; - font-size:17px; - font-weight:bold; - padding:12px 44px; - text-decoration:none; - text-shadow:0px 1px 0px #bcbcbc; - min-width:100px; - width:250px; - max-width:1000px; } -.info-button:hover { - background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #eeeeee), color-stop(1, #bcbcbc)); - background:-moz-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%); - background:-webkit-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%); - background:-o-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%); - background:-ms-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%); - background:linear-gradient(to bottom, #eeeeee 5%, #bcbcbc 100%); - filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#eeeeee\', endColorstr=\'#bcbcbc\',GradientType=0); - background-color:#eeeeee; } -.info-button:active { - position:relative; - top:1px; } \ No newline at end of file + padding: 5px\9; } } \ No newline at end of file