Skip to content

Commit

Permalink
remove hover above button
Browse files Browse the repository at this point in the history
  • Loading branch information
brownman committed Oct 25, 2012
1 parent 3881681 commit fb91208
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
1 change: 0 additions & 1 deletion app/assets/javascripts/backbone/models/comment.js.coffee
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ class RailsBackboneRelational.Models.Comment extends Backbone.RelationalModel


defaults: defaults:
content: null content: null
done: false


#initialize: () -> #initialize: () ->
#console.log(this) #console.log(this)
Expand Down
1 change: 1 addition & 0 deletions app/assets/javascripts/backbone/models/comment.js.coffee~
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ class RailsBackboneRelational.Models.Comment extends Backbone.RelationalModel


defaults: defaults:
content: null content: null
done: false


#initialize: () -> #initialize: () ->
#console.log(this) #console.log(this)
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


<input class='span12' type='text' value='<%= comment.content %>'></input> <input class='span12' type='text' value='<%= comment.content %>'></input>


<input class="check" type="checkbox" <%= comment.done ? 'checked="checked"' : '' %> />




<div class="btn-group todo-array " > <div class="btn-group todo-array " >
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


<input class='span12' type='text' value='<%= comment.content %>'></input> <input class='span12' type='text' value='<%= comment.content %>'></input>


<input class="check" type="checkbox" <%= done ? 'checked="checked"' : '' %> />




<div class="btn-group todo-array " > <div class="btn-group todo-array " >
Expand All @@ -17,6 +17,7 @@


<a href="/comments#/<%= comment.id %>/destroy" class="destroy">kill</a> <a href="/comments#/<%= comment.id %>/destroy" class="destroy">kill</a>


<input class="check" type="checkbox" <%= comment.done ? 'checked="checked"' : '' %> />


</div> </div>


4 changes: 2 additions & 2 deletions app/assets/stylesheets/bootstrap_and_overrides.css.less
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ border:1px solid #000000;


} }


.test:hover { .test2:hover {


white-space:normal; white-space:normal;


Expand All @@ -116,7 +116,7 @@ font-weight:bold;


white-space:normal; white-space:normal;


border:1px solid #0000ff; border:2px solid #ff0000;
font-stretch:expanded; font-stretch:expanded;
font-weight:bold; font-weight:bold;
/* /*
Expand Down
14 changes: 12 additions & 2 deletions app/assets/stylesheets/bootstrap_and_overrides.css.less~
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -101,17 +101,27 @@ border:1px solid #000000;


} }


.test:hover { .test2:hover {


white-space:normal; white-space:normal;


border:1px solid #0000ff; border:1px solid #0000ff;
font-stretch:expanded; font-stretch:expanded;
font-weight:bold; font-weight:bold;
transition-delay: 11s; /*
*transition-delay: 1s;
*/
} }
.test1{ .test1{


white-space:normal;

border:1px solid #ff0000;
font-stretch:expanded;
font-weight:bold;
/*
*transition-delay: 1s;
*/
} }




0 comments on commit fb91208

Please sign in to comment.