Make WordPress Core

Ticket #18197: 18197.remove-userinfo.patch

File 18197.remove-userinfo.patch, 3.3 KB (added by ocean90, 13 years ago)
  • wp-admin/js/common.dev.js

     
    250250        // Init screen meta
    251251        screenMeta.init();
    252252
    253         // User info dropdown.
    254         // @todo: Removed in 3.3; remove me!
    255         dropdown = {
    256                 doc: $(document),
    257                 element: $('#user_info'),
    258                 open: function() {
    259                         if ( ! dropdown.element.hasClass('active') ) {
    260                                 dropdown.element.addClass('active');
    261                                 dropdown.doc.one( 'click', dropdown.close );
    262                                 return false;
    263                         }
    264                 },
    265                 close: function() {
    266                         dropdown.element.removeClass('active');
    267                 }
    268         };
    269 
    270         dropdown.element.click( dropdown.open );
    271 
    272253        // check all checkboxes
    273254        $('tbody').children().children('.check-column').find(':checkbox').click( function(e) {
    274255                if ( 'undefined' == e.shiftKey ) { return true; }
  • wp-admin/css/wp-admin.dev.css

     
    13411341        margin: 0 0 0 15px;
    13421342}
    13431343
    1344 #user_info {
    1345         float: right;
    1346         font-size: 12px;
    1347         line-height: 26px;
    1348         height: 25px;
    1349         position: relative;
    1350         z-index: 49;
    1351         border-style: solid;
    1352         border-width: 0;
    1353         margin-top: 3px;
    1354         padding: 0 2px 0 6px;
    1355 }
    1356 
    1357 #user_info.active {
    1358         border-width: 1px;
    1359         margin-right: -1px;
    1360         margin-top: 2px;
    1361         -moz-border-radius: 3px 3px 0 0;
    1362         -webkit-border-top-right-radius: 3px;
    1363         -webkit-border-top-left-radius: 3px;
    1364         -khtml-border-top-right-radius: 3px;
    1365         -khtml-border-top-left-radius: 3px;
    1366         border-top-right-radius: 3px;
    1367         border-top-left-radius: 3px;
    1368 }
    1369 
    1370 #user_info p {
    1371         margin: 0;
    1372         padding: 0;
    1373         line-height: 25px;
    1374         cursor: pointer;
    1375 }
    1376 
    1377 #user_info .hide-if-no-js p {
    1378         margin: 0 20px 0 0;
    1379         text-align: right;
    1380 }
    1381 
    1382 #user_info:hover .hide-if-no-js p {
    1383         text-decoration: underline;
    1384 }
    1385 #user_info.active .hide-if-no-js p {
    1386         text-decoration: none;
    1387 }
    1388 
    1389 #user_info_arrow {
    1390         height: 22px;
    1391         width: 22px;
    1392         position: absolute;
    1393         right: 3px;
    1394         top: 0;
    1395         cursor: pointer;
    1396 }
    1397 
    1398 #user_info_links_wrap {
    1399         min-width: 100px;
    1400         width: 100%;
    1401         top: 25px;
    1402         right: 0;
    1403         padding: 0;
    1404         text-shadow: rgba(255,255,255,0.7) 0 1px 0;
    1405 }
    1406 
    1407 #user_info_links {
    1408         position: absolute;
    1409         left: -1px;
    1410         right: -1px;
    1411         overflow: hidden;
    1412         margin-bottom: 0;
    1413 }
    1414 
    1415 #user_info.active #user_info_links ul {
    1416         margin-top: 0;
    1417         margin-bottom: 0;
    1418         -moz-transition: margin-top 200ms;
    1419         -webkit-transition: margin-top 200ms;
    1420         -o-transition: margin-top 200ms;
    1421         transition: margin-top 200ms;
    1422 }
    1423 
    1424 #user_info_links ul {
    1425         border-width: 1px;
    1426         border-style: solid;
    1427         margin-top: -1000px;
    1428         -moz-transition: margin-top 500ms ease-in;
    1429         -webkit-transition: margin-top 500ms ease-in;
    1430         -o-transition: margin-top 500ms ease-in;
    1431         transition: margin-top 500ms ease-in;
    1432 }
    1433 
    1434 #user_info_links,
    1435 #user_info_links ul,
    1436 #user_info_links li:last-child {
    1437         -moz-border-radius: 0 0 3px 3px;
    1438         -webkit-border-bottom-right-radius: 3px;
    1439         -webkit-border-bottom-left-radius: 3px;
    1440         -khtml-border-bottom-right-radius: 3px;
    1441         -khtml-border-bottom-left-radius: 3px;
    1442         border-bottom-right-radius: 3px;
    1443         border-bottom-left-radius: 3px;
    1444 }
    1445 
    1446 #user_info_links li {
    1447         display: block;
    1448         margin: 0;
    1449 }
    1450 
    1451 #user_info_links a {
    1452         display: block;
    1453         padding: 6px 8px;
    1454 }
    1455 
    14561344#wphead {
    14571345        height: 32px;
    14581346        margin-right: 20px;