multi-select.dev.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* line 1, ../scss/multi-select.scss */
  2. .ms-container {
  3. background: transparent url("../img/switch.png") no-repeat 50% 50%;
  4. width: 370px;
  5. }
  6. /* line 6, ../scss/multi-select.scss */
  7. .ms-container:after {
  8. content: ".";
  9. display: block;
  10. height: 0;
  11. line-height: 0;
  12. font-size: 0;
  13. clear: both;
  14. min-height: 0;
  15. visibility: hidden;
  16. }
  17. /* line 17, ../scss/multi-select.scss */
  18. .ms-container .ms-selectable, .ms-container .ms-selection {
  19. background: #fff;
  20. color: #555555;
  21. float: left;
  22. width: 45%;
  23. }
  24. /* line 23, ../scss/multi-select.scss */
  25. .ms-container .ms-selection {
  26. float: right;
  27. }
  28. /* line 27, ../scss/multi-select.scss */
  29. .ms-container .ms-list {
  30. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  31. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  32. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  33. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  34. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  35. -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  36. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  37. transition: border linear 0.2s, box-shadow linear 0.2s;
  38. border: 1px solid #ccc;
  39. -webkit-border-radius: 3px;
  40. -moz-border-radius: 3px;
  41. border-radius: 3px;
  42. position: relative;
  43. height: 200px;
  44. padding: 0;
  45. overflow-y: auto;
  46. }
  47. /* line 46, ../scss/multi-select.scss */
  48. .ms-container .ms-list.ms-focus {
  49. border-color: rgba(82, 168, 236, 0.8);
  50. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  51. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  52. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  53. outline: 0;
  54. outline: thin dotted \9;
  55. }
  56. /* line 55, ../scss/multi-select.scss */
  57. .ms-container ul {
  58. margin: 0;
  59. list-style-type: none;
  60. padding: 0;
  61. }
  62. /* line 61, ../scss/multi-select.scss */
  63. .ms-container .ms-optgroup-container {
  64. width: 100%;
  65. }
  66. /* line 65, ../scss/multi-select.scss */
  67. .ms-container .ms-optgroup-label {
  68. margin: 0;
  69. padding: 5px 0px 0px 5px;
  70. cursor: pointer;
  71. color: #999;
  72. }
  73. /* line 72, ../scss/multi-select.scss */
  74. .ms-container .ms-selectable li.ms-elem-selectable,
  75. .ms-container .ms-selection li.ms-elem-selection {
  76. border-bottom: 1px #eee solid;
  77. padding: 2px 10px;
  78. color: #555;
  79. font-size: 14px;
  80. }
  81. /* line 80, ../scss/multi-select.scss */
  82. .ms-container .ms-selectable li.ms-hover,
  83. .ms-container .ms-selection li.ms-hover {
  84. cursor: pointer;
  85. color: #fff;
  86. text-decoration: none;
  87. background-color: #08c;
  88. }
  89. /* line 88, ../scss/multi-select.scss */
  90. .ms-container .ms-selectable li.disabled,
  91. .ms-container .ms-selection li.disabled {
  92. background-color: #eee;
  93. color: #aaa;
  94. cursor: text;
  95. }
  96. /*# sourceMappingURL=multi-select.dev.css.map */