_forms.css.scss 882 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // Shared Styles
  2. form, div.form {
  3. margin: 0 0 20px;
  4. fieldset {
  5. background: #f6f6f6;
  6. border: 1px solid #ddd;
  7. margin: 0 2px -10px;
  8. padding: 0.35em 1em 1em;
  9. .fieldset-heading {
  10. border-bottom: 1px solid #d6d6d6;
  11. margin: 10px 0 20px;
  12. padding: 0 0 20px;
  13. }
  14. label.control, div.control {
  15. padding-left: 30px;
  16. padding-right: 30px;
  17. margin-bottom: 4px;
  18. }
  19. div.form-submit {
  20. padding-left:30px;
  21. }
  22. .datetimepicker.form-control {
  23. cursor: pointer;
  24. }
  25. }
  26. }
  27. div.control {
  28. width: 100%;
  29. max-width: 600px;
  30. }
  31. div.table-control {
  32. width: 100%;
  33. max-width: 600px;
  34. }
  35. // Forms in Tables
  36. table form {
  37. margin: 0;
  38. }
  39. // Specific Forms
  40. .session-form {
  41. h2 {
  42. margin-top: 0;
  43. }
  44. }
  45. form fieldset:hover {
  46. background-color: #e8eeee;
  47. }
  48. div.table-narrow {
  49. table-layout: fixed;
  50. width: 360px;
  51. }