schedule-response.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* Database selector on install page */
  2. form #selectPartStatForm {
  3. text-align:center;
  4. white-space: nowrap;
  5. margin: 0;
  6. }
  7. form #selectPartStatForm .info {
  8. white-space: normal;
  9. }
  10. form #selectPartStatForm input[type="radio"] {
  11. display: none;
  12. }
  13. form #selectPartStatForm input[type="radio"]:checked+label {
  14. background-color: #e8e8e8;
  15. }
  16. form #selectPartStatForm input[type="radio"]:checked ~ form fieldset#more_options {
  17. display: none;
  18. }
  19. form #selectPartStatForm label {
  20. color: #000;
  21. background-color: #f8f8f8;
  22. position: static;
  23. margin: 0 -3px 5px;
  24. cursor:pointer;
  25. border: 1px solid #ddd;
  26. display: inline-block;
  27. padding: 0;
  28. line-height: normal;
  29. vertical-align: middle;
  30. text-align: center;
  31. overflow: visible;
  32. }
  33. form #selectPartStatForm label:first-of-type {
  34. border-top-left-radius: 4px;
  35. border-bottom-left-radius: 4px;
  36. }
  37. form #selectPartStatForm label:last-of-type {
  38. border-top-right-radius: 4px;
  39. border-bottom-right-radius: 4px;
  40. }
  41. form #selectPartStatForm label span {
  42. cursor: pointer;
  43. padding: 10px 20px;
  44. display: block;
  45. line-height: normal;
  46. }
  47. form #selectPartStatForm label.ui-state-hover,
  48. form #selectPartStatForm label.ui-state-active {
  49. color:#000;
  50. background-color:#e8e8e8;
  51. }
  52. form input[type="number"] {
  53. width: 249px;
  54. background: #fff;
  55. color: #555;
  56. cursor: text;
  57. font-family: inherit;
  58. -webkit-appearance: textfield;
  59. -moz-appearance: textfield;
  60. box-sizing: content-box;
  61. border: none;
  62. font-weight: 300;
  63. }
  64. form input[type="submit"] {
  65. display: block;
  66. margin: 0 auto;
  67. padding: 11px 20px 9px
  68. }