_forms.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. @import "globals";
  2. .base_input {
  3. border: 0;
  4. border-radius: 4px;
  5. font-size: 13px;
  6. height: 32px;
  7. white-space: nowrap;
  8. outline: 0;
  9. box-sizing: border-box;
  10. margin: 0;
  11. @include transition(background $transitions-duration, box-shadow $transitions-duration, border $transitions-duration);
  12. }
  13. .input {
  14. @extend .base_input;
  15. @include placeholder {
  16. color: $input-placeholder-color;
  17. }
  18. background-color: $input-background-color;
  19. color: $input-text-color;
  20. border: 1px solid $input-border-color;
  21. padding: 0 12px;
  22. &:focus {
  23. box-shadow: 0 0 4px 0 $input-shadow-color;
  24. border-color: $input-background-color;
  25. }
  26. }
  27. .background-form .input {
  28. @extend .input;
  29. background-color: $background-input-background-color;
  30. color: $background-input-text-color;
  31. border-color: $background-input-border-color;
  32. }
  33. .button {
  34. &, &:visited, &:hover {
  35. @extend .base_input;
  36. font-weight: lighter;
  37. font-size: 12px;
  38. text-align: center;
  39. background-color: $primary-button-background-color;
  40. color: $primary-button-text-color;
  41. padding: 0 20px;
  42. display: inline-block;
  43. text-transform: uppercase;
  44. }
  45. &.button-secondary {
  46. background-color: $button-background-color;
  47. color: $button-text-color;
  48. text-transform: none;
  49. font-weight: normal;
  50. }
  51. &.button-red {
  52. background-color: $danger-button-background-color;
  53. color: $danger-button-text-color;
  54. }
  55. &.button-background {
  56. background-color: $background-button-background-color;
  57. color: $background-button-text-color;
  58. }
  59. &.button-transparent {
  60. background-color: transparent;
  61. color: $text-color;
  62. padding: 0 10px;
  63. }
  64. &:hover {
  65. background-color: $button-hover-background-color;
  66. color: $button-hover-text-color;
  67. font-weight: lighter;
  68. }
  69. &:active {
  70. background-color: $button-active-background-color;
  71. color: $button-active-text-color;
  72. }
  73. }
  74. .segmented-button {
  75. &, &:visited, &:hover {
  76. @extend .base_input;
  77. font-size: 12px;
  78. text-align: center;
  79. background-color: $button-background-color;
  80. color: $button-text-color;
  81. padding: 0 10px;
  82. display: inline-block;
  83. text-transform: none;
  84. border-radius: 0;
  85. }
  86. &:hover {
  87. background-color: $button-hover-background-color;
  88. color: $button-hover-text-color;
  89. }
  90. &:active {
  91. background-color: $button-active-background-color;
  92. color: $button-active-text-color;
  93. }
  94. &.disabled {
  95. background-color: $button-background-color !important;
  96. color: $button-text-color;
  97. opacity: 0.5;
  98. }
  99. &.left {
  100. border-radius: 4px 0 0 4px;
  101. }
  102. &.right {
  103. border-radius: 0 4px 4px 0;
  104. }
  105. }
  106. a.button, a.segmented-button {
  107. line-height: 32px;
  108. }
  109. input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="number"] {
  110. @extend .input;
  111. }
  112. textarea {
  113. @extend .input;
  114. height: auto;
  115. line-height: normal;
  116. padding: 12px;
  117. white-space: pre-wrap;
  118. }
  119. .button, input[type="submit"], input[type="button"] {
  120. @extend .button;
  121. }
  122. input[type=checkbox] {
  123. display: none;
  124. &#action-toggle {
  125. display: none !important;
  126. }
  127. + label:before {
  128. @include font-icon;
  129. color: $input-icon-color;
  130. font-size: 12px;
  131. content: $icon-checkbox-outline;
  132. letter-spacing: 5px;
  133. .action-checkbox-column & {
  134. color: $content-contrast2-text-color;
  135. }
  136. }
  137. &:checked + label:before {
  138. content: $icon-checkbox;
  139. }
  140. }
  141. .form-row {
  142. .vDateField, .vTimeField {
  143. border-radius: 4px 0 0 4px !important;
  144. &-link {
  145. vertical-align: top;
  146. display: inline-block;
  147. span {
  148. width: 32px;
  149. height: 32px;
  150. line-height: 32px !important;
  151. background-color: $button-background-color;
  152. color: $button-text-color;
  153. display: inline-block;
  154. vertical-align: middle;
  155. text-align: center;
  156. border-radius: 0 4px 4px 0;
  157. }
  158. &:hover span {
  159. background-color: $button-hover-background-color;
  160. color: $button-hover-text-color;
  161. }
  162. }
  163. }
  164. .vDateField-link + .vTimeField {
  165. margin-left: 10px;
  166. }
  167. label.required {
  168. font-weight: bold;
  169. &:after {
  170. content: '*';
  171. }
  172. }
  173. select {
  174. min-width: 200px;
  175. }
  176. }
  177. .empty-form {
  178. display: none;
  179. }