selectize
10 years ago
meta-tag-manager.css
10 years ago
meta-tag-manager.less
10 years ago
meta-tag-manager.min.css
10 years ago
selectize.css
10 years ago
selectize.css
302 lines
| 1 | .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder { |
| 2 | visibility: visible !important; |
| 3 | background: #f2f2f2 !important; |
| 4 | background: rgba(0, 0, 0, 0.06) !important; |
| 5 | border: 0 none !important; |
| 6 | -webkit-box-shadow: inset 0 0 12px 4px #ffffff; |
| 7 | box-shadow: inset 0 0 12px 4px #ffffff; |
| 8 | } |
| 9 | .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after { |
| 10 | content: '!'; |
| 11 | visibility: hidden; |
| 12 | } |
| 13 | .selectize-control.plugin-drag_drop .ui-sortable-helper { |
| 14 | -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); |
| 15 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); |
| 16 | } |
| 17 | .selectize-dropdown-header { |
| 18 | position: relative; |
| 19 | padding: 5px 4px; |
| 20 | border-bottom: 1px solid #d0d0d0; |
| 21 | background: #f8f8f8; |
| 22 | -webkit-border-radius: 3px 3px 0 0; |
| 23 | -moz-border-radius: 3px 3px 0 0; |
| 24 | border-radius: 3px 3px 0 0; |
| 25 | } |
| 26 | .selectize-dropdown-header-close { |
| 27 | position: absolute; |
| 28 | right: 4px; |
| 29 | top: 50%; |
| 30 | color: #303030; |
| 31 | opacity: 0.4; |
| 32 | margin-top: -12px; |
| 33 | line-height: 20px; |
| 34 | font-size: 20px !important; |
| 35 | } |
| 36 | .selectize-dropdown-header-close:hover { |
| 37 | color: #000000; |
| 38 | } |
| 39 | .selectize-dropdown.plugin-optgroup_columns .optgroup { |
| 40 | border-right: 1px solid #f2f2f2; |
| 41 | border-top: 0 none; |
| 42 | float: left; |
| 43 | -webkit-box-sizing: border-box; |
| 44 | -moz-box-sizing: border-box; |
| 45 | box-sizing: border-box; |
| 46 | } |
| 47 | .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child { |
| 48 | border-right: 0 none; |
| 49 | } |
| 50 | .selectize-dropdown.plugin-optgroup_columns .optgroup:before { |
| 51 | display: none; |
| 52 | } |
| 53 | .selectize-dropdown.plugin-optgroup_columns .optgroup-header { |
| 54 | border-top: 0 none; |
| 55 | } |
| 56 | .selectize-control.plugin-remove_button [data-value] { |
| 57 | position: relative; |
| 58 | padding-right: 24px !important; |
| 59 | } |
| 60 | .selectize-control.plugin-remove_button [data-value] .remove { |
| 61 | z-index: 1; |
| 62 | /* fixes ie bug (see #392) */ |
| 63 | position: absolute; |
| 64 | top: 0; |
| 65 | right: 0; |
| 66 | bottom: 0; |
| 67 | width: 17px; |
| 68 | text-align: center; |
| 69 | font-weight: bold; |
| 70 | font-size: 12px; |
| 71 | color: inherit; |
| 72 | text-decoration: none; |
| 73 | vertical-align: middle; |
| 74 | display: inline-block; |
| 75 | padding: 2px 0 0 0; |
| 76 | border-left: 1px solid #d0d0d0; |
| 77 | -webkit-border-radius: 0 2px 2px 0; |
| 78 | -moz-border-radius: 0 2px 2px 0; |
| 79 | border-radius: 0 2px 2px 0; |
| 80 | -webkit-box-sizing: border-box; |
| 81 | -moz-box-sizing: border-box; |
| 82 | box-sizing: border-box; |
| 83 | } |
| 84 | .selectize-control.plugin-remove_button [data-value] .remove:hover { |
| 85 | background: rgba(0, 0, 0, 0.05); |
| 86 | } |
| 87 | .selectize-control.plugin-remove_button [data-value].active .remove { |
| 88 | border-left-color: #cacaca; |
| 89 | } |
| 90 | .selectize-control.plugin-remove_button .disabled [data-value] .remove:hover { |
| 91 | background: none; |
| 92 | } |
| 93 | .selectize-control.plugin-remove_button .disabled [data-value] .remove { |
| 94 | border-left-color: #ffffff; |
| 95 | } |
| 96 | .selectize-control { |
| 97 | position: relative; |
| 98 | } |
| 99 | .selectize-dropdown, |
| 100 | .selectize-input, |
| 101 | .selectize-input input { |
| 102 | color: #303030; |
| 103 | font-family: inherit; |
| 104 | font-size: 13px; |
| 105 | line-height: 18px; |
| 106 | -webkit-font-smoothing: inherit; |
| 107 | } |
| 108 | .selectize-input, |
| 109 | .selectize-control.single .selectize-input.input-active { |
| 110 | background: #ffffff; |
| 111 | cursor: text; |
| 112 | display: inline-block; |
| 113 | } |
| 114 | .selectize-input { |
| 115 | border: 1px solid #d0d0d0; |
| 116 | padding: 4px 4px; |
| 117 | display: inline-block; |
| 118 | width: 100%; |
| 119 | overflow: hidden; |
| 120 | position: relative; |
| 121 | z-index: 1; |
| 122 | -webkit-box-sizing: border-box; |
| 123 | -moz-box-sizing: border-box; |
| 124 | box-sizing: border-box; |
| 125 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); |
| 126 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); |
| 127 | -webkit-border-radius: 3px; |
| 128 | -moz-border-radius: 3px; |
| 129 | border-radius: 3px; |
| 130 | } |
| 131 | .selectize-control.multi .selectize-input.has-items { |
| 132 | padding: 2px 4px -1px; |
| 133 | } |
| 134 | .selectize-input.full { |
| 135 | background-color: #ffffff; |
| 136 | } |
| 137 | .selectize-input.disabled, |
| 138 | .selectize-input.disabled * { |
| 139 | cursor: default !important; |
| 140 | } |
| 141 | .selectize-input.focus { |
| 142 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); |
| 143 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); |
| 144 | } |
| 145 | .selectize-input.dropdown-active { |
| 146 | -webkit-border-radius: 3px 3px 0 0; |
| 147 | -moz-border-radius: 3px 3px 0 0; |
| 148 | border-radius: 3px 3px 0 0; |
| 149 | } |
| 150 | .selectize-input > * { |
| 151 | vertical-align: baseline; |
| 152 | display: -moz-inline-stack; |
| 153 | display: inline-block; |
| 154 | zoom: 1; |
| 155 | *display: inline; |
| 156 | } |
| 157 | .selectize-control.multi .selectize-input > div { |
| 158 | cursor: pointer; |
| 159 | margin: 0 3px 3px 0; |
| 160 | padding: 2px 6px; |
| 161 | background: #f2f2f2; |
| 162 | color: #303030; |
| 163 | border: 0 solid #d0d0d0; |
| 164 | } |
| 165 | .selectize-control.multi .selectize-input > div.active { |
| 166 | background: #e8e8e8; |
| 167 | color: #303030; |
| 168 | border: 0 solid #cacaca; |
| 169 | } |
| 170 | .selectize-control.multi .selectize-input.disabled > div, |
| 171 | .selectize-control.multi .selectize-input.disabled > div.active { |
| 172 | color: #7d7d7d; |
| 173 | background: #ffffff; |
| 174 | border: 0 solid #ffffff; |
| 175 | } |
| 176 | .selectize-input > input { |
| 177 | display: inline-block !important; |
| 178 | padding: 0 !important; |
| 179 | min-height: 0 !important; |
| 180 | max-height: none !important; |
| 181 | max-width: 100% !important; |
| 182 | margin: 0 2px 0 0 !important; |
| 183 | text-indent: 0 !important; |
| 184 | border: 0 none !important; |
| 185 | background: none !important; |
| 186 | line-height: inherit !important; |
| 187 | -webkit-user-select: auto !important; |
| 188 | -webkit-box-shadow: none !important; |
| 189 | box-shadow: none !important; |
| 190 | } |
| 191 | .selectize-input > input::-ms-clear { |
| 192 | display: none; |
| 193 | } |
| 194 | .selectize-input > input:focus { |
| 195 | outline: none !important; |
| 196 | } |
| 197 | .selectize-input::after { |
| 198 | content: ' '; |
| 199 | display: block; |
| 200 | clear: left; |
| 201 | } |
| 202 | .selectize-input.dropdown-active::before { |
| 203 | content: ' '; |
| 204 | display: block; |
| 205 | position: absolute; |
| 206 | background: #f0f0f0; |
| 207 | height: 1px; |
| 208 | bottom: 0; |
| 209 | left: 0; |
| 210 | right: 0; |
| 211 | } |
| 212 | .selectize-dropdown { |
| 213 | position: absolute; |
| 214 | z-index: 10; |
| 215 | border: 1px solid #d0d0d0; |
| 216 | background: #ffffff; |
| 217 | margin: -1px 0 0 0; |
| 218 | border-top: 0 none; |
| 219 | -webkit-box-sizing: border-box; |
| 220 | -moz-box-sizing: border-box; |
| 221 | box-sizing: border-box; |
| 222 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 223 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 224 | -webkit-border-radius: 0 0 3px 3px; |
| 225 | -moz-border-radius: 0 0 3px 3px; |
| 226 | border-radius: 0 0 3px 3px; |
| 227 | } |
| 228 | .selectize-dropdown [data-selectable] { |
| 229 | cursor: pointer; |
| 230 | overflow: hidden; |
| 231 | } |
| 232 | .selectize-dropdown [data-selectable] .highlight { |
| 233 | background: rgba(125, 168, 208, 0.2); |
| 234 | -webkit-border-radius: 1px; |
| 235 | -moz-border-radius: 1px; |
| 236 | border-radius: 1px; |
| 237 | } |
| 238 | .selectize-dropdown [data-selectable], |
| 239 | .selectize-dropdown .optgroup-header { |
| 240 | padding: 5px 4px; |
| 241 | } |
| 242 | .selectize-dropdown .optgroup:first-child .optgroup-header { |
| 243 | border-top: 0 none; |
| 244 | } |
| 245 | .selectize-dropdown .optgroup-header { |
| 246 | color: #303030; |
| 247 | background: #ffffff; |
| 248 | cursor: default; |
| 249 | } |
| 250 | .selectize-dropdown .active { |
| 251 | background-color: #f5fafd; |
| 252 | color: #495c68; |
| 253 | } |
| 254 | .selectize-dropdown .active.create { |
| 255 | color: #495c68; |
| 256 | } |
| 257 | .selectize-dropdown .create { |
| 258 | color: rgba(48, 48, 48, 0.5); |
| 259 | } |
| 260 | .selectize-dropdown-content { |
| 261 | overflow-y: auto; |
| 262 | overflow-x: hidden; |
| 263 | max-height: 200px; |
| 264 | } |
| 265 | .selectize-control.single .selectize-input, |
| 266 | .selectize-control.single .selectize-input input { |
| 267 | cursor: pointer; |
| 268 | } |
| 269 | .selectize-control.single .selectize-input.input-active, |
| 270 | .selectize-control.single .selectize-input.input-active input { |
| 271 | cursor: text; |
| 272 | } |
| 273 | .selectize-control.single .selectize-input:after { |
| 274 | content: ' '; |
| 275 | display: block; |
| 276 | position: absolute; |
| 277 | top: 50%; |
| 278 | right: 15px; |
| 279 | margin-top: -3px; |
| 280 | width: 0; |
| 281 | height: 0; |
| 282 | border-style: solid; |
| 283 | border-width: 5px 5px 0 5px; |
| 284 | border-color: #808080 transparent transparent transparent; |
| 285 | } |
| 286 | .selectize-control.single .selectize-input.dropdown-active:after { |
| 287 | margin-top: -4px; |
| 288 | border-width: 0 5px 5px 5px; |
| 289 | border-color: transparent transparent #808080 transparent; |
| 290 | } |
| 291 | .selectize-control.rtl.single .selectize-input:after { |
| 292 | left: 15px; |
| 293 | right: auto; |
| 294 | } |
| 295 | .selectize-control.rtl .selectize-input > input { |
| 296 | margin: 0 4px 0 -2px !important; |
| 297 | } |
| 298 | .selectize-control .selectize-input.disabled { |
| 299 | opacity: 0.5; |
| 300 | background-color: #fafafa; |
| 301 | } |
| 302 |