You are here

webform_analysis.admin.css in Webform Analysis 8

/* Analysis pages */
.webform-analysis-component {
  width: 33.33%;
  margin: 0 -2px;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
@media all and (max-width: 1024px) {
  .webform-analysis-component {
    width: 50%;
  }
}
@media all and (max-width: 600px) {
  .webform-analysis-component {
    width: 100%;
  }
}
.webform-analysis-component-grid {
  width: 100%;
  clear: both;
}
.webform-analysis-component-inner {
  padding: 12px;
  overflow: auto;
}
.webform-analysis-component table {
  width: 100%;
}
.webform-analysis-component table td {
  white-space: normal;
}

File

css/webform_analysis.admin.css
View source
  1. /* Analysis pages */
  2. .webform-analysis-component {
  3. width: 33.33%;
  4. margin: 0 -2px;
  5. padding: 0;
  6. display: inline-block;
  7. vertical-align: top;
  8. }
  9. @media all and (max-width: 1024px) {
  10. .webform-analysis-component {
  11. width: 50%;
  12. }
  13. }
  14. @media all and (max-width: 600px) {
  15. .webform-analysis-component {
  16. width: 100%;
  17. }
  18. }
  19. .webform-analysis-component-grid {
  20. width: 100%;
  21. clear: both;
  22. }
  23. .webform-analysis-component-inner {
  24. padding: 12px;
  25. overflow: auto;
  26. }
  27. .webform-analysis-component table {
  28. width: 100%;
  29. }
  30. .webform-analysis-component table td {
  31. white-space: normal;
  32. }