forms.less 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. //
  2. // Forms
  3. // --------------------------------------------------
  4. // Normalize non-controls
  5. //
  6. // Restyle and baseline non-control form elements.
  7. fieldset {
  8. padding: 0;
  9. margin: 0;
  10. border: 0;
  11. // Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets,
  12. // so we reset that to ensure it behaves more like a standard block element.
  13. // See https://github.com/twbs/bootstrap/issues/12359.
  14. min-width: 0;
  15. }
  16. legend {
  17. display: block;
  18. width: 100%;
  19. padding: 0;
  20. margin-bottom: @line-height-computed;
  21. font-size: (@font-size-base * 1.5);
  22. line-height: inherit;
  23. color: @legend-color;
  24. border: 0;
  25. border-bottom: 1px solid @legend-border-color;
  26. }
  27. label {
  28. display: inline-block;
  29. margin-bottom: 5px;
  30. font-weight: bold;
  31. }
  32. // Normalize form controls
  33. //
  34. // While most of our form styles require extra classes, some basic normalization
  35. // is required to ensure optimum display with or without those classes to better
  36. // address browser inconsistencies.
  37. // Override content-box in Normalize (* isn't specific enough)
  38. input[type='search'] {
  39. .box-sizing(border-box);
  40. }
  41. // Position radios and checkboxes better
  42. input[type='radio'],
  43. input[type='checkbox'] {
  44. margin: 4px 0 0;
  45. margin-top: 1px \9; /* IE8-9 */
  46. line-height: normal;
  47. }
  48. // Set the height of file controls to match text inputs
  49. input[type='file'] {
  50. display: block;
  51. }
  52. // Make range inputs behave like textual form controls
  53. input[type='range'] {
  54. display: block;
  55. width: 100%;
  56. }
  57. // Make multiple select elements height not fixed
  58. select[multiple],
  59. select[size] {
  60. height: auto;
  61. }
  62. // Focus for file, radio, and checkbox
  63. input[type='file']:focus,
  64. input[type='radio']:focus,
  65. input[type='checkbox']:focus {
  66. .tab-focus();
  67. }
  68. // Adjust output element
  69. output {
  70. display: block;
  71. padding-top: (@padding-base-vertical + 1);
  72. font-size: @font-size-base;
  73. line-height: @line-height-base;
  74. color: @input-color;
  75. }
  76. // Common form controls
  77. //
  78. // Shared size and type resets for form controls. Apply `.form-control` to any
  79. // of the following form controls:
  80. //
  81. // select
  82. // textarea
  83. // input[type="text"]
  84. // input[type="password"]
  85. // input[type="datetime"]
  86. // input[type="datetime-local"]
  87. // input[type="date"]
  88. // input[type="month"]
  89. // input[type="time"]
  90. // input[type="week"]
  91. // input[type="number"]
  92. // input[type="email"]
  93. // input[type="url"]
  94. // input[type="search"]
  95. // input[type="tel"]
  96. // input[type="color"]
  97. .form-control {
  98. display: block;
  99. width: 100%;
  100. height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
  101. padding: @padding-base-vertical @padding-base-horizontal;
  102. font-size: @font-size-base;
  103. line-height: @line-height-base;
  104. color: @input-color;
  105. background-color: @input-bg;
  106. background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
  107. border: 1px solid @input-border;
  108. border-radius: @input-border-radius;
  109. .box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.075));
  110. .transition(~'border-color ease-in-out .15s, box-shadow ease-in-out .15s');
  111. // Customize the `:focus` state to imitate native WebKit styles.
  112. .form-control-focus();
  113. // Placeholder
  114. .placeholder();
  115. // Disabled and read-only inputs
  116. //
  117. // HTML5 says that controls under a fieldset > legend:first-child won't be
  118. // disabled if the fieldset is disabled. Due to implementation difficulty, we
  119. // don't honor that edge case; we style them as disabled anyway.
  120. &[disabled],
  121. &[readonly],
  122. fieldset[disabled] & {
  123. cursor: not-allowed;
  124. background-color: @input-bg-disabled;
  125. opacity: 1; // iOS fix for unreadable disabled content
  126. }
  127. // Reset height for `textarea`s, and smaller border-radius
  128. textarea& {
  129. height: auto;
  130. border-radius: @border-radius-base;
  131. }
  132. // Smaller border-radius for `select` inputs
  133. select& {
  134. border-radius: @border-radius-base;
  135. }
  136. }
  137. // Search inputs in iOS
  138. //
  139. // This overrides the extra rounded corners on search inputs in iOS so that our
  140. // `.form-control` class can properly style them. Note that this cannot simply
  141. // be added to `.form-control` as it's not specific enough. For details, see
  142. // https://github.com/twbs/bootstrap/issues/11586.
  143. input[type='search'] {
  144. -webkit-appearance: none;
  145. }
  146. // Special styles for iOS date input
  147. //
  148. // In Mobile Safari, date inputs require a pixel line-height that matches the
  149. // given height of the input.
  150. input[type='date'] {
  151. line-height: @input-height-base;
  152. }
  153. // Form groups
  154. //
  155. // Designed to help with the organization and spacing of vertical forms. For
  156. // horizontal forms, use the predefined grid classes.
  157. .form-group {
  158. margin-bottom: 15px;
  159. }
  160. // Checkboxes and radios
  161. //
  162. // Indent the labels to position radios/checkboxes as hanging controls.
  163. .radio,
  164. .checkbox {
  165. display: block;
  166. min-height: @line-height-computed; // clear the floating input if there is no label text
  167. margin-top: 10px;
  168. margin-bottom: 10px;
  169. padding-left: 20px;
  170. label {
  171. display: inline;
  172. font-weight: normal;
  173. cursor: pointer;
  174. }
  175. }
  176. .fake-disabled-checkbox {
  177. opacity: 0.5;
  178. }
  179. .radio input[type='radio'],
  180. .radio-inline input[type='radio'],
  181. .checkbox input[type='checkbox'],
  182. .checkbox-inline input[type='checkbox'] {
  183. float: left;
  184. margin-left: -20px;
  185. }
  186. .radio + .radio,
  187. .checkbox + .checkbox {
  188. margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
  189. }
  190. // Radios and checkboxes on same line
  191. .radio-inline,
  192. .checkbox-inline {
  193. display: inline-block;
  194. padding-left: 20px;
  195. margin-bottom: 0;
  196. vertical-align: middle;
  197. font-weight: normal;
  198. cursor: pointer;
  199. }
  200. .radio-inline + .radio-inline,
  201. .checkbox-inline + .checkbox-inline {
  202. margin-top: 0;
  203. margin-left: 10px; // space out consecutive inline controls
  204. }
  205. // Apply same disabled cursor tweak as for inputs
  206. //
  207. // Note: Neither radios nor checkboxes can be readonly.
  208. input[type='radio'],
  209. input[type='checkbox'],
  210. .radio,
  211. .radio-inline,
  212. .checkbox,
  213. .checkbox-inline {
  214. &[disabled],
  215. fieldset[disabled] & {
  216. cursor: not-allowed;
  217. }
  218. }
  219. // Form control sizing
  220. //
  221. // Build on `.form-control` with modifier classes to decrease or increase the
  222. // height and font-size of form controls.
  223. .input-sm {
  224. .input-size(
  225. @input-height-small; @padding-small-vertical; @padding-small-horizontal;
  226. @font-size-small; @line-height-small; @border-radius-small
  227. );
  228. }
  229. .input-lg {
  230. .input-size(
  231. @input-height-large; @padding-large-vertical; @padding-large-horizontal;
  232. @font-size-large; @line-height-large; @border-radius-large
  233. );
  234. }
  235. // Form control feedback states
  236. //
  237. // Apply contextual and semantic states to individual form controls.
  238. .has-feedback {
  239. // Enable absolute positioning
  240. position: relative;
  241. // Ensure icons don't overlap text
  242. .form-control {
  243. padding-right: (@input-height-base * 1.25);
  244. }
  245. // Feedback icon (requires .glyphicon classes)
  246. .form-control-feedback {
  247. position: absolute;
  248. top: (@line-height-computed + 5); // Height of the `label` and its margin
  249. right: 0;
  250. display: block;
  251. width: @input-height-base;
  252. height: @input-height-base;
  253. line-height: @input-height-base;
  254. text-align: center;
  255. }
  256. }
  257. .has-feedback-left {
  258. position: relative;
  259. .form-control {
  260. padding-left: @input-height-base;
  261. }
  262. .form-control-feedback-left {
  263. position: absolute;
  264. top: (@line-height-computed + 5); // Height of the `label` and its margin
  265. left: 0;
  266. display: block;
  267. width: @input-height-base;
  268. height: @input-height-base;
  269. line-height: @input-height-base;
  270. text-align: center;
  271. }
  272. }
  273. // Feedback states
  274. .has-success {
  275. .form-control-validation(
  276. @state-success-text; @state-success-text; @state-success-bg
  277. );
  278. }
  279. .has-warning {
  280. .form-control-validation(
  281. @state-warning-text; @state-warning-text; @state-warning-bg
  282. );
  283. }
  284. .has-error {
  285. .form-control-validation(
  286. @state-danger-text; @state-danger-text; @state-danger-bg
  287. );
  288. color: @red;
  289. }
  290. .form-control.ng-dirty.ng-invalid:not(:focus),
  291. .form-control[data-ol-dirty]:invalid:not(:focus) {
  292. border-color: @state-danger-text;
  293. .box-shadow(
  294. inset 0 1px 1px rgba(0, 0, 0, 0.075)
  295. ); // Redeclare so transitions work
  296. &:focus {
  297. border-color: darken(@state-danger-text, 10%);
  298. @shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
  299. 0 0 6px lighten(@state-danger-text, 20%);
  300. .box-shadow(@shadow);
  301. }
  302. }
  303. // Static form control text
  304. //
  305. // Apply class to a `p` element to make any string of text align with labels in
  306. // a horizontal form layout.
  307. .form-control-static {
  308. margin-bottom: 0; // Remove default margin from `p`
  309. }
  310. // Help text
  311. //
  312. // Apply to any element you wish to create light text for placement immediately
  313. // below a form control. Use for general help, formatting, or instructional text.
  314. .help-block {
  315. display: block; // account for any element using help-block
  316. margin-top: 5px;
  317. margin-bottom: 10px;
  318. color: lighten(@text-color, 25%); // lighten the text some for contrast
  319. }
  320. // Inline forms
  321. //
  322. // Make forms appear inline(-block) by adding the `.form-inline` class. Inline
  323. // forms begin stacked on extra small (mobile) devices and then go inline when
  324. // viewports reach <768px.
  325. //
  326. // Requires wrapping inputs and labels with `.form-group` for proper display of
  327. // default HTML form controls and our custom form controls (e.g., input groups).
  328. //
  329. // Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
  330. .form-inline {
  331. // Kick in the inline
  332. @media (min-width: @screen-sm-min) {
  333. // Inline-block all the things for "inline"
  334. .form-group {
  335. display: inline-block;
  336. margin-bottom: 0;
  337. vertical-align: middle;
  338. }
  339. // In navbar-form, allow folks to *not* use `.form-group`
  340. .form-control {
  341. display: inline-block;
  342. width: auto; // Prevent labels from stacking above inputs in `.form-group`
  343. vertical-align: middle;
  344. }
  345. // Input groups need that 100% width though
  346. .input-group > .form-control {
  347. width: 100%;
  348. }
  349. .control-label {
  350. margin-bottom: 0;
  351. vertical-align: middle;
  352. }
  353. // Remove default margin on radios/checkboxes that were used for stacking, and
  354. // then undo the floating of radios and checkboxes to match (which also avoids
  355. // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
  356. .radio,
  357. .checkbox {
  358. display: inline-block;
  359. margin-top: 0;
  360. margin-bottom: 0;
  361. padding-left: 0;
  362. vertical-align: middle;
  363. }
  364. .radio input[type='radio'],
  365. .checkbox input[type='checkbox'] {
  366. float: none;
  367. margin-left: 0;
  368. }
  369. // Validation states
  370. //
  371. // Reposition the icon because it's now within a grid column and columns have
  372. // `position: relative;` on them. Also accounts for the grid gutter padding.
  373. .has-feedback .form-control-feedback {
  374. top: 0;
  375. }
  376. }
  377. }
  378. // Horizontal forms
  379. //
  380. // Horizontal forms are built on grid classes and allow you to create forms with
  381. // labels on the left and inputs on the right.
  382. .form-horizontal {
  383. // Consistent vertical alignment of labels, radios, and checkboxes
  384. .control-label,
  385. .radio,
  386. .checkbox,
  387. .radio-inline,
  388. .checkbox-inline {
  389. margin-top: 0;
  390. margin-bottom: 0;
  391. padding-top: (@padding-base-vertical + 1); // Default padding plus a border
  392. }
  393. // Account for padding we're adding to ensure the alignment and of help text
  394. // and other content below items
  395. .radio,
  396. .checkbox {
  397. min-height: (@line-height-computed + (@padding-base-vertical + 1));
  398. }
  399. // Make form groups behave like rows
  400. .form-group {
  401. .make-row();
  402. }
  403. .form-control-static {
  404. padding-top: (@padding-base-vertical + 1);
  405. }
  406. // Only right align form labels here when the columns stop stacking
  407. @media (min-width: @screen-sm-min) {
  408. .control-label {
  409. text-align: right;
  410. }
  411. }
  412. // Validation states
  413. //
  414. // Reposition the icon because it's now within a grid column and columns have
  415. // `position: relative;` on them. Also accounts for the grid gutter padding.
  416. .has-feedback .form-control-feedback {
  417. top: 0;
  418. right: (@grid-gutter-width / 2);
  419. }
  420. .has-feedback-left .form-control-feedback-left {
  421. top: 0;
  422. left: (@grid-gutter-width / 2);
  423. }
  424. }