Changeset 26373
- Timestamp:
- 11/26/2013 01:37:02 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/wp-admin.css
r26371 r26373 10853 10853 @-ms-viewport { 10854 10854 width: device-width; 10855 zoom: 1;10856 user-zoom: fixed;10857 10855 } 10858 10856 … … 11021 11019 .auto-fold #adminmenuwrap { 11022 11020 position: absolute; 11023 top: 0;11024 11021 left: 0; 11025 11022 z-index: 100; … … 11040 11037 width: 100%; 11041 11038 } 11042 11043 /* Let the menubar scroll independently of the main column */ 11044 .auto-fold #adminmenuwrap { 11045 height: 100%; 11046 position: fixed; 11047 overflow: hidden; 11048 overflow-y: scroll; 11049 top: 46px; 11050 11051 height: -webkit-calc(100% - 46px); 11052 height: calc(100% - 46px); 11053 11054 -webkit-box-shadow: inset 2px 0 0 rgba(0, 0, 0, .1); 11055 box-shadow: inset 2px 0 0 rgba(0, 0, 0, .1); 11056 11057 -moz-box-sizing: border-box; 11058 -webkit-box-sizing: border-box; 11059 box-sizing: border-box; 11060 11061 -webkit-overflow-scrolling: touch; 11062 } 11063 11039 11064 11040 /* Experimental animations for sidebar */ 11065 11041 .auto-fold #adminmenu, … … 11071 11047 } 11072 11048 11073 #wpbody {11074 -moz-transition: right .05s ease-in-out;11075 -webkit-transition: right .05s ease-in-out;11076 transition: right .05s ease-in-out;11077 }11078 11079 .auto-fold #adminmenu {11080 -webkit-opacity: .10;11081 -moz-opacity: .10;11082 opacity: .10;11083 -moz-transition: left .05s ease-in-out, -moz-opacity .3s ease-in;11084 -webkit-transition: left .05s ease-in-out, -webkit-opacity .3s ease-in;11085 transition: left .05s ease-in-out, opacity .3s ease-in;11086 }11087 11088 .auto-fold .moby6-open #adminmenu {11089 -moz-opacity: 1;11090 -webkit-opacity: 1;11091 opacity: 1;11092 }11093 11049 11094 11050 /* Resize the admin menu items to a comfortable touch size */ … … 12245 12201 12246 12202 /* Smartphone */ 12247 @media screen and (max-width: 480px) { 12203 @media screen and (max-width: 600px) { 12204 html.wp-toolbar { 12205 padding-top: 0; 12206 } 12207 12208 .auto-fold #adminmenu { 12209 top: 46px; 12210 } 12211 12248 12212 #moby6-overlay { 12249 12213 position: fixed; -
trunk/src/wp-includes/css/admin-bar.css
r26348 r26373 939 939 } 940 940 941 /* Horizontal*/942 @media screen and (max-width: 480px) and (orientation: landscape) {941 /* Smartphone */ 942 @media screen and (max-width: 600px) { 943 943 #wpadminbar { 944 944 position: absolute; 945 945 } 946 } 947 948 /* Smartphone */ 949 @media screen and (max-width: 480px) { 946 950 947 #moby6-overlay { 951 948 position: fixed;
Note: See TracChangeset
for help on using the changeset viewer.