Merge pull request #297 from jwaterfaucett/fix_291_user_menu_cutoff

[fixes #291] User menu cutoff with short usernames
This commit is contained in:
Piotr Sarnacki 2014-08-15 00:37:28 +02:00
commit 4ef8ffa93a
4 changed files with 16 additions and 5 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@
.localeapp/key .localeapp/key
/assets/scripts/config/locales.js /assets/scripts/config/locales.js
.DS_Store .DS_Store
*.sw[op]
/public/images /public/images
/public/scripts /public/scripts

View File

@ -24,7 +24,7 @@ end
group :development do group :development do
# gem 'debugger' # gem 'debugger'
gem 'foreman' gem 'foreman'
gem 'rerun' gem 'rerun', '~> 0.10.0'
gem 'guard' gem 'guard'
gem 'rb-fsevent', '~> 0.9.1' gem 'rb-fsevent', '~> 0.9.1'
end end

View File

@ -23,6 +23,8 @@ GEM
open4 open4
Platform (0.4.0) Platform (0.4.0)
backports (3.0.3) backports (3.0.3)
celluloid (0.15.2)
timers (~> 1.1.0)
chunky_png (1.2.7) chunky_png (1.2.7)
coderay (1.0.9) coderay (1.0.9)
coffee-script (2.2.0) coffee-script (2.2.0)
@ -37,6 +39,7 @@ GEM
eventmachine (1.0.0) eventmachine (1.0.0)
execjs (1.4.0) execjs (1.4.0)
multi_json (~> 1.0) multi_json (~> 1.0)
ffi (1.9.3)
foreman (0.61.0) foreman (0.61.0)
thor (>= 0.13.6) thor (>= 0.13.6)
fssm (0.2.10) fssm (0.2.10)
@ -48,7 +51,10 @@ GEM
thor (>= 0.14.6) thor (>= 0.14.6)
json (1.7.7) json (1.7.7)
libv8 (3.16.14.3) libv8 (3.16.14.3)
listen (0.7.3) listen (2.7.9)
celluloid (>= 0.15.2)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
lumberjack (1.0.2) lumberjack (1.0.2)
method_source (0.8.1) method_source (0.8.1)
multi_json (1.6.1) multi_json (1.6.1)
@ -70,8 +76,10 @@ GEM
rack (>= 1.0) rack (>= 1.0)
rake (10.0.3) rake (10.0.3)
rb-fsevent (0.9.3) rb-fsevent (0.9.3)
rerun (0.8.0) rb-inotify (0.9.5)
listen ffi (>= 0.5.0)
rerun (0.10.0)
listen (~> 2.7, >= 2.7.3)
rspec (2.13.0) rspec (2.13.0)
rspec-core (~> 2.13.0) rspec-core (~> 2.13.0)
rspec-expectations (~> 2.13.0) rspec-expectations (~> 2.13.0)
@ -96,6 +104,7 @@ GEM
terminal-table (1.4.5) terminal-table (1.4.5)
thor (0.17.0) thor (0.17.0)
tilt (1.3.3) tilt (1.3.3)
timers (1.1.0)
uglifier (1.3.0) uglifier (1.3.0)
execjs (>= 0.3.0) execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2) multi_json (~> 1.0, >= 1.0.2)
@ -119,7 +128,7 @@ DEPENDENCIES
rake-pipeline! rake-pipeline!
rake-pipeline-web-filters! rake-pipeline-web-filters!
rb-fsevent (~> 0.9.1) rb-fsevent (~> 0.9.1)
rerun rerun (~> 0.10.0)
rspec (~> 2.11) rspec (~> 2.11)
sinatra sinatra
sinatra-contrib sinatra-contrib

View File

@ -46,6 +46,7 @@
display: none display: none
position: absolute position: absolute
z-index: 300 z-index: 300
right: 0px
top: 55px top: 55px
width: 100% width: 100%
background-color: $color-bg-dropdown background-color: $color-bg-dropdown