views_ui.admin-rtl.css

/**
 * The .css file is intended to only contain positioning and size declarations
 * For example: display, position, float, clear, and overflow.
 */

/* @group Inline lists */

.horizontal > * {
  float: right;
}

.horizontal.right {
  float: left;
}

/* @end */

/* @group Attachment details
 *
 * The attachment details section, its tabs for each section and the buttons
 * to add a new section
 */

.form-actions {
  float: left;
}

/* @end */

/* @group Attachment details tabs
 *
 * The tabs that switch between sections
 */

.views-displays .secondary > li {
  float: right;
}

/* @end */

/* @group Attachment details new section button */

.views-displays .secondary .action-list {
  left: auto;
  right: 0;
}

/* @end */

/* @group Attachment collapsible details */

.views-display-tab summary {
  left: auto;
}

/* @end */

/* @group Attachment configuration columns */

@media screen and (min-width:45em) { /* 720px */
  .views-display-columns > * {
    float: right;
    margin-left: 0;
    margin-right: 2%;
  }

  .views-display-columns > *:first-child {
    margin-right: 0;
  }
}

/* @end */

/* @group Settings forms */

.views-dependent {
  margin-right: 1.5em;
}

.views-display-setting .label,
.views-display-setting .views-ajax-link {
  float: right;
}

/* @end */

File

drupal/core/modules/views_ui/css/views_ui.admin-rtl.css
View source
  1. /**
  2. * The .css file is intended to only contain positioning and size declarations
  3. * For example: display, position, float, clear, and overflow.
  4. */
  5. /* @group Inline lists */
  6. .horizontal > * {
  7. float: right;
  8. }
  9. .horizontal.right {
  10. float: left;
  11. }
  12. /* @end */
  13. /* @group Attachment details
  14. *
  15. * The attachment details section, its tabs for each section and the buttons
  16. * to add a new section
  17. */
  18. .form-actions {
  19. float: left;
  20. }
  21. /* @end */
  22. /* @group Attachment details tabs
  23. *
  24. * The tabs that switch between sections
  25. */
  26. .views-displays .secondary > li {
  27. float: right;
  28. }
  29. /* @end */
  30. /* @group Attachment details new section button */
  31. .views-displays .secondary .action-list {
  32. left: auto;
  33. right: 0;
  34. }
  35. /* @end */
  36. /* @group Attachment collapsible details */
  37. .views-display-tab summary {
  38. left: auto;
  39. }
  40. /* @end */
  41. /* @group Attachment configuration columns */
  42. @media screen and (min-width:45em) { /* 720px */
  43. .views-display-columns > * {
  44. float: right;
  45. margin-left: 0;
  46. margin-right: 2%;
  47. }
  48. .views-display-columns > *:first-child {
  49. margin-right: 0;
  50. }
  51. }
  52. /* @end */
  53. /* @group Settings forms */
  54. .views-dependent {
  55. margin-right: 1.5em;
  56. }
  57. .views-display-setting .label,
  58. .views-display-setting .views-ajax-link {
  59. float: right;
  60. }
  61. /* @end */