atlas_assets 0.4.7 → 0.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +1 -1
- data/docs/_posts/2013-05-22-boxes.md +1 -1
- data/docs/ignore/atlas_assets.css +8 -2
- data/lib/assets/javascripts/views/dropdown_view.coffee +1 -1
- data/lib/assets/stylesheets/atlas_assets/_boxes.scss +8 -0
- data/lib/assets/stylesheets/atlas_assets/_chosen.scss +0 -1
- data/lib/atlas_assets/version.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
|
@@ -104,7 +104,7 @@ It also works for gray lists.
|
|
|
104
104
|
|
|
105
105
|
<div class="box">
|
|
106
106
|
<div class="box-top">
|
|
107
|
-
|
|
107
|
+
<h3>My Heading</h3> <input type="text" placeholder="search" />
|
|
108
108
|
</div>
|
|
109
109
|
<ul class="list list-gray">
|
|
110
110
|
<li class="list-item list-padding">Item 1</li>
|
|
@@ -7632,6 +7632,13 @@ _________________________________________________________________ */
|
|
|
7632
7632
|
.box .box-top input {
|
|
7633
7633
|
margin: 0; }
|
|
7634
7634
|
|
|
7635
|
+
.box .box-top h3 {
|
|
7636
|
+
display: inline-block;
|
|
7637
|
+
padding: 0;
|
|
7638
|
+
margin: 0;
|
|
7639
|
+
margin-right: 5px;
|
|
7640
|
+
vertical-align: middle; }
|
|
7641
|
+
|
|
7635
7642
|
/* Box Styles
|
|
7636
7643
|
--------------------------------------------------------- */
|
|
7637
7644
|
.box.box-white {
|
|
@@ -8765,8 +8772,7 @@ ____________________________________________________________ */
|
|
|
8765
8772
|
*display: inline;
|
|
8766
8773
|
-webkit-user-select: none;
|
|
8767
8774
|
-moz-user-select: none;
|
|
8768
|
-
user-select: none;
|
|
8769
|
-
min-width: 200px; }
|
|
8775
|
+
user-select: none; }
|
|
8770
8776
|
|
|
8771
8777
|
.chosen-container .chosen-drop {
|
|
8772
8778
|
position: absolute;
|
|
@@ -6,7 +6,7 @@ classes.DropdownView = Backbone.View.extend
|
|
|
6
6
|
initialize: (opts) ->
|
|
7
7
|
if !@collection?
|
|
8
8
|
@collection = new classes.DropdownCollection
|
|
9
|
-
@opts = _.extend({width: "100%", disable_search_threshold:
|
|
9
|
+
@opts = _.extend({width: "100%", disable_search_threshold: 4}, opts)
|
|
10
10
|
@template = JST["dropdown"];
|
|
11
11
|
@listenTo(@collection, 'add', @render)
|
|
12
12
|
@collection.each (model) =>
|
data/lib/atlas_assets/version.rb
CHANGED