Skip to content

Commit

Permalink
colors feel more balanced
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingmachine committed Mar 17, 2012
1 parent 32f1909 commit 34b19d3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/lists.js.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,9 @@ new App.Slice
App.mainList.view.deleteItem()
"del" : ->
App.mainList.view.deleteItem()
"x" : ->
"ctrl+]" : ->
App.mainList.view.indentItem()
"z" : ->
"ctrl+[" : ->
App.mainList.view.outdentItem()

setup: ->
Expand Down
5 changes: 3 additions & 2 deletions app/assets/stylesheets/bootstrap-modification.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body {


.listfill {
background:#555;
background:#999;
}

.alert-message.block-message {
Expand All @@ -18,8 +18,9 @@ body {


.topbar {
color:#999;
color:#666;
a {
color:white;
text-shadow:none;
}
}
1 change: 0 additions & 1 deletion app/views/layouts/application.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
%a.btn.secondary.cancel{:href => "#"}Cancel

%p
anonymous mode •
= link_to "sign up", edit_anonymous_user_registration_path(current_user)
•
= link_to "log in", new_user_session_path
Expand Down
4 changes: 2 additions & 2 deletions app/views/lists/_list.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@
%td <span class="key">ctrl</span> + <span class="key">&#8595;</span>
%td move line down
%tr
%td <span class="key">x</span>
%td <span class="key">ctrl</span> + <span class="key">]</span>
%td indent
%tr
%td <span class="key">z</span>
%td <span class="key">ctrl</span> + <span class="key">[</span>
%td outdent
- if can?(:modify_properties, @list)
#properties-form.page.span14
Expand Down

0 comments on commit 34b19d3

Please sign in to comment.