You are here

rooms_unit.css in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7

/* Bookable unit edit form */
.rooms-unit-edit-form .form-wrapper {
  max-width: 400px;
  margin: 0 20px 0.4em 0;
}
.rooms-unit-edit-form .form-item {
  margin-bottom: 1em;
}
.rooms-unit-edit-form .form-item label,
.rooms-unit-edit-form .form-wrapper legend {
  margin-bottom: 0.2em;
}
.rooms-unit-edit-form .form-item label,
.rooms-unit-edit-form .form-wrapper .fieldset-legend {
  font-size: 1em;
  font-weight: bold;
}
.rooms-unit-edit-form .form-checkbox + label {
  font-weight: normal;
}
.rooms-unit-edit-form .form-checkbox:checked + label {
  font-weight: bold;
}
.rooms-unit-edit-form .field-widget-rooms-options-combined {
  max-width: inherit;
  margin-right: 0;
  clear: both;
}

.rooms-unit-edit-form .field-widget-rooms-availability-constraints-range {
  max-width: inherit;
  margin-right: 0;
  clear: both;
}

.rooms-unit-edit-form .form-item-name,
.rooms-unit-edit-form .form-item-base-price,
.rooms-unit-edit-form .rooms-unit-guest-capacity,
.rooms-unit-edit-form .rooms-unit-child-capacity,
.rooms-unit-edit-form .rooms-unit-bed-arrangement {
  float: left;
  width: 15em;
  margin-right: 20px;
}

.rooms-unit-edit-form .rooms-unit-guest-capacity {
  clear: left;
}

.rooms-unit-edit-form .rooms-unit-guest-capacity .form-text,
.rooms-unit-edit-form .rooms-unit-child-capacity .form-text,
.rooms-unit-edit-form .rooms-unit-data-bed-arrangement .form-text {
  width: 2em;
  text-align: right;
}

.rooms-unit-edit-form .form-item-base-price .form-text {
  width: 6em;
  text-align: right;
}

.rooms-unit-edit-form .form-actions {
  clear: both;
  float: none;
}

File

modules/rooms_unit/css/rooms_unit.css
View source
  1. /* Bookable unit edit form */
  2. .rooms-unit-edit-form .form-wrapper {
  3. max-width: 400px;
  4. margin: 0 20px 0.4em 0;
  5. }
  6. .rooms-unit-edit-form .form-item {
  7. margin-bottom: 1em;
  8. }
  9. .rooms-unit-edit-form .form-item label,
  10. .rooms-unit-edit-form .form-wrapper legend {
  11. margin-bottom: 0.2em;
  12. }
  13. .rooms-unit-edit-form .form-item label,
  14. .rooms-unit-edit-form .form-wrapper .fieldset-legend {
  15. font-size: 1em;
  16. font-weight: bold;
  17. }
  18. .rooms-unit-edit-form .form-checkbox + label {
  19. font-weight: normal;
  20. }
  21. .rooms-unit-edit-form .form-checkbox:checked + label {
  22. font-weight: bold;
  23. }
  24. .rooms-unit-edit-form .field-widget-rooms-options-combined {
  25. max-width: inherit;
  26. margin-right: 0;
  27. clear: both;
  28. }
  29. .rooms-unit-edit-form .field-widget-rooms-availability-constraints-range {
  30. max-width: inherit;
  31. margin-right: 0;
  32. clear: both;
  33. }
  34. .rooms-unit-edit-form .form-item-name,
  35. .rooms-unit-edit-form .form-item-base-price,
  36. .rooms-unit-edit-form .rooms-unit-guest-capacity,
  37. .rooms-unit-edit-form .rooms-unit-child-capacity,
  38. .rooms-unit-edit-form .rooms-unit-bed-arrangement {
  39. float: left;
  40. width: 15em;
  41. margin-right: 20px;
  42. }
  43. .rooms-unit-edit-form .rooms-unit-guest-capacity {
  44. clear: left;
  45. }
  46. .rooms-unit-edit-form .rooms-unit-guest-capacity .form-text,
  47. .rooms-unit-edit-form .rooms-unit-child-capacity .form-text,
  48. .rooms-unit-edit-form .rooms-unit-data-bed-arrangement .form-text {
  49. width: 2em;
  50. text-align: right;
  51. }
  52. .rooms-unit-edit-form .form-item-base-price .form-text {
  53. width: 6em;
  54. text-align: right;
  55. }
  56. .rooms-unit-edit-form .form-actions {
  57. clear: both;
  58. float: none;
  59. }