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.

_country-picker.scss 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .cpick {
  2. border: 1px solid #A4B8D1;
  3. color: #fff;
  4. display: flex;
  5. font-size: 15px;
  6. height: 38px;
  7. line-height: 24px;
  8. &-selector {
  9. align-items: center;
  10. background-color: #283447;
  11. border-right: 1px solid #A4B8D1;
  12. cursor: pointer;
  13. display: flex;
  14. padding: 8px 10px;
  15. position: relative;
  16. width: 88px;
  17. }
  18. &-icon {
  19. margin-right: 8px;
  20. position: absolute;
  21. right: 0;
  22. top: 12px;
  23. & > svg {
  24. fill: #fff;
  25. }
  26. }
  27. &-input {
  28. padding: 8px;
  29. background: #1C2025;
  30. border: 0;
  31. margin: 0;
  32. color: #fff;
  33. caret-color: #0376DA;
  34. flex-grow: 1;
  35. }
  36. &-dropdown {
  37. height: 190px;
  38. overflow-y: auto;
  39. width: 343px;
  40. }
  41. &-dropdown-entry {
  42. align-items: center;
  43. cursor: pointer;
  44. display: flex;
  45. height: 40px;
  46. padding: 0 10px;
  47. &:hover {
  48. background-color: #66768b;
  49. }
  50. &-text {
  51. color: #fff;
  52. flex-grow: 1;
  53. font-size: 15px;
  54. line-height: 24px;
  55. overflow: hidden;
  56. text-overflow: ellipsis;
  57. white-space: nowrap;
  58. }
  59. }
  60. }
  61. // Override @Atlaskit/inline-dialog styles
  62. .cpick-container > div > div:nth-child(2) > div > div {
  63. outline: none;
  64. padding: 8px 0 0 0;
  65. }