views-admin-rtl.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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: right;
  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 details collapsible fieldset */
  37. .views-display-tab .fieldset-legend {
  38. left: auto;
  39. right: -5px;
  40. }
  41. /* @end */
  42. /* @group Attachment details actions
  43. *
  44. * Display the "Delete" and "Duplicate" buttons to the right.
  45. */
  46. .views-display-tab .fieldset-wrapper > .views-ui-display-tab-bucket .actions {
  47. left: 0;
  48. right: auto;
  49. }
  50. /* @end */
  51. /* @group Attachment configuration columns */
  52. .views-display-columns > * {
  53. float: right;
  54. margin-left: 0;
  55. margin-right: 1%;
  56. padding-left: 0;
  57. padding-right: 1%;
  58. }
  59. .views-display-columns > *:first-child {
  60. margin-right: 0;
  61. padding-right: 0;
  62. }
  63. /* @end */
  64. /* @group Settings forms */
  65. .views-dependent {
  66. margin-right: 1.5em;
  67. }
  68. .views-display-setting .label,
  69. .views-display-setting .views-ajax-link {
  70. float: right;
  71. }
  72. /* @end */