Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

common.less 690B

123456789101112131415161718192021222324252627
  1. .placeholder(@color: @input-placeholder-color) {
  2. // Firefox
  3. &::-moz-placeholder {
  4. color: @color;
  5. opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
  6. }
  7. // Internet Explorer 10+
  8. &:-ms-input-placeholder {
  9. color: @color;
  10. }
  11. // Safari and Chrome
  12. &::-webkit-input-placeholder {
  13. color: @color;
  14. }
  15. }
  16. // for select and input like component's arrow
  17. .inner-arrow() {
  18. position: absolute;
  19. top: 50%;
  20. right: 8px;
  21. line-height: 1;
  22. margin-top: -7px;
  23. font-size: @font-size-base;
  24. color: @subsidiary-color;
  25. transition: all @transition-time @ease-in-out;
  26. }