Advertisement
Guest User

Untitled

a guest
May 29th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. .select2-container .select2-choice {
  2. border: 2px solid #dce4ec;
  3. font-family: "Lato", sans-serif;
  4. font-size: 14px;
  5. text-indent: 1px;
  6. -webkit-border-radius: 6px;
  7. -moz-border-radius: 6px;
  8. border-radius: 6px;
  9. -webkit-box-shadow: none;
  10. -moz-box-shadow: none;
  11. box-shadow: none;
  12. }
  13. .select2-container.select2-drop-above .select2-choice {
  14. border-bottom-color: #dce4ec;
  15. -webkit-border-radius:0 0 6px 6px;
  16. -moz-border-radius:0 0 6px 6px;
  17. border-radius:0 0 6px 6px;
  18. }
  19. .select2-drop {
  20. margin-top: -2px;
  21. border: 2px solid #dce4ec;
  22. border-top: 0;
  23. -webkit-border-radius:0 0 6px 6px;
  24. -moz-border-radius:0 0 6px 6px;
  25. border-radius:0 0 6px 6px;
  26. -webkit-box-shadow: none;
  27. -moz-box-shadow: none;
  28. box-shadow: none;
  29. }
  30. .select2-drop.select2-drop-above {
  31. margin-top: 2px;
  32. border-top: 2px solid #dce4ec;
  33. border-bottom: 0;
  34. -webkit-border-radius: 6px 6px 0 0;
  35. -moz-border-radius: 6px 6px 0 0;
  36. border-radius: 6px 6px 0 0;
  37. -webkit-box-shadow: none;
  38. -moz-box-shadow: none;
  39. box-shadow: none;
  40. }
  41. .select2-container .select2-choice div {
  42. border-left: 2px solid #dce4ec;
  43. -webkit-border-radius: 0 4px 4px 0;
  44. -moz-border-radius: 0 4px 4px 0;
  45. border-radius: 0 4px 4px 0;
  46.  
  47. -webkit-background-clip: padding-box;
  48. -moz-background-clip: padding;
  49. background-clip: padding-box;
  50. }
  51. .select2-search input {
  52. height: 30px !important;
  53. border: 2px solid #dce4ec;
  54. }
  55. .select2-container-active .select2-choice,
  56. .select2-container-active .select2-choices {
  57. border: 2px solid #dce4ec;
  58. outline: none;
  59.  
  60. -webkit-box-shadow: none;
  61. -moz-box-shadow: none;
  62. box-shadow: none;
  63. }
  64. .select2-dropdown-open .select2-choice {
  65. -webkit-box-shadow: none;
  66. -moz-box-shadow: none;
  67. box-shadow: none;
  68.  
  69. -webkit-border-bottom-left-radius: 0;
  70. -moz-border-radius-bottomleft: 0;
  71. border-bottom-left-radius: 0;
  72.  
  73. -webkit-border-bottom-right-radius: 0;
  74. -moz-border-radius-bottomright: 0;
  75. border-bottom-right-radius: 0;
  76. }
  77. .select2-dropdown-open .select2-choice div {
  78. background: transparent;
  79. border-left: none;
  80. filter: none;
  81. }
  82. .select2-results .select2-highlighted {
  83. background: #3875d7;
  84. background: #1abc9c;
  85. color: #fff;
  86. -webkit-border-radius: 4px;
  87. -moz-border-radius: 4px;
  88. border-radius: 4px;
  89. }
  90. .select2-container-multi .select2-choices {
  91. height: auto !important;
  92. height: 1%;
  93.  
  94. border: 2px solid #dce4ec;
  95. }
  96. .select2-container-multi.select2-container-active .select2-choices {
  97. border: 2px solid #dce4ec;
  98. -webkit-border-radius: 6px;
  99. -moz-border-radius: 6px;
  100. border-radius: 6px;
  101.  
  102. -webkit-box-shadow: none;
  103. -moz-box-shadow: none;
  104. box-shadow: none;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement