Changeset 20456
- Timestamp:
- 04/12/2012 09:53:19 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/wp-admin-rtl.dev.css
r20412 r20456 42 42 24.0 - Dead 43 43 25.0 - TinyMCE tweaks 44 26.0 - Full Overlay w/ Sidebar 44 45 45 46 … … 1470 1471 #editorcontainer .wp_themeSkin .mceStatusbar a.mceResize { 1471 1472 float: left; 1473 } 1474 1475 /*------------------------------------------------------------------------------ 1476 26.0 - Full Overlay w/ Sidebar 1477 ------------------------------------------------------------------------------*/ 1478 .wp-full-overlay.collapsed, 1479 .wp-full-overlay.collapsed div.wp-full-overlay-header, 1480 .wp-full-overlay.collapsed div.wp-full-overlay-footer { 1481 left: 0; 1482 right: -302px; 1483 } 1484 1485 .wp-full-overlay-sidebar { 1486 box-shadow: inset 11px 0 8px -8px rgba( 0, 0, 0, 0.1 ); 1487 border-right: 0; 1488 border-left: 1px solid rgba( 0, 0, 0, 0.2 ); 1489 } 1490 1491 .wp-full-overlay-main { 1492 left: 0; 1493 right: 300px; 1494 } 1495 1496 .wp-full-overlay.collapsed .wp-full-overlay-main { 1497 left: auto; 1498 right: 0; 1499 } 1500 1501 .wp-full-overlay-sidebar div.wp-full-overlay-header, 1502 .wp-full-overlay-sidebar div.wp-full-overlay-footer { 1503 left: auto; 1504 right: 0; 1505 } 1506 1507 .wp-full-overlay-sidebar div.wp-full-overlay-header { 1508 box-shadow: 1509 inset 11px 0 8px -8px rgba( 0, 0, 0, 0.1 ), 1510 inset 0 -1px 0 0px #dfdfdf; 1511 } 1512 1513 .wp-full-overlay-sidebar div.wp-full-overlay-footer { 1514 box-shadow: 1515 inset 11px 0 8px -8px rgba( 0, 0, 0, 0.1 ), 1516 inset 0 1px 0 0px #fff; 1517 } 1518 1519 /* Return and close buttons. */ 1520 .wp-full-overlay .close-full-overlay { 1521 left: auto; 1522 right: 20px; 1523 } 1524 1525 /* Collapse Button */ 1526 .wp-full-overlay .collapse-sidebar { 1527 left: auto; 1528 right: 265px; 1529 } 1530 1531 .wp-full-overlay.collapsed .collapse-sidebar { 1532 left: auto; 1533 right: 315px; 1534 } 1535 1536 .wp-full-overlay .collapse-sidebar-arrow { 1537 margin-left: 9; 1538 margin-right: 2px; 1539 background: transparent url('../../wp-admin/images/arrows.png') no-repeat 0 -108px; 1540 } 1541 1542 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 1543 background-position: 0 -72px; 1544 } 1545 1546 .wp-full-overlay .collapse-sidebar-label { 1547 text-align: left; 1548 position: absolute; 1549 right: auto; 1550 left: 100%; 1551 margin-right: 0; 1552 margin-left: 10px; 1553 } 1554 1555 .wp-full-overlay.collapsed .collapse-sidebar-label { 1556 display: none; 1472 1557 } 1473 1558 -
trunk/wp-admin/css/wp-admin.dev.css
r20455 r20456 5170 5170 bottom: 0; 5171 5171 } 5172 5172 5173 .wp-full-overlay.collapsed .wp-full-overlay-main { 5173 5174 left: 0; … … 5229 5230 border-radius: 50%; 5230 5231 } 5232 5231 5233 .wp-full-overlay.collapsed .collapse-sidebar { 5232 5234 position: absolute; 5233 5235 left: 315px; 5234 5236 } 5237 5235 5238 .wp-full-overlay .collapse-sidebar-arrow { 5236 5239 margin-top: 2px; … … 5241 5244 background: transparent url('../../wp-admin/images/arrows.png') no-repeat 0 -72px; 5242 5245 } 5246 5243 5247 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 5244 5248 background-position: 0 -108px; … … 5253 5257 margin-right: 10px; 5254 5258 } 5259 5255 5260 .wp-full-overlay.collapsed .collapse-sidebar-label { 5256 5261 display: none; 5257 5262 } 5263 5258 5264 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label { 5259 5265 color: #999; -
trunk/wp-includes/css/customize-controls.dev.css
r20404 r20456 137 137 line-height: 28px; 138 138 } 139 139 140 .customize-control-text input, 140 141 .customize-control-select select, … … 177 178 line-height: 20px; 178 179 } 180 179 181 .customize-control-radio input { 180 182 margin-right: 5px; … … 194 196 } 195 197 196 .customize-loader {197 background: transparent;198 border: 4px solid #666;199 border-radius: 50%;200 display: block;201 margin: 10px auto;202 text-indent: -9999px;203 204 height: 12px;205 width: 12px;206 207 /* Animation */208 -webkit-animation: customize-loader 1s infinite ease-out;209 -moz-animation: customize-loader 1s infinite ease-out;210 animation: customize-loader 1s infinite ease-out;211 }212 @-moz-keyframes customize-loader {213 0% {214 opacity: 0;215 -moz-transform: scale(0.7);216 }217 40% {218 opacity: 1;219 }220 100% {221 opacity: 0;222 -moz-transform: scale(1);223 }224 }225 @-webkit-keyframes customize-loader {226 0% {227 opacity: 0;228 -webkit-transform: scale(0.7);229 }230 40% {231 opacity: 1;232 }233 100% {234 opacity: 0;235 -webkit-transform: scale(1);236 }237 }238 @keyframes customize-loader {239 0% {240 opacity: 0;241 transform: scale(0.7);242 }243 40% {244 opacity: 1;245 }246 100% {247 opacity: 0;248 transform: scale(1);249 }250 }251 252 253 198 /* 254 199 * Style for custom settings … … 261 206 * Color Picker 262 207 */ 263 264 208 .customize-section .color-picker a { 265 209 display: block; … … 276 220 display: none; 277 221 } 278 279 222 280 223 .customize-section .color-picker .farbtastic-placeholder { … … 287 230 border-radius: 50%; 288 231 } 289 290 232 291 233 .customize-section .color-picker-hex { … … 325 267 float: left; 326 268 } 269 327 270 .customize-section .customize-image-picker .thumbnail { 328 271 float: left; … … 332 275 min-height: 1em; 333 276 } 277 334 278 .customize-section .customize-image-picker .thumbnail img { 335 279 max-width: 98px; … … 337 281 border: 1px solid #ccc; 338 282 } 283 339 284 .customize-section .customize-image-picker .actions { 340 285 width: 140px; 341 286 float: left; 342 287 } 288 343 289 .customize-section .customize-image-picker .actions a { 344 290 display: block; 345 291 } 292 346 293 .customize-section .customize-image-picker .library { 347 294 display: none; 348 295 /* float: left;*/ 349 296 } 297 350 298 /*.customize-section .customize-image-picker .library label { 351 299 display: block; … … 364 312 padding: 10px 10px 5px 8px; 365 313 }*/ 314 366 315 .customize-section .customize-image-picker .library ul { 367 316 border-bottom: 1px solid #dfdfdf; … … 370 319 margin: 5px 0; 371 320 } 321 372 322 .customize-section .customize-image-picker .library li { 373 323 color: #999; … … 379 329 border-width: 1px 1px 0 1px; 380 330 } 331 381 332 .customize-section .customize-image-picker .library li.library-selected { 382 333 color: #777; … … 386 337 padding-bottom: 5px; 387 338 } 339 388 340 .customize-section .customize-image-picker .library div { 389 341 width: 100%; 390 342 float: left; 391 343 } 344 392 345 .customize-section .customize-image-picker .library a { 393 346 display: block; … … 399 352 border: 1px solid #dfdfdf; 400 353 } 354 401 355 .customize-section .customize-image-picker .library a:hover { 402 356 border-color: #21759b; 403 357 } 358 404 359 .customize-section .customize-image-picker .library img { 405 360 display: block; … … 407 362 max-height: 80px; 408 363 } 364 409 365 .customize-section .customize-image-picker .library-content { 410 366 display: none; -
trunk/wp-includes/script-loader.php
r20451 r20456 455 455 $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : ''; 456 456 457 $rtl_styles = array( 'wp-admin', 'ie', 'media', 'admin-bar', 'wplink' );457 $rtl_styles = array( 'wp-admin', 'ie', 'media', 'admin-bar', 'wplink', 'customize-controls' ); 458 458 // Any rtl stylesheets that don't have a .dev version for ltr 459 459 $no_suffix = array( 'farbtastic' );
Note: See TracChangeset
for help on using the changeset viewer.