not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.5 KiB

  1. .enyo-fittable-rows-layout {
  2. position: relative;
  3. }
  4. .enyo-fittable-rows-layout > * {
  5. box-sizing: border-box;
  6. -webkit-box-sizing: border-box;
  7. -moz-box-sizing: border-box;
  8. /* float when not stretched */
  9. float: left;
  10. clear: both;
  11. }
  12. /* non-floating when stretched */
  13. .enyo-fittable-rows-layout.enyo-stretch > * {
  14. float: none;
  15. clear: none;
  16. }
  17. /* setting to enforce margin collapsing */
  18. /* NOTE: rows cannot have margin left/right */
  19. .enyo-fittable-rows-layout.enyo-stretch.enyo-margin-expand > * {
  20. float: left;
  21. clear: both;
  22. width: 100%;
  23. /* note: harsh resets */
  24. margin-left: 0 !important;
  25. margin-right: 0 !important;
  26. }
  27. .enyo-fittable-columns-layout {
  28. position: relative;
  29. text-align: left;
  30. white-space: nowrap;
  31. }
  32. .enyo-fittable-columns-layout.enyo-center {
  33. text-align: center;
  34. }
  35. .enyo-fittable-columns-layout > * {
  36. box-sizing: border-box;
  37. -webkit-box-sizing: border-box;
  38. -moz-box-sizing: border-box;
  39. vertical-align: top;
  40. display: inline-block;
  41. white-space: normal;
  42. }
  43. .enyo-fittable-columns-layout.enyo-tool-decorator > * {
  44. vertical-align: middle;
  45. }
  46. /* repair clobbered white-space setting for pre, code */
  47. .enyo-fittable-columns-layout > pre, .enyo-fittable-columns-layout > code {
  48. white-space: pre;
  49. }
  50. .enyo-fittable-columns-layout > .enyo-fittable-columns-layout, .enyo-fittable-columns-layout > .onyx-toolbar-inline {
  51. white-space: nowrap;
  52. }
  53. /* NOTE: columns cannot have margin top/bottom */
  54. .enyo-fittable-columns-layout.enyo-stretch > * {
  55. height: 100%;
  56. /* note: harsh resets */
  57. margin-top: 0 !important;
  58. margin-bottom: 0 !important;
  59. }