Changeset 43674
- Timestamp:
- 10/05/2018 02:50:31 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9/src/wp-admin/css/dashboard.css
r43536 r43674 227 227 228 228 .try-gutenberg-panel .try-gutenberg-panel-column-container { 229 display: -ms-grid; 230 display: grid; 231 -ms-grid-columns: 36% 32% 32%; 232 grid-template-columns: 36% 32% 32%; 229 display: flex; 233 230 margin-bottom: 13px; 234 231 } 235 232 233 @supports (display: grid) { 234 .try-gutenberg-panel .try-gutenberg-panel-column-container { 235 display: -ms-grid; 236 display: grid; 237 -ms-grid-columns: 36% 32% 32%; 238 grid-template-columns: 36% 32% 32%; 239 } 240 } 241 242 .try-gutenberg-panel .try-gutenberg-panel-image-column { 243 width: 36%; 244 } 245 246 @supports (display: grid) { 247 .try-gutenberg-panel .try-gutenberg-panel-image-column { 248 width: auto; 249 } 250 } 251 236 252 .try-gutenberg-panel .try-gutenberg-panel-column:not(.try-gutenberg-panel-image-column) { 237 display: -ms-grid; 238 display: grid; 239 -ms-grid-rows: auto 100px; 240 grid-template-rows: auto 100px; 253 display: flex; 254 flex-direction: column; 255 justify-content: space-between; 256 width: 32%; 257 } 258 259 @supports (display: grid) { 260 .try-gutenberg-panel .try-gutenberg-panel-column:not(.try-gutenberg-panel-image-column) { 261 display: -ms-grid; 262 display: grid; 263 -ms-grid-rows: auto 100px; 264 grid-template-rows: auto 100px; 265 width: auto; 266 } 267 } 268 269 .try-gutenberg-panel .try-gutenberg-action { 270 height: 100px; 271 } 272 273 @supports (display: grid) { 274 .try-gutenberg-panel .try-gutenberg-action { 275 height: auto; 276 } 241 277 } 242 278 … … 256 292 257 293 .welcome-panel .welcome-panel-column ul { 258 294 margin: 0.8em 1em 1em 0; 259 295 } 260 296 … … 1270 1306 display: none; 1271 1307 } 1308 1309 .try-gutenberg-panel .try-gutenberg-panel-column:not(.try-gutenberg-panel-image-column) { 1310 width: 50%; 1311 } 1312 1313 @supports (display: grid) { 1314 .try-gutenberg-panel .try-gutenberg-panel-column:not(.try-gutenberg-panel-image-column) { 1315 width: auto; 1316 } 1317 } 1272 1318 } 1273 1319 … … 1281 1327 1282 1328 .try-gutenberg-panel .try-gutenberg-panel-column-container { 1283 -ms-grid-columns: 100%; 1284 grid-template-columns: 100%; 1329 flex-wrap: wrap; 1330 } 1331 1332 @supports (display: grid) { 1333 .try-gutenberg-panel .try-gutenberg-panel-column-container { 1334 -ms-grid-columns: 100%; 1335 grid-template-columns: 100%; 1336 } 1337 } 1338 1339 .try-gutenberg-panel .try-gutenberg-panel-column:not(.try-gutenberg-panel-image-column) { 1340 width: 100%; 1285 1341 } 1286 1342
Note: See TracChangeset
for help on using the changeset viewer.