Changeset 61646
- Timestamp:
- 02/15/2026 08:17:10 AM (8 weeks ago)
- Location:
- trunk/src/wp-admin/css
- Files:
-
- 6 edited
-
common.css (modified) (8 diffs)
-
dashboard.css (modified) (9 diffs)
-
edit.css (modified) (3 diffs)
-
forms.css (modified) (1 diff)
-
list-tables.css (modified) (3 diffs)
-
themes.css (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r61645 r61646 789 789 790 790 .stuffbox .hndle { 791 border-bottom: 1px solid #c3c4c7;791 border-bottom: 1px solid rgb(0, 0, 0, 0.1); 792 792 } 793 793 … … 2183 2183 align-items: center; 2184 2184 justify-content: space-between; 2185 border-bottom: 1px solid #c3c4c7;2185 border-bottom: 1px solid rgb(0, 0, 0, 0.1); 2186 2186 } 2187 2187 … … 2196 2196 .postbox-header .handle-actions { 2197 2197 flex-shrink: 0; 2198 padding-inline-end: 6px; 2198 2199 } 2199 2200 … … 2232 2233 2233 2234 .sortable-placeholder { 2234 border: 1px dashed #c3c4c7; 2235 border: 2px solid var(--wp-admin-theme-color); 2236 border-radius: 8px; 2235 2237 margin-bottom: 20px; 2238 background: rgb(var(--wp-admin-theme-color--rgb), 0.04); 2236 2239 } 2237 2240 … … 2241 2244 padding: 0; 2242 2245 line-height: 1; 2243 } 2244 2245 .postbox.closed { 2246 border-bottom: 0; 2246 background: #ffffff; 2247 border: 1px solid rgb(0, 0, 0, 0.1); 2248 border-radius: 0; 2249 } 2250 2251 .postbox.closed .postbox-header { 2252 border-bottom: none; 2247 2253 } 2248 2254 … … 2255 2261 2256 2262 .postbox .inside { 2257 padding: 0 12px 12px;2263 padding: 16px; 2258 2264 line-height: 1.4; 2259 2265 font-size: 13px; … … 2268 2274 2269 2275 .postbox .inside { 2270 margin: 11px0;2276 margin: 0; 2271 2277 position: relative; 2272 2278 } … … 2449 2455 .metabox-holder h2.hndle { 2450 2456 font-size: 14px; 2451 padding: 8px 12px;2457 padding: 16px; 2452 2458 margin: 0; 2453 2459 line-height: 1.4; -
trunk/src/wp-admin/css/dashboard.css
r61645 r61646 41 41 #dashboard-widgets-wrap { 42 42 overflow: hidden; 43 margin: 0 -8px; 43 margin: 0 -4px; 44 } 45 46 #dashboard-widgets .postbox { 47 border-radius: 8px; 48 } 49 50 #dashboard-widgets .postbox-header .hndle { 51 padding: 12px 16px; 44 52 } 45 53 … … 51 59 display: flow-root; /* avoid margin collapsing between parent and first/last child elements */ 52 60 /* Required min-height to make the jQuery UI Sortable drop zone work. */ 61 min-height: 0; 62 margin-right: 8px; 63 padding: 4px; 64 } 65 66 #dashboard-widgets .meta-box-sortables:not(:empty) { 67 margin-bottom: 16px; 68 } 69 70 #dashboard-widgets .postbox-container .empty-container { 71 outline: 2px dashed rgb(0, 0, 0, 0.15); 72 outline-offset: -2px; 73 border-radius: 8px; 74 height: 250px; 75 } 76 77 /* Only highlight drop zones when dragging. */ 78 .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { 79 border-radius: 8px; 80 background: rgb(var(--wp-admin-theme-color--rgb), 0.04); 53 81 min-height: 100px; 54 margin: 0 8px 20px; 55 } 56 57 #dashboard-widgets .postbox-container .empty-container { 58 outline: 3px dashed #c3c4c7; 59 height: 250px; 60 } 61 62 /* Only highlight drop zones when dragging and only in the 2 columns layout. */ 63 .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { 64 outline: 3px dashed #646970; 65 /* Prevent margin on the child from collapsing with margin on the parent. */ 66 display: flow-root; 82 } 83 84 .is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container { 85 outline: 2px dashed rgb(0, 0, 0, 0.15); 86 background: rgb(0, 0, 0, 0.01); 67 87 } 68 88 … … 122 142 margin: 16px 0; 123 143 background-color: #151515; 144 border: 1px solid rgb(0, 0, 0, 0.1); 145 border-radius: 8px; 124 146 font-size: 14px; 125 147 line-height: 1.3; … … 260 282 display: grid; 261 283 z-index: 1; 262 padding: 48px;284 padding: 24px; 263 285 grid-template-columns: repeat(3, 1fr); 264 286 gap: 32px; 265 287 align-self: flex-end; 266 background: #fff ;288 background: #ffffff; 267 289 } 268 290 … … 705 727 706 728 #dashboard_right_now .main { 707 padding: 0 12px 11px;729 padding: 16px 16px 11px; 708 730 } 709 731 … … 893 915 #dashboard_activity .inside { 894 916 margin: 0; 895 padding -bottom: 0;917 padding: 0 12px; 896 918 } 897 919 … … 1295 1317 #dashboard-widgets #postbox-container-3 .empty-container, 1296 1318 #dashboard-widgets #postbox-container-4 .empty-container { 1297 outline: none;1319 border: none; 1298 1320 height: 0; 1299 1321 min-height: 0; 1300 1322 margin-bottom: 0; 1323 display: none; 1301 1324 } 1302 1325 … … 1311 1334 1312 1335 #wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container { 1313 outline: none;1336 border: none; 1314 1337 height: 0; 1315 1338 min-height: 0; … … 1349 1372 1350 1373 #dashboard-widgets #postbox-container-4 .empty-container { 1351 outline: none;1374 border: none; 1352 1375 height: 0; 1353 1376 min-height: 0; 1354 1377 margin-bottom: 0; 1378 display: none; 1355 1379 } 1356 1380 -
trunk/src/wp-admin/css/edit.css
r61645 r61646 6 6 #poststuff #post-body { 7 7 padding: 0; 8 margin: 0 -4px; 8 9 } 9 10 … … 168 169 /* Post Screen */ 169 170 171 .metabox-holder .postbox-container .meta-box-sortables { 172 padding: 4px; 173 } 174 170 175 /* Only highlight drop zones when dragging and only in the 2 columns layout. */ 171 176 .is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables { 172 outline: 3px dashed #646970; 173 /* Prevent margin on the child from collapsing with margin on the parent. */ 174 display: flow-root; 177 border-radius: 8px; 178 background: rgb(var(--wp-admin-theme-color--rgb), 0.04); 175 179 /* 176 180 * This min-height is meant to limit jumpiness while dragging. It's equivalent … … 1777 1781 1778 1782 .is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables { 1779 outline: none; 1783 border: none; 1784 background: transparent; 1780 1785 min-height: 0; 1781 1786 margin-bottom: 0; -
trunk/src/wp-admin/css/forms.css
r61645 r61646 1095 1095 position: relative; 1096 1096 margin-top: 20px; 1097 padding: 0.7em 2em 1em;1097 padding: 16px 24px; 1098 1098 min-width: 255px; 1099 1099 max-width: 520px; 1100 border: 1px solid #c3c4c7;1101 bo x-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);1102 background: #fff ;1100 border: 1px solid rgb(0, 0, 0, 0.1); 1101 border-radius: 8px; 1102 background: #ffffff; 1103 1103 box-sizing: border-box; 1104 1104 } -
trunk/src/wp-admin/css/list-tables.css
r61645 r61646 1490 1490 width: 48.5%; 1491 1491 width: calc( 50% - 8px ); 1492 background-color: #fff; 1493 border: 1px solid #dcdcde; 1492 background-color: #ffffff; 1493 border: 1px solid rgb(0, 0, 0, 0.1); 1494 border-radius: 8px; 1494 1495 box-sizing: border-box; 1496 overflow: hidden; 1495 1497 } 1496 1498 … … 1556 1558 .plugin-card-top { 1557 1559 position: relative; 1558 padding: 20px 20px 10px;1560 padding: 16px; 1559 1561 min-height: 135px; 1560 1562 } … … 1671 1673 .plugin-card-bottom { 1672 1674 clear: both; 1673 padding: 1 2px 20px;1675 padding: 16px; 1674 1676 background-color: #f6f7f7; 1675 border-top: 1px solid #dcdcde;1677 border-top: 1px solid rgb(0, 0, 0, 0.1); 1676 1678 overflow: hidden; 1677 1679 } -
trunk/src/wp-admin/css/themes.css
r61645 r61646 65 65 position: relative; 66 66 width: 30.6%; 67 border: 1px solid #dcdcde; 68 box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1); 67 background: #ffffff; 68 border: 1px solid rgb(0, 0, 0, 0.1); 69 border-radius: 8px; 69 70 box-sizing: border-box; 71 overflow: hidden; 70 72 } 71 73 … … 85 87 margin: 0; 86 88 padding: 16px 15px; 87 bo x-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);89 border-top: 1px solid rgb(0, 0, 0, 0.1); 88 90 overflow: hidden; 89 91 white-space: nowrap; 90 92 text-overflow: ellipsis; 91 background: #fff; 92 background: rgba(255, 255, 255, 0.65); 93 background: #ffffff; 93 94 } 94 95 … … 302 303 */ 303 304 .theme-browser .theme.add-new-theme { 305 background: transparent; 304 306 border: none; 305 box-shadow: none;307 overflow: visible; 306 308 } 307 309 … … 379 381 .theme-browser .theme.add-new-theme .theme-name { 380 382 background: none; 383 border: none; 381 384 text-align: center; 382 box-shadow: none;383 385 font-weight: 400; 384 386 position: relative; … … 1132 1134 } 1133 1135 1134 .upload-plugin .wp-upload-form input[type=submit], 1136 .upload-plugin .wp-upload-form input[type=submit], 1135 1137 .upload-theme .wp-upload-form input[type=submit] { 1136 1138 position: absolute; … … 2055 2057 } 2056 2058 2057 .upload-plugin .wp-upload-form input[type=file], 2059 .upload-plugin .wp-upload-form input[type=file], 2058 2060 .upload-theme .wp-upload-form input[type=file] { 2059 2061 padding: 30px 30px 80px;
Note: See TracChangeset
for help on using the changeset viewer.