Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. .ds-2col-stacked > .group-fhl {
  2. float: left; /* LTR */
  3. width: 70%;
  4. }
  5.  
  6. .ds-2col-stacked > .group-fhr {
  7. float: right; /* LTR */
  8. width: 30%;
  9. }
  10.  
  11. .ds-2col-stacked > .group-left {
  12. float: left; /* LTR */
  13. width: 50%;
  14. }
  15.  
  16. [dir="rtl"] .ds-2col-stacked > .group-left {
  17. float: right;
  18. }
  19.  
  20. .ds-2col-stacked > .group-right {
  21. float: right; /* LTR */
  22. width: 50%;
  23. }
  24.  
  25. [dir="rtl"] .ds-2col-stacked > .group-right {
  26. float: left;
  27. }
  28.  
  29. .ds-2col-stacked > .group-footer {
  30. clear: both;
  31. }
  32.  
  33. <{{ outer_wrapper }}{{ attributes.addClass('ds-2col-stacked', 'clearfix') }}>
  34.  
  35. {{ title_suffix.contextual_links }}
  36.  
  37.  
  38. <{{ fhl_wrapper }}{{ fhl_attributes.addClass('group-fhl') }}>
  39. {{ fhl }}
  40. </{{ fhl_wrapper }}>
  41.  
  42. <{{ fhr_wrapper }}{{ fhr_attributes.addClass('group-fhr') }}>
  43. {{ fhr }}
  44. </{{ fhr_wrapper }}>
  45.  
  46.  
  47. <{{ header_wrapper }}{{ header_attributes.addClass('group-header') }}>
  48. {{ header }}
  49. </{{ header_wrapper }}>
  50.  
  51. <{{ left_wrapper }}{{ left_attributes.addClass('group-left') }}>
  52. {{ left }}
  53. </{{ left_wrapper }}>
  54.  
  55. <{{ right_wrapper }}{{ right_attributes.addClass('group-right') }}>
  56. {{ right }}
  57. </{{ right_wrapper }}>
  58.  
  59. <{{ footer_wrapper }}{{ footer_attributes.addClass('group-footer') }}>
  60. {{ footer }}
  61. </{{ footer_wrapper }}>
  62.  
  63. </{{ outer_wrapper }}>
  64.  
  65. ds_2col_stacked_custom:
  66. label: Two column stacked layout custom
  67. category: Display Suite
  68. class: 'DrupaldsPluginDsLayout'
  69. type: partial
  70. template: ds_layouts/ds-2col-stacked-custom/ds-2col-stacked-custom
  71. library: ds_2col_stacked_custom
  72. regions:
  73. fhl:
  74. label: fhl
  75. fhr:
  76. label: fhr
  77. header:
  78. label: Header
  79. left:
  80. label: Left
  81. right:
  82. label: Right
  83. footer:
  84. label: Footer
  85.  
  86. # DS.
  87. ds_2col_stacked_custom:
  88. version: VERSION
  89. css:
  90. theme:
  91. ds_layouts/ds-2col-stacked-custom/ds-2col-stacked-custom.css: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement