Changeset 8733
- Timestamp:
- 08/26/2008 12:40:10 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r8726 r8733 404 404 #pass-strength-result { 405 405 background-color: #e3e3e3; 406 border-color: # 000;406 border-color: #ccc !important; 407 407 } 408 408 409 409 #pass-strength-result.bad { 410 background-color: #ff eff7;411 border-color: # c69;410 background-color: #ffb78c; 411 border-color: #ff853c !important; 412 412 } 413 413 414 414 #pass-strength-result.good { 415 background-color: # effff4;416 border-color: # 66cc87;415 background-color: #ffec8b; 416 border-color: #fc0 !important; 417 417 } 418 418 419 419 #pass-strength-result.short { 420 background-color: #e3e3e3; 420 background-color: #ffa0a0; 421 border-color: #f04040 !important; 421 422 } 422 423 423 424 #pass-strength-result.strong { 424 background-color: # 59ef86;425 border-color: # 319f52;425 background-color: #c3ff88; 426 border-color: #8dff1c !important; 426 427 } 427 428 -
trunk/wp-admin/css/colors-fresh.css
r8726 r8733 388 388 389 389 #pass-strength-result { 390 background-color: #e 3e3e3;391 border-color: # 000;390 background-color: #eee; 391 border-color: #ddd !important; 392 392 } 393 393 394 394 #pass-strength-result.bad { 395 background-color: #ff eff7;396 border-color: # c69;395 background-color: #ffb78c; 396 border-color: #ff853c !important; 397 397 } 398 398 399 399 #pass-strength-result.good { 400 background-color: # effff4;401 border-color: # 66cc87;400 background-color: #ffec8b; 401 border-color: #fc0 !important; 402 402 } 403 403 404 404 #pass-strength-result.short { 405 background-color: #e3e3e3; 405 background-color: #ffa0a0; 406 border-color: #f04040 !important; 406 407 } 407 408 408 409 #pass-strength-result.strong { 409 background-color: # 59ef86;410 border-color: # 319f52;410 background-color: #c3ff88; 411 border-color: #8dff1c !important; 411 412 } 412 413 -
trunk/wp-admin/user-edit.php
r8722 r8733 341 341 <td><input type="password" name="pass1" id="pass1" size="16" value="" /> <?php _e("If you would like to change the password type a new one. Otherwise leave this blank."); ?><br /> 342 342 <input type="password" name="pass2" id="pass2" size="16" value="" /> <?php _e("Type your new password again."); ?><br /> 343 <?php if ( $is_profile_page ): ?> 344 <p><strong><?php _e('Password Strength'); ?></strong></p> 345 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> 343 <?php if ( $is_profile_page ): ?> 344 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> 346 345 <p><?php _e('Hint: Your password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).'); ?></p> 347 346 <?php endif; ?> 348 347 </td> 349 348 </tr> -
trunk/wp-admin/wp-admin.css
r8726 r8733 1 .plugins .name { 1 .plugins .name, 2 #pass-strength-result.strong, 3 #pass-strength-result.short, 4 .button-highlighted, 5 #quicktags #ed_strong, 6 #ed_reply_toolbar #ed_reply_strong { 2 7 font-weight: bold; 3 8 } … … 232 237 } 233 238 234 .button-highlighted {235 font-weight: bold;236 }237 238 239 #wpcontent select { 239 240 font: 12px/20px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; … … 328 329 line-height: 18px; 329 330 display: inline-block; 330 }331 332 #quicktags #ed_strong,333 #ed_reply_toolbar #ed_reply_strong {334 font-weight: bold;335 331 } 336 332 … … 586 582 587 583 #pass-strength-result { 588 padding: 3px 5px 3px 5px; 589 margin-top: 3px; 584 border-style: solid; 585 border-width: 1px; 586 float: left; 587 margin: 12px 5px 5px 1px; 588 padding: 3px 5px; 590 589 text-align: center; 591 border-width: 1px; 592 border-style: solid; 590 width: 200px; 593 591 } 594 592 … … 1021 1019 } 1022 1020 1023 #pass-strength-result {1024 width: 197px;1025 float: left;1026 margin-right: 5px;1027 border: 1px solid #ccc !important;1028 }1029 1030 1021 #profile-page .form-table #rich_editing { 1031 1022 margin-right: 5px
Note: See TracChangeset
for help on using the changeset viewer.