vendor/assets/stylesheets/selectize.bootstrap3.css in selectize-rails-0.7.0 vs vendor/assets/stylesheets/selectize.bootstrap3.css in selectize-rails-0.7.2
- old
+ new
@@ -1,7 +1,7 @@
/**
- * selectize.bootstrap3.css (v0.7.0) - Bootstrap 3 Theme
+ * selectize.bootstrap3.css (v0.7.2) - Bootstrap 3 Theme
* Copyright (c) 2013 Brian Reavis & contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
* http://www.apache.org/licenses/LICENSE-2.0
@@ -244,11 +244,11 @@
}
.selectize-dropdown {
position: absolute;
z-index: 2;
- margin-top: -1px;
+ margin: -1px 0 0 0;
background: #ffffff;
border: 1px solid #cccccc;
border-top: 0 none;
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
@@ -339,16 +339,22 @@
.selectize-control .selectize-input.disabled {
background-color: #ffffff;
opacity: 0.5;
}
-.selectize-dropdown {
+.selectize-dropdown,
+.selectize-dropdown.form-control {
z-index: 1000;
+ height: auto;
+ padding: 0;
margin: 2px 0 0 0;
+ background: #ffffff;
border: 1px solid #cccccc;
border: 1px solid rgba(0, 0, 0, 0.15);
- border-radius: 4px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.selectize-dropdown .optgroup-header {
@@ -407,6 +413,18 @@
.selectize-control.multi .selectize-input > div {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
+}
+
+.form-control.selectize-control {
+ height: auto;
+ padding: 0;
+ background: none;
+ border: none;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
}
\ No newline at end of file