diff --git a/CHANGELOG.md b/CHANGELOG.md index 44d2b31..c7d80f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,16 @@ - Bug fixes for LDAP plugin - Improved UI - -## 1.3 (14th February 2017) - - Adapted to Kopano WebApp 3.3.0 for DB only, not tested/fixed for LDAP - - project renamed from zarafa-webapp-passwd to kopano-webapp-passwd \ No newline at end of file +## 1.3 (14th February 2017) + + - Adapted to Kopano WebApp 3.3.0 for DB only, not tested/fixed for LDAP + - project renamed from zarafa-webapp-passwd to kopano-webapp-passwd + +## 1.4 (6th November 2017) + + - Repackaged build as 1.4 since 1.3 is not recognized as plugin in WebApp + +## 1.5 (9th November 2018) + + - Adapted to Kopano WebApp 3.4.24 for DB only, not tested/fixed for LDAP \ No newline at end of file diff --git a/builds/passwd-1.4.zip b/builds/passwd-1.4.zip new file mode 100644 index 0000000..7b64642 Binary files /dev/null and b/builds/passwd-1.4.zip differ diff --git a/builds/passwd-1.5.zip b/builds/passwd-1.5.zip new file mode 100644 index 0000000..62f90a5 Binary files /dev/null and b/builds/passwd-1.5.zip differ diff --git a/manifest.xml b/manifest.xml index 56c90f5..23749d1 100644 --- a/manifest.xml +++ b/manifest.xml @@ -2,7 +2,7 @@ - 1.3 + 1.5 Passwd Password Change Plugin Saket Patel - Denis Ducret diff --git a/resources/css/passwd.css b/resources/css/passwd.css new file mode 100644 index 0000000..7091cd7 --- /dev/null +++ b/resources/css/passwd.css @@ -0,0 +1,27 @@ +.zarafa-settings-category-passwd { + background-image: url(../images/icon_lock.png) !important; +} + +/* STYLES FOR THE PASSWORD METER */ +.x-form-strengthmeter { + width : 100%; + height: 5px; + /*float: right;*/ + background: #ff4c00; /* Old browsers */ + /* IE9 SVG, needs conditional override of 'filter' to 'none' */ + background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmNGMwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2VkZDcxMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxYWZmMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); + background: -moz-linear-gradient(left, #ff4c00 0%, #edd712 50%, #1aff00 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ff4c00), color-stop(50%,#edd712), color-stop(100%,#1aff00)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #ff4c00 0%,#edd712 50%,#1aff00 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(left, #ff4c00 0%,#edd712 50%,#1aff00 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(left, #ff4c00 0%,#edd712 50%,#1aff00 100%); /* IE10+ */ + background: linear-gradient(left, #ff4c00 0%,#edd712 50%,#1aff00 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff4c00', endColorstr='#1aff00',GradientType=1 ); /* IE6-8 */ +} + +.x-form-strengthmeter-scorebar { + background-color: white; + opacity: 0.7; + height: 5px; + width: 100%; +} \ No newline at end of file