_forms.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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 0.3s, box-shadow 0.3s, border 0.3s);
  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: bold;
  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. }
  44. &.button-secondary {
  45. background-color: $button-background-color;
  46. color: $button-text-color;
  47. }
  48. &.button-red {
  49. background-color: $danger-button-background-color;
  50. color: $danger-button-text-color;
  51. }
  52. &.button-background {
  53. background-color: $background-button-background-color;
  54. color: $background-button-text-color;
  55. }
  56. &.button-transparent {
  57. background-color: transparent;
  58. color: $text-color;
  59. padding: 0 10px;
  60. }
  61. &:hover {
  62. background-color: $button-hover-background-color;
  63. color: $button-hover-text-color;
  64. font-weight: bold;
  65. }
  66. &:active {
  67. background-color: $button-active-background-color;
  68. color: $button-active-text-color;
  69. }
  70. }
  71. a.button {
  72. line-height: 32px;
  73. }
  74. input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="number"] {
  75. @extend .input;
  76. }
  77. textarea {
  78. @extend .input;
  79. height: auto;
  80. line-height: normal;
  81. padding: 12px;
  82. white-space: normal;
  83. }
  84. .button, input[type="submit"], input[type="button"] {
  85. @extend .button;
  86. }
  87. input[type=checkbox] {
  88. display: none;
  89. &#action-toggle {
  90. display: none !important;
  91. }
  92. + label:before {
  93. @include font-icon;
  94. color: $input-icon-color;
  95. font-size: 12px;
  96. content: $icon-checkbox-outline;
  97. letter-spacing: 5px;
  98. .action-checkbox-column & {
  99. color: $content-contrast2-text-color;
  100. }
  101. }
  102. &:checked + label:before {
  103. content: $icon-checkbox;
  104. }
  105. }
  106. .form-row {
  107. .vDateField, .vTimeField {
  108. border-radius: 4px 0 0 4px !important;
  109. &-link {
  110. vertical-align: top;
  111. display: inline-block;
  112. span {
  113. width: 32px;
  114. height: 32px;
  115. line-height: 32px !important;
  116. background-color: $button-background-color;
  117. color: $button-text-color;
  118. display: inline-block;
  119. vertical-align: middle;
  120. text-align: center;
  121. border-radius: 0 4px 4px 0;
  122. }
  123. &:hover span {
  124. background-color: $button-hover-background-color;
  125. color: $button-hover-text-color;
  126. }
  127. }
  128. }
  129. .vDateField-link + .vTimeField {
  130. margin-left: 10px;
  131. }
  132. label.required {
  133. font-weight: bold;
  134. &:after {
  135. content: '*';
  136. }
  137. }
  138. select {
  139. min-width: 200px;
  140. }
  141. }
  142. .empty-form {
  143. display: none;
  144. }