diff --git a/src/wp-includes/css/admin-bar.css b/src/wp-includes/css/admin-bar.css
index 3cc47cb0fce..1fd04eace2a 100644
a
|
b
|
html:lang(he-il) .rtl #wpadminbar * { |
719 | 719 | box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); |
720 | 720 | } |
721 | 721 | |
| 722 | @media screen and (min-width: 782px) { |
| 723 | /* Prevent wrapping of admin bar that has more items than admin bar area on desktop/tablet layout */ |
| 724 | #wpadminbar .quicklinks { |
| 725 | justify-content: space-between; |
| 726 | } |
| 727 | #wpadminbar .quicklinks > ul > li { |
| 728 | float: none !important; |
| 729 | } |
| 730 | #wpadminbar .quicklinks > ul > li, |
| 731 | #wpadminbar .quicklinks .ab-item { |
| 732 | white-space: nowrap; |
| 733 | text-overflow: ellipsis; |
| 734 | min-width: 0 !important; |
| 735 | } |
| 736 | #wpadminbar .quicklinks .ab-item { |
| 737 | overflow: hidden; |
| 738 | } |
| 739 | #wpadminbar .quicklinks .ab-item .ab-label, |
| 740 | #wpadminbar .quicklinks .ab-item .display-name { |
| 741 | float: none; |
| 742 | display: inline; |
| 743 | } |
| 744 | #wpadminbar .quicklinks, |
| 745 | #wpadminbar .quicklinks > ul { |
| 746 | display: -ms-flexbox; |
| 747 | display: flex; |
| 748 | flex-wrap: nowrap; |
| 749 | -ms-flex-wrap: nowrap; |
| 750 | min-width: 0 !important; |
| 751 | } |
| 752 | #wpadminbar #wp-admin-bar-top-secondary { |
| 753 | flex-direction: row-reverse; |
| 754 | -ms-flex-direction: row-reverse; |
| 755 | } |
| 756 | } |
| 757 | |
722 | 758 | @media screen and (max-width: 782px) { |
723 | 759 | /* Toolbar Touchification*/ |
724 | 760 | html #wpadminbar { |
… |
… |
html:lang(he-il) .rtl #wpadminbar * { |
1016 | 1052 | top: 10px; |
1017 | 1053 | left: 0; |
1018 | 1054 | } |
| 1055 | /* Prevent wrapping of admin bar that has more items than admin bar area on mobile layout */ |
| 1056 | #wpcontent { |
| 1057 | padding-top: 15px; |
| 1058 | } |
| 1059 | #wpadminbar { |
| 1060 | display: flex; |
| 1061 | flex-wrap: nowrap; |
| 1062 | padding-bottom: 15px; |
| 1063 | overflow-x: scroll; |
| 1064 | overflow-y: hidden; |
| 1065 | } |
| 1066 | #wpadminbar > *, |
| 1067 | #wpadminbar .ab-top-menu { |
| 1068 | display: flex; |
| 1069 | flex-wrap: nowrap; |
| 1070 | } |
| 1071 | #wpadminbar .ab-sub-wrapper { |
| 1072 | display: none !important; |
| 1073 | } |
1019 | 1074 | } |
1020 | 1075 | |
1021 | 1076 | /* Smartphone */ |