Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

173 lines
5.2 KiB

  1. // stylelint-disable selector-no-qualifying-type
  2. //
  3. // Base styles
  4. //
  5. .input-group {
  6. position: relative;
  7. display: flex;
  8. flex-wrap: wrap; // For form validation feedback
  9. align-items: stretch;
  10. width: 100%;
  11. > .form-control,
  12. > .custom-select,
  13. > .custom-file {
  14. position: relative; // For focus state's z-index
  15. flex: 1 1 auto;
  16. // Add width 1% and flex-basis auto to ensure that button will not wrap out
  17. // the column. Applies to IE Edge+ and Firefox. Chrome does not require this.
  18. width: 1%;
  19. margin-bottom: 0;
  20. + .form-control,
  21. + .custom-select,
  22. + .custom-file {
  23. margin-left: -$input-border-width;
  24. }
  25. }
  26. // Bring the "active" form control to the top of surrounding elements
  27. > .form-control:focus,
  28. > .custom-select:focus,
  29. > .custom-file .custom-file-input:focus ~ .custom-file-label {
  30. z-index: 3;
  31. }
  32. // Bring the custom file input above the label
  33. > .custom-file .custom-file-input:focus {
  34. z-index: 4;
  35. }
  36. > .form-control,
  37. > .custom-select {
  38. &:not(:last-child) { @include border-right-radius(0); }
  39. &:not(:first-child) { @include border-left-radius(0); }
  40. }
  41. // Custom file inputs have more complex markup, thus requiring different
  42. // border-radius overrides.
  43. > .custom-file {
  44. display: flex;
  45. align-items: center;
  46. &:not(:last-child) .custom-file-label,
  47. &:not(:last-child) .custom-file-label::after { @include border-right-radius(0); }
  48. &:not(:first-child) .custom-file-label { @include border-left-radius(0); }
  49. }
  50. }
  51. // Prepend and append
  52. //
  53. // While it requires one extra layer of HTML for each, dedicated prepend and
  54. // append elements allow us to 1) be less clever, 2) simplify our selectors, and
  55. // 3) support HTML5 form validation.
  56. .input-group-prepend,
  57. .input-group-append {
  58. display: flex;
  59. // Ensure buttons are always above inputs for more visually pleasing borders.
  60. // This isn't needed for `.input-group-text` since it shares the same border-color
  61. // as our inputs.
  62. .btn {
  63. position: relative;
  64. z-index: 2;
  65. }
  66. .btn + .btn,
  67. .btn + .input-group-text,
  68. .input-group-text + .input-group-text,
  69. .input-group-text + .btn {
  70. margin-left: -$input-border-width;
  71. }
  72. }
  73. .input-group-prepend { margin-right: -$input-border-width; }
  74. .input-group-append { margin-left: -$input-border-width; }
  75. // Textual addons
  76. //
  77. // Serves as a catch-all element for any text or radio/checkbox input you wish
  78. // to prepend or append to an input.
  79. .input-group-text {
  80. display: flex;
  81. align-items: center;
  82. padding: $input-padding-y $input-padding-x;
  83. margin-bottom: 0; // Allow use of <label> elements by overriding our default margin-bottom
  84. font-size: $font-size-base; // Match inputs
  85. font-weight: $font-weight-normal;
  86. line-height: $input-line-height;
  87. color: $input-group-addon-color;
  88. text-align: center;
  89. white-space: nowrap;
  90. background-color: $input-group-addon-bg;
  91. border: $input-border-width solid $input-group-addon-border-color;
  92. @include border-radius($input-border-radius);
  93. // Nuke default margins from checkboxes and radios to vertically center within.
  94. input[type="radio"],
  95. input[type="checkbox"] {
  96. margin-top: 0;
  97. }
  98. }
  99. // Sizing
  100. //
  101. // Remix the default form control sizing classes into new ones for easier
  102. // manipulation.
  103. .input-group-lg > .form-control,
  104. .input-group-lg > .input-group-prepend > .input-group-text,
  105. .input-group-lg > .input-group-append > .input-group-text,
  106. .input-group-lg > .input-group-prepend > .btn,
  107. .input-group-lg > .input-group-append > .btn {
  108. height: $input-height-lg;
  109. padding: $input-padding-y-lg $input-padding-x-lg;
  110. font-size: $font-size-lg;
  111. line-height: $input-line-height-lg;
  112. @include border-radius($input-border-radius-lg);
  113. }
  114. .input-group-sm > .form-control,
  115. .input-group-sm > .input-group-prepend > .input-group-text,
  116. .input-group-sm > .input-group-append > .input-group-text,
  117. .input-group-sm > .input-group-prepend > .btn,
  118. .input-group-sm > .input-group-append > .btn {
  119. height: $input-height-sm;
  120. padding: $input-padding-y-sm $input-padding-x-sm;
  121. font-size: $font-size-sm;
  122. line-height: $input-line-height-sm;
  123. @include border-radius($input-border-radius-sm);
  124. }
  125. // Prepend and append rounded corners
  126. //
  127. // These rulesets must come after the sizing ones to properly override sm and lg
  128. // border-radius values when extending. They're more specific than we'd like
  129. // with the `.input-group >` part, but without it, we cannot override the sizing.
  130. .input-group > .input-group-prepend > .btn,
  131. .input-group > .input-group-prepend > .input-group-text,
  132. .input-group > .input-group-append:not(:last-child) > .btn,
  133. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  134. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  135. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  136. @include border-right-radius(0);
  137. }
  138. .input-group > .input-group-append > .btn,
  139. .input-group > .input-group-append > .input-group-text,
  140. .input-group > .input-group-prepend:not(:first-child) > .btn,
  141. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  142. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  143. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  144. @include border-left-radius(0);
  145. }