mirror of
https://github.com/dducret/kopano-webapp-passwd
synced 2026-07-27 10:32:26 +02:00
Adapted to Kopano WebApp 3.4.24 for DB only, not tested/fixed for LDAP
This commit is contained in:
parent
953f006b5e
commit
5934273402
5 changed files with 39 additions and 4 deletions
16
CHANGELOG.md
16
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
|
||||
## 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
|
||||
BIN
builds/passwd-1.4.zip
Normal file
BIN
builds/passwd-1.4.zip
Normal file
Binary file not shown.
BIN
builds/passwd-1.5.zip
Normal file
BIN
builds/passwd-1.5.zip
Normal file
Binary file not shown.
|
|
@ -2,7 +2,7 @@
|
|||
<!DOCTYPE plugin SYSTEM "manifest.dtd">
|
||||
<plugin version="2">
|
||||
<info>
|
||||
<version>1.3</version>
|
||||
<version>1.5</version>
|
||||
<Name>Passwd</Name>
|
||||
<title>Password Change Plugin</title>
|
||||
<author>Saket Patel - Denis Ducret</author>
|
||||
|
|
|
|||
27
resources/css/passwd.css
Normal file
27
resources/css/passwd.css
Normal file
|
|
@ -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%;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue