You are here

easychart.widget.css in Easychart 7.3

Same filename and directory in other branches
  1. 8.3 css/easychart.widget.css
/* Node edit form */
.easychart-wrapper {
  border: 1px solid #e1e2dc;
  margin: 1em 0;
}

.ec .form-item {
  padding: 0;
}

/* Fullscreen */
.easychart-header {
  background: #333;
  color: #fff;
}

.easychart-header .toggle {
  padding: 3px 10px 0px 30px;
  display: inline-block;
  background: url(../images/icon-fullscreen.png) no-repeat 10px 7px;
  background-size: 12px auto;
  cursor: pointer;
}

.easychart-wrapper:-moz-full-screen {
  background: #f5f5f5;
  overflow: scroll;
}

.easychart-wrapper:-webkit-full-screen {
  background: #f5f5f5;
  overflow: scroll;
  position: fixed;
  width: 100%;
  top: 0;
}

.easychart-wrapper:-ms-fullscreen {
  background: #f5f5f5;
  overflow: scroll;
  width: auto;
  height: auto;
  margin: auto;
}

.easychart-wrapper:fullscreen {
  background: #f5f5f5;
  overflow: scroll;
}

File

css/easychart.widget.css
View source
  1. /* Node edit form */
  2. .easychart-wrapper {
  3. border: 1px solid #e1e2dc;
  4. margin: 1em 0;
  5. }
  6. .ec .form-item {
  7. padding: 0;
  8. }
  9. /* Fullscreen */
  10. .easychart-header {
  11. background: #333;
  12. color: #fff;
  13. }
  14. .easychart-header .toggle {
  15. padding: 3px 10px 0px 30px;
  16. display: inline-block;
  17. background: url(../images/icon-fullscreen.png) no-repeat 10px 7px;
  18. background-size: 12px auto;
  19. cursor: pointer;
  20. }
  21. .easychart-wrapper:-moz-full-screen {
  22. background: #f5f5f5;
  23. overflow: scroll;
  24. }
  25. .easychart-wrapper:-webkit-full-screen {
  26. background: #f5f5f5;
  27. overflow: scroll;
  28. position: fixed;
  29. width: 100%;
  30. top: 0;
  31. }
  32. .easychart-wrapper:-ms-fullscreen {
  33. background: #f5f5f5;
  34. overflow: scroll;
  35. width: auto;
  36. height: auto;
  37. margin: auto;
  38. }
  39. .easychart-wrapper:fullscreen {
  40. background: #f5f5f5;
  41. overflow: scroll;
  42. }