[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/css/ -> widgets.css (source)

   1  /* General Widgets Styles */
   2  
   3  .widget {
   4      margin: 0 auto 10px;
   5      position: relative;
   6      box-sizing: border-box;
   7  }
   8  
   9  .widget.open {
  10      z-index: 99;
  11  }
  12  .widget.open:focus-within {
  13      z-index: 100;
  14  }
  15  
  16  .widget-top {
  17      font-size: 13px;
  18      font-weight: 600;
  19      background: #f6f7f7;
  20  }
  21  
  22  .widget-top .widget-action {
  23      border: 0;
  24      margin: 0;
  25      padding: 10px;
  26      background: none;
  27      cursor: pointer;
  28  }
  29  
  30  .widget-title h3,
  31  .widget-title h4 {
  32      margin: 0;
  33      padding: 15px;
  34      font-size: 1em;
  35      line-height: 1;
  36      overflow: hidden;
  37      white-space: nowrap;
  38      text-overflow: ellipsis;
  39      -webkit-user-select: none;
  40      user-select: none;
  41  }
  42  
  43  .widgets-holder-wrap .widget-inside {
  44      border-top: none;
  45      padding: 1px 15px 15px;
  46      line-height: 1.23076923;
  47  }
  48  
  49  .widget.widget-dirty .widget-control-close-wrapper {
  50      display: none;
  51  }
  52  
  53  .in-widget-title,
  54  #widgets-right a.widget-control-edit,
  55  #available-widgets .widget-description {
  56      color: #646970;
  57  }
  58  
  59  .deleting .widget-title,
  60  .deleting .widget-top .widget-action .toggle-indicator:before {
  61      color: #a7aaad;
  62  }
  63  
  64  /* Media Widgets */
  65  .wp-core-ui .media-widget-control.selected .placeholder,
  66  .wp-core-ui .media-widget-control.selected .not-selected,
  67  .wp-core-ui .media-widget-control .selected {
  68      display: none;
  69  }
  70  
  71  .media-widget-control.selected .selected {
  72      display: inline-block;
  73  }
  74  
  75  .media-widget-buttons {
  76      text-align: left;
  77      margin-top: 0;
  78  }
  79  
  80  .media-widget-control .media-widget-buttons .button {
  81      width: auto;
  82      height: auto;
  83      margin-top: 12px;
  84      white-space: normal;
  85  }
  86  
  87  .media-widget-buttons .button:first-child {
  88      margin-right: 8px;
  89  }
  90  
  91  .media-widget-control .attachment-media-view .button-add-media,
  92  .media-widget-control .placeholder {
  93      border: 1px dashed #c3c4c7;
  94      box-sizing: border-box;
  95      cursor: pointer;
  96      line-height: 1.6;
  97      padding: 9px 0;
  98      position: relative;
  99      text-align: center;
 100      width: 100%;
 101  }
 102  
 103  .media-widget-control .attachment-media-view .button-add-media {
 104      cursor: pointer;
 105      background-color: #f0f0f1;
 106      color: #2c3338;
 107  }
 108  
 109  .media-widget-control .attachment-media-view .button-add-media:hover {
 110      background-color: #fff;
 111  }
 112  
 113  .media-widget-control .attachment-media-view .button-add-media:focus {
 114      background-color: #fff;
 115      border-style: solid;
 116      border-color: #4f94d4;
 117      box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
 118      /* Only visible in Windows High Contrast mode */
 119      outline: 2px solid transparent;
 120      outline-offset: -2px;
 121  }
 122  
 123  .media-widget-control .media-widget-preview {
 124      background: transparent;
 125      text-align: center;
 126  }
 127  .media-widget-control .media-widget-preview .notice {
 128      text-align: initial;
 129  }
 130  .media-frame .media-widget-embed-notice p code,
 131  .media-widget-control .notice p code {
 132      padding: 0 3px 0 0;
 133  }
 134  .media-frame .media-widget-embed-notice {
 135      margin-top: 16px;
 136  }
 137  .media-widget-control .media-widget-preview img {
 138      max-width: 100%;
 139      vertical-align: middle;
 140      background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
 141      background-position: 0 0, 10px 10px;
 142      background-size: 20px 20px;
 143  }
 144  .media-widget-control .media-widget-preview .wp-video-shortcode {
 145      background: #000;
 146  }
 147  
 148  .media-frame.media-widget .media-toolbar-secondary {
 149      min-width: 300px;
 150  }
 151  
 152  .media-frame.media-widget .image-details .embed-media-settings .setting.align,
 153  .media-frame.media-widget .attachment-display-settings .setting.align,
 154  .media-frame.media-widget .embed-media-settings .setting.align,
 155  .media-frame.media-widget .embed-media-settings .legend-inline,
 156  .media-frame.media-widget .embed-link-settings .setting.link-text,
 157  .media-frame.media-widget .replace-attachment,
 158  .media-frame.media-widget .checkbox-setting.autoplay {
 159      display: none;
 160  }
 161  
 162  .media-widget-video-preview {
 163      width: 100%;
 164  }
 165  
 166  .media-widget-video-link {
 167      display: inline-block;
 168      min-height: 132px;
 169      width: 100%;
 170      background: #000;
 171  }
 172  
 173  .media-widget-video-link .dashicons {
 174      font: normal 60px/1 'dashicons';
 175      position: relative;
 176      width: 100%;
 177      top: -90px;
 178      color: #fff;
 179      text-decoration: none;
 180  }
 181  
 182  .media-widget-video-link.no-poster .dashicons {
 183      top: 30px;
 184  }
 185  
 186  .media-frame #embed-url-field.invalid,
 187  .media-widget-image-link > .link:invalid {
 188      border: 1px solid #d63638;
 189  }
 190  
 191  .media-widget-image-link {
 192      margin: 1em 0;
 193  }
 194  
 195  .media-widget-gallery-preview {
 196      display: flex;
 197      justify-content: flex-start;
 198      flex-wrap: wrap;
 199      margin: -1.79104477%;
 200  }
 201  
 202  .media-widget-preview.media_gallery,
 203  .media-widget-preview.media_image {
 204      cursor: pointer;
 205  }
 206  
 207  .media-widget-preview .placeholder {
 208      background: #f0f0f1;
 209  }
 210  
 211  .media-widget-gallery-preview .gallery-item {
 212      box-sizing: border-box;
 213      width: 50%;
 214      margin: 0;
 215      background: transparent;
 216  }
 217  
 218  .media-widget-gallery-preview .gallery-item .gallery-icon {
 219      margin: 4.5%;
 220  }
 221  
 222  /*
 223   * Use targeted nth-last-child selectors to control the size of each image
 224   * based on how many gallery items are present in the grid.
 225   * See: https://alistapart.com/article/quantity-queries-for-css
 226   */
 227  .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child,
 228  .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child ~ .gallery-item,
 229  .media-widget-gallery-preview .gallery-item:nth-last-child(n+5),
 230  .media-widget-gallery-preview .gallery-item:nth-last-child(n+5) ~ .gallery-item,
 231  .media-widget-gallery-preview .gallery-item:nth-last-child(n+6),
 232  .media-widget-gallery-preview .gallery-item:nth-last-child(n+6) ~ .gallery-item {
 233      max-width: 33.33%;
 234  }
 235  
 236  .media-widget-gallery-preview .gallery-item img {
 237      height: auto;
 238      vertical-align: bottom;
 239  }
 240  
 241  .media-widget-gallery-preview .gallery-icon {
 242      position: relative;
 243  }
 244  
 245  .media-widget-gallery-preview .gallery-icon-placeholder {
 246      position: absolute;
 247      top: 0;
 248      bottom: 0;
 249      width: 100%;
 250      box-sizing: border-box;
 251      display: flex;
 252      align-items: center;
 253      justify-content: center;
 254      background-color: rgba(0, 0, 0, 0.5);
 255  }
 256  
 257  .media-widget-gallery-preview .gallery-icon-placeholder-text {
 258      font-weight: 600;
 259      font-size: 2em;
 260      color: #fff;
 261  }
 262  
 263  
 264  /* Widget Dragging Helpers */
 265  .widget.ui-draggable-dragging {
 266      min-width: 100%;
 267  }
 268  
 269  .widget.ui-sortable-helper {
 270      opacity: 0.8;
 271  }
 272  
 273  .widget-placeholder {
 274      border: 1px dashed #c3c4c7;
 275      margin: 0 auto 10px;
 276      height: 45px;
 277      width: 100%;
 278      box-sizing: border-box;
 279  }
 280  
 281  #widgets-right .widget-placeholder {
 282      margin-top: 0;
 283  }
 284  
 285  #widgets-right .closed .widget-placeholder {
 286      height: 0;
 287      border: 0;
 288      margin-top: -10px;
 289  }
 290  
 291  /* Widget Sidebars */
 292  .sidebar-name {
 293      position: relative;
 294      box-sizing: border-box;
 295  }
 296  
 297  .js .sidebar-name {
 298      cursor: pointer;
 299  }
 300  
 301  .sidebar-name .handlediv {
 302      float: right;
 303      width: 38px;
 304      height: 38px;
 305      border: 0;
 306      margin: 0;
 307      padding: 8px;
 308      background: none;
 309      cursor: pointer;
 310      outline: none;
 311  }
 312  
 313  #widgets-right .sidebar-name .handlediv {
 314      margin: 5px 3px 0 0;
 315  }
 316  
 317  .sidebar-name .handlediv:focus {
 318      box-shadow: none;
 319      /* Only visible in Windows High Contrast mode */
 320      outline: 1px solid transparent;
 321  }
 322  
 323  #widgets-left .sidebar-name .toggle-indicator {
 324      display: none;
 325  }
 326  
 327  #widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator,
 328  #widgets-left .sidebar-name:hover .toggle-indicator,
 329  #widgets-left .sidebar-name .handlediv:focus .toggle-indicator {
 330      display: block;
 331  }
 332  
 333  .sidebar-name .toggle-indicator:before {
 334      padding: 1px 2px 1px 0;
 335      border-radius: 50%;
 336  }
 337  
 338  .sidebar-name .handlediv:focus .toggle-indicator:before {
 339      box-shadow: 0 0 0 2px #2271b1;
 340      /* Only visible in Windows High Contrast mode */
 341      outline: 2px solid transparent;
 342  }
 343  
 344  .sidebar-name h2,
 345  .sidebar-name h3 {
 346      margin: 0;
 347      padding: 8px 10px;
 348      overflow: hidden;
 349      white-space: normal;
 350      line-height: 1.5;
 351  }
 352  
 353  .widgets-holder-wrap .description {
 354      padding: 0 0 15px;
 355      margin: 0;
 356      font-style: normal;
 357      color: #646970;
 358  }
 359  
 360  .widget-holder .description,
 361  .inactive-sidebar .description {
 362      color: #50575e;
 363  }
 364  
 365  #widgets-right .widgets-holder-wrap .description {
 366      padding-left: 7px;
 367      padding-right: 7px;
 368  }
 369  
 370  /* Widgets 2-col Layout */
 371  div.widget-liquid-left {
 372      margin: 0;
 373      width: 38%;
 374      float: left;
 375  }
 376  
 377  div.widget-liquid-right {
 378      float: right;
 379      width: 58%;
 380  }
 381  
 382  /* Widgets Left - Available Widgets */
 383  
 384  div#widgets-left {
 385      padding-top: 12px;
 386  }
 387  
 388  div#widgets-left .closed .sidebar-name,
 389  div#widgets-left .inactive-sidebar.closed .sidebar-name {
 390      margin-bottom: 10px;
 391  }
 392  
 393  div#widgets-left .sidebar-name h2,
 394  div#widgets-left .sidebar-name h3 {
 395      padding: 10px 0;
 396      margin: 0 10px 0 0;
 397  }
 398  
 399  #widgets-left .widgets-holder-wrap,
 400  div#widgets-left .widget-holder {
 401      background: transparent;
 402      border: none;
 403  }
 404  
 405  #widgets-left .widgets-holder-wrap {
 406      border: none;
 407      box-shadow: none;
 408  }
 409  
 410  #available-widgets .widget {
 411      margin: 0;
 412  }
 413  
 414  #available-widgets .widget:nth-child(odd) {
 415      clear: both;
 416  }
 417  
 418  #available-widgets .widget .widget-description {
 419      display: block;
 420      padding: 10px 15px;
 421      font-size: 12px;
 422      overflow-wrap: break-word;
 423      word-wrap: break-word;
 424      -ms-word-break: break-all;
 425      word-break: break-word;
 426      -webkit-hyphens: auto;
 427      hyphens: auto;
 428  }
 429  
 430  #available-widgets #widget-list {
 431      position: relative;
 432  }
 433  
 434  /* Inactive Sidebars */
 435  #widgets-left .inactive-sidebar {
 436      clear: both;
 437      width: 100%;
 438      background: transparent;
 439      padding: 0;
 440      margin: 0 0 20px;
 441      border: none;
 442      box-shadow: none;
 443  }
 444  
 445  #widgets-left .inactive-sidebar.first {
 446      margin-top: 40px;
 447  }
 448  
 449  /* Not sure what this is for... */
 450  div#widgets-left .inactive-sidebar .widget.expanded {
 451      left: auto;
 452  }
 453  
 454  .widget-title-action {
 455      float: right;
 456      position: relative;
 457  }
 458  
 459  div#widgets-left .inactive-sidebar .widgets-sortables {
 460      min-height: 42px;
 461      padding: 0;
 462      background: transparent;
 463      margin: 0;
 464      position: relative;
 465  }
 466  
 467  /* Widgets Right */
 468  
 469  div#widgets-right .sidebars-column-1,
 470  div#widgets-right .sidebars-column-2 {
 471      max-width: 450px;
 472  }
 473  
 474  div#widgets-right .widgets-holder-wrap {
 475      margin: 10px 0 0;
 476  }
 477  
 478  div#widgets-right .sidebar-description {
 479      min-height: 20px;
 480      margin-top: -5px;
 481  }
 482  
 483  div#widgets-right .sidebar-name h2,
 484  div#widgets-right .sidebar-name h3 {
 485      padding: 15px 15px 15px 7px;
 486  }
 487  
 488  div#widgets-right .widget-top {
 489      padding: 0;
 490  }
 491  
 492  div#widgets-right .widgets-sortables {
 493      padding: 0 8px;
 494      margin-bottom: 9px;
 495      position: relative;
 496      min-height: 123px;
 497  }
 498  
 499  div#widgets-right .closed .widgets-sortables {
 500      min-height: 0;
 501      margin-bottom: 0;
 502  }
 503  
 504  .sidebar-name .spinner,
 505  .remove-inactive-widgets .spinner {
 506      float: none;
 507      position: relative;
 508      top: -2px;
 509      margin: -5px 5px;
 510  }
 511  
 512  .sidebar-name .spinner {
 513      position: absolute;
 514      top: 18px;
 515      right: 30px;
 516  }
 517  
 518  /* Dragging a widget over a closed sidebar */
 519  #widgets-right .widgets-holder-wrap.widget-hover {
 520      border-color: #787c82;
 521      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
 522  }
 523  
 524  /* Accessibility Mode */
 525  .widget-access-link {
 526      float: right;
 527      margin: -5px 0 10px 10px;
 528  }
 529  
 530  .widgets_access #widgets-left .widget .widget-top {
 531      cursor: auto;
 532  }
 533  
 534  .widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,
 535  .widgets_access #wpwrap .widgets-holder-wrap.closed .widget,
 536  .widgets_access #wpwrap .widget-control-edit {
 537      display: block;
 538  }
 539  
 540  .widgets_access #widgets-left .widget .widget-top:hover,
 541  .widgets_access #widgets-right .widget .widget-top:hover {
 542      border-color: #dcdcde;
 543  }
 544  
 545  #available-widgets .widget-control-edit .edit,
 546  #available-widgets .widget-action .edit,
 547  #widgets-left .inactive-sidebar .widget-control-edit .add,
 548  #widgets-left .inactive-sidebar .widget-action .add,
 549  #widgets-right .widget-control-edit .add,
 550  #widgets-right .widget-action .add {
 551      display: none;
 552  }
 553  
 554  .widget-control-edit {
 555      display: block;
 556      color: #646970;
 557      background: #f0f0f1;
 558      padding: 0 15px;
 559      line-height: 3.30769230;
 560      border-left: 1px solid #dcdcde;
 561  }
 562  
 563  #widgets-left .widget-control-edit:hover,
 564  #widgets-right .widget-control-edit:hover {
 565      color: #fff;
 566      background: #3c434a;
 567      border-left: 0;
 568      outline: 1px solid #3c434a;
 569  }
 570  
 571  .widgets-holder-wrap .sidebar-name,
 572  .widgets-holder-wrap .sidebar-description {
 573      -webkit-user-select: none;
 574      user-select: none;
 575  }
 576  
 577  .editwidget {
 578      margin: 0 auto;
 579  }
 580  
 581  .editwidget .widget-inside {
 582      display: block;
 583      padding: 0 15px;
 584  }
 585  
 586  .editwidget .widget-control-actions {
 587      margin-top: 20px;
 588  }
 589  
 590  .js .widgets-holder-wrap.closed .widget,
 591  .js .widgets-holder-wrap.closed .sidebar-description,
 592  .js .widgets-holder-wrap.closed .remove-inactive-widgets,
 593  .js .widgets-holder-wrap.closed .description,
 594  .js .closed br.clear {
 595      display: none;
 596  }
 597  
 598  .js .widgets-holder-wrap.closed .widget.ui-sortable-helper {
 599      display: block;
 600  }
 601  
 602  /* Hide Widget Settings by Default */
 603  .widget-inside,
 604  .widget-description {
 605      display: none;
 606  }
 607  
 608  .widget-inside {
 609      background: #fff;
 610  }
 611  
 612  .widget-inside select {
 613      max-width: 100%;
 614  }
 615  
 616  /* Dragging widgets over the available widget area show's a "Deactivate" message */
 617  #removing-widget {
 618      display: none;
 619      font-weight: 400;
 620      padding-left: 15px;
 621      font-size: 12px;
 622      line-height: 1;
 623      color: #000;
 624  }
 625  
 626  .js #removing-widget {
 627      color: #72aee6;
 628  }
 629  
 630  .widget-control-noform,
 631  #access-off,
 632  .widgets_access .widget-action,
 633  .widgets_access .handlediv,
 634  .widgets_access #access-on,
 635  .widgets_access .widget-holder .description,
 636  .no-js .widget-holder .description {
 637      display: none;
 638  }
 639  
 640  .widgets_access .widget-holder,
 641  .widgets_access #widget-list {
 642      padding-top: 10px;
 643  }
 644  
 645  .widgets_access #access-off {
 646      display: inline;
 647  }
 648  
 649  .widgets_access .sidebar-name,
 650  .widgets_access .widget .widget-top {
 651      cursor: default;
 652  }
 653  
 654  
 655  /* Widgets Area Chooser */
 656  .widget-liquid-left #widgets-left.chooser #available-widgets .widget,
 657  .widget-liquid-left #widgets-left.chooser .inactive-sidebar {
 658      transition: opacity 0.1s linear;
 659  }
 660  
 661  .widget-liquid-left #widgets-left.chooser #available-widgets .widget,
 662  .widget-liquid-left #widgets-left.chooser .inactive-sidebar {
 663      /* -webkit-filter: blur(1px); */
 664      opacity: 0.2;
 665      pointer-events: none;
 666  }
 667  
 668  .widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question {
 669      /* -webkit-filter: none; */
 670      opacity: 1;
 671      pointer-events: auto;
 672  }
 673  
 674  .widgets-chooser ul,
 675  #widgets-left .widget-in-question .widget-top,
 676  #available-widgets .widget-top:hover,
 677  div#widgets-right .widget-top:hover,
 678  #widgets-left .widget-top:hover {
 679      border-color: #8c8f94;
 680      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
 681  }
 682  
 683  .widgets-chooser ul.widgets-chooser-sidebars {
 684      margin: 0;
 685      list-style-type: none;
 686      max-height: 300px;
 687      overflow: auto;
 688  }
 689  
 690  .widgets-chooser {
 691      display: none;
 692  }
 693  
 694  .widgets-chooser ul {
 695      border: 1px solid #c3c4c7;
 696  }
 697  
 698  .widgets-chooser li {
 699      border-bottom: 1px solid #c3c4c7;
 700      background: #fff;
 701      margin: 0;
 702      position: relative;
 703  }
 704  
 705  .widgets-chooser .widgets-chooser-button {
 706      width: 100%;
 707      padding: 10px 15px 10px 35px;
 708      background: transparent;
 709      border: 0;
 710      box-sizing: border-box;
 711      text-align: left;
 712      cursor: pointer;
 713      transition: background 0.2s ease-in-out;
 714  }
 715  
 716  /* @todo looks like these hover/focus states are overridden by .widgets-chooser-selected */
 717  .widgets-chooser .widgets-chooser-button:hover,
 718  .widgets-chooser .widgets-chooser-button:focus {
 719      outline: none;
 720      text-decoration: underline;
 721  }
 722  
 723  .widgets-chooser li:last-child {
 724      border: none;
 725  }
 726  
 727  .widgets-chooser .widgets-chooser-selected .widgets-chooser-button {
 728      background: #2271b1;
 729      color: #fff;
 730  }
 731  
 732  .widgets-chooser .widgets-chooser-selected:before {
 733      content: "\f147";
 734      display: block;
 735      -webkit-font-smoothing: antialiased;
 736      font: normal 26px/1 dashicons;
 737      color: #fff;
 738      position: absolute;
 739      top: 7px;
 740      left: 5px;
 741  }
 742  
 743  .widgets-chooser .widgets-chooser-actions {
 744      padding: 10px 0 12px;
 745      text-align: center;
 746  }
 747  
 748  #available-widgets .widget .widget-top {
 749      cursor: pointer;
 750  }
 751  
 752  #available-widgets .widget.ui-draggable-dragging .widget-top {
 753      cursor: move;
 754  }
 755  
 756  /* =Specific widget styling
 757  -------------------------------------------------------------- */
 758  .text-widget-fields {
 759      position: relative;
 760  }
 761  .text-widget-fields [hidden] {
 762      display: none;
 763  }
 764  .text-widget-fields .wp-pointer.wp-pointer-top {
 765      position: absolute;
 766      z-index: 3;
 767      top: 100px;
 768      right: 10px;
 769      left: 10px;
 770  }
 771  .text-widget-fields .wp-pointer .wp-pointer-arrow {
 772      left: auto;
 773      right: 15px;
 774  }
 775  .text-widget-fields .wp-pointer .wp-pointer-buttons {
 776      line-height: 1.4;
 777  }
 778  
 779  .custom-html-widget-fields > p > .CodeMirror {
 780      border: 1px solid #dcdcde;
 781  }
 782  .custom-html-widget-fields code {
 783      padding-top: 1px;
 784      padding-bottom: 1px;
 785  }
 786  ul.CodeMirror-hints {
 787      z-index: 101; /* Due to z-index 100 set on .widget.open */
 788  }
 789  .widget-control-actions .custom-html-widget-save-button.button.validation-blocked {
 790      cursor: not-allowed;
 791  }
 792  
 793  /* =Media Queries
 794  -------------------------------------------------------------- */
 795  
 796  @media screen and (max-width: 782px) {
 797      .widgets-holder-wrap .widget-inside input[type="checkbox"],
 798      .widgets-holder-wrap .widget-inside input[type="radio"],
 799      .editwidget .widget-inside input[type="checkbox"], /* Selectors for the "accessibility mode" page. */
 800      .editwidget .widget-inside input[type="radio"] {
 801          margin: 0.25rem 0.25rem 0.25rem 0;
 802      }
 803  }
 804  
 805  @media screen and (max-width: 480px) {
 806      div.widget-liquid-left {
 807          width: 100%;
 808          float: none;
 809          border-right: none;
 810          padding-right: 0;
 811      }
 812  
 813      #widgets-left .sidebar-name {
 814          margin-right: 0;
 815      }
 816  
 817      #widgets-left #available-widgets .widget-top {
 818          margin-right: 0;
 819      }
 820  
 821      #widgets-left .inactive-sidebar .widgets-sortables {
 822          margin-right: 0;
 823      }
 824  
 825      div.widget-liquid-right {
 826          width: 100%;
 827          float: none;
 828      }
 829  
 830      div.widget {
 831          max-width: 480px;
 832      }
 833  
 834      .widget-access-link {
 835          float: none;
 836          margin: 15px 0 0;
 837      }
 838  }
 839  
 840  @media screen and (max-width: 320px) {
 841      div.widget {
 842          max-width: 320px;
 843      }
 844  }
 845  
 846  @media only screen and (min-width: 1250px) {
 847      #widgets-left #available-widgets .widget {
 848          width: 49%;
 849          float: left;
 850      }
 851  
 852      .widget.ui-draggable-dragging {
 853          min-width: 49%;
 854      }
 855  
 856      #widgets-left #available-widgets .widget:nth-child(even) {
 857          float: right;
 858      }
 859  
 860      #widgets-right .sidebars-column-1,
 861      #widgets-right .sidebars-column-2 {
 862          float: left;
 863          width: 49%;
 864      }
 865  
 866      #widgets-right .sidebars-column-1 {
 867          margin-right: 2%;
 868      }
 869  
 870      #widgets-right.single-sidebar .sidebars-column-1,
 871      #widgets-right.single-sidebar .sidebars-column-2 {
 872          float: none;
 873          width: 100%;
 874          margin: 0;
 875      }
 876  }


Generated : Sat Apr 20 08:20:01 2024 Cross-referenced by PHPXref