2006-08-14 07:14:50 +00:00
|
|
|
#permissions td.module {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
#permissions td.permission {
|
2007-05-27 17:57:48 +00:00
|
|
|
padding-left: 1.5em; /* LTR */
|
2006-08-14 07:14:50 +00:00
|
|
|
}
|
2013-07-02 12:40:19 +00:00
|
|
|
[dir="rtl"] #permissions td.permission {
|
2013-06-28 08:47:08 +00:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 1.5em;
|
|
|
|
}
|
2010-04-28 20:08:39 +00:00
|
|
|
#permissions tr.odd .form-item,
|
|
|
|
#permissions tr.even .form-item {
|
2008-02-20 13:46:43 +00:00
|
|
|
white-space: normal;
|
|
|
|
}
|
2012-11-27 07:06:47 +00:00
|
|
|
#user-admin-settings .details-description {
|
2007-05-20 12:34:48 +00:00
|
|
|
font-size: 0.85em;
|
|
|
|
padding-bottom: .5em;
|
|
|
|
}
|
2006-08-17 19:19:15 +00:00
|
|
|
|
2010-09-19 18:10:42 +00:00
|
|
|
/**
|
|
|
|
* Password strength indicator.
|
|
|
|
*/
|
2014-07-28 21:11:44 +00:00
|
|
|
.password-strength__title,
|
|
|
|
.password-strength__text {
|
2010-09-19 18:10:42 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
2014-07-28 21:11:44 +00:00
|
|
|
.password-strength__meter {
|
2014-08-14 00:30:20 +00:00
|
|
|
background-color: #ebeae4;
|
2014-07-28 21:11:44 +00:00
|
|
|
height: 0.5em;
|
2010-09-19 18:10:42 +00:00
|
|
|
}
|
2014-07-28 21:11:44 +00:00
|
|
|
.password-strength__indicator {
|
2010-09-19 18:10:42 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 0%;
|
2014-08-14 00:30:20 +00:00
|
|
|
background-color: #77b259;
|
|
|
|
-webkit-transition: width 0.5s ease-out;
|
|
|
|
transition: width 0.5s ease-out;
|
2010-09-19 18:10:42 +00:00
|
|
|
}
|
|
|
|
input.password-confirm,
|
2014-07-28 21:11:44 +00:00
|
|
|
input.password-field,
|
|
|
|
.password-strength {
|
|
|
|
width: 40%;
|
2010-09-19 18:10:42 +00:00
|
|
|
}
|
|
|
|
div.password-confirm {
|
2011-05-14 17:16:44 +00:00
|
|
|
visibility: hidden;
|
2014-07-28 21:11:44 +00:00
|
|
|
width: 40%;
|
2013-06-28 08:47:08 +00:00
|
|
|
}
|
2010-09-19 18:10:42 +00:00
|
|
|
div.form-item div.password-suggestions {
|
|
|
|
padding: 0.2em 0.5em;
|
|
|
|
margin: 0.7em 0;
|
2013-09-28 14:30:28 +00:00
|
|
|
max-width: 34.7em;
|
2012-02-29 16:56:15 +00:00
|
|
|
border: 1px solid #b4b4b4;
|
2010-09-19 18:10:42 +00:00
|
|
|
}
|
|
|
|
div.password-suggestions ul {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2011-05-14 17:16:44 +00:00
|
|
|
.confirm-parent,
|
2010-09-19 18:10:42 +00:00
|
|
|
.password-parent {
|
2011-05-14 17:16:44 +00:00
|
|
|
clear: left; /* LTR */
|
2010-09-19 18:10:42 +00:00
|
|
|
margin: 0;
|
2013-09-28 14:30:28 +00:00
|
|
|
max-width: 33em;
|
2013-11-23 19:55:58 +00:00
|
|
|
overflow: hidden;
|
2010-09-19 18:10:42 +00:00
|
|
|
}
|
2013-07-02 12:40:19 +00:00
|
|
|
[dir="rtl"] .confirm-parent,
|
|
|
|
[dir="rtl"] .password-parent {
|
2013-06-28 08:47:08 +00:00
|
|
|
clear: right;
|
|
|
|
}
|
2010-09-19 18:10:42 +00:00
|
|
|
|