您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_dial-out.scss 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * The dialog content element.
  3. */
  4. .dial-out-content {
  5. margin-top: 5px;
  6. /**
  7. * Wrap the contents in flex so items can be aligned on the same line.
  8. */
  9. .form-control {
  10. display: flex;
  11. }
  12. /**
  13. * The style of the flag icon.
  14. */
  15. .dial-out-flag-icon {
  16. position: absolute;
  17. left: 5px;
  18. top: 50%;
  19. transform: translate(0, -50%);
  20. }
  21. /**
  22. * The style of the dial code element.
  23. */
  24. .dial-out-code {
  25. margin-bottom: 0;
  26. padding-left: 25px;
  27. }
  28. /**
  29. * The dial-out dialog error element.
  30. */
  31. .dial-out-error {
  32. color: $errorColor;
  33. }
  34. /**
  35. * The style of the dial input element.
  36. */
  37. .dial-out-input {
  38. display: inline-block;
  39. flex: 1;
  40. margin-left: 5px;
  41. }
  42. /**
  43. * Re-styling the default dropdown inside the dial-out-content.
  44. */
  45. .dropdown {
  46. position: relative;
  47. width: 65px;
  48. }
  49. /**
  50. * Re-styling the default form-control inside the dial-out-content.
  51. */
  52. .form-control {
  53. margin-bottom: 8px;
  54. }
  55. .dropdown {
  56. position: relative;
  57. input {
  58. padding-left: 16px;
  59. &:read-only {
  60. color: inherit;
  61. }
  62. }
  63. }
  64. .dropdown-trigger-icon {
  65. position: absolute;
  66. right: 0;
  67. top: 50%;
  68. transform: translate(0, -50%);
  69. }
  70. }