Commit 06e916743ef3359e1eb098c3c50422ac594fe1c4
1 parent
7ac38b7a
Exists in
master
and in
4 other branches
lil css style
Showing
5 changed files
with
17 additions
and
10 deletions
Show diff stats
app/assets/stylesheets/projects.css.scss
app/views/issues/_form.html.haml
| ... | ... | @@ -8,10 +8,7 @@ |
| 8 | 8 | .span-8 |
| 9 | 9 | = f.label :title |
| 10 | 10 | = f.text_area :title, :style => "width:450px; height:100px", :maxlength => 255 |
| 11 | - -#.span-8 | |
| 12 | - -#= f.label :content | |
| 13 | - -#= f.text_area :content, :style => "width:450px; height:130px" | |
| 14 | - .span-8.append-bottom | |
| 11 | + .span-8 | |
| 15 | 12 | = f.label :assignee_id |
| 16 | 13 | = f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { :include_blank => "Select user" }) |
| 17 | 14 | .span-1 | ... | ... |
app/views/notes/_form.html.haml
| ... | ... | @@ -10,13 +10,16 @@ |
| 10 | 10 | |
| 11 | 11 | %div |
| 12 | 12 | = f.label :note |
| 13 | - %cite | |
| 13 | + %cite.cgray markdown supported | |
| 14 | + %br | |
| 14 | 15 | %br |
| 15 | 16 | = f.text_area :note, :size => 255 |
| 16 | - | |
| 17 | + | |
| 17 | 18 | %div.attach_holder |
| 19 | + %br | |
| 18 | 20 | = f.label :attachment |
| 19 | - %cite (less than 10 MB) | |
| 21 | + %cite.cgray (less than 10 MB) | |
| 22 | + %br | |
| 20 | 23 | %br |
| 21 | 24 | = f.file_field :attachment |
| 22 | 25 | ... | ... |
vendor/assets/stylesheets/jquery-ui/jquery-ui.css
| ... | ... | @@ -59,7 +59,7 @@ |
| 59 | 59 | .ui-widget { font-family: "Helvetica Neue",Arial,Helvetica,sans-serif; font-size: 1.1em; } |
| 60 | 60 | .ui-widget .ui-widget { font-size: 1em; } |
| 61 | 61 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } |
| 62 | -.ui-widget-content { border: 1px solid #dddddd; background: #ffffff url(ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } | |
| 62 | +.ui-widget-content { border: 1px solid #474D57; background: #ffffff url(ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } | |
| 63 | 63 | .ui-widget-content a { color: #222222; } |
| 64 | 64 | .ui-widget-header { color: #222222; font-weight: bold; } |
| 65 | 65 | .ui-widget-header a { color: #222222; } |
| ... | ... | @@ -445,8 +445,8 @@ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra pad |
| 445 | 445 | * http://docs.jquery.com/UI/Dialog#theming |
| 446 | 446 | */ |
| 447 | 447 | .ui-dialog { position: absolute; padding: 0; width: 300px; overflow: hidden; } |
| 448 | -.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; background: #F7F7F7; color:#555; } | |
| 449 | -.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0;} | |
| 448 | +.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; background: #474D57; color:#eee; } | |
| 449 | +.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; text-shadow: none;} | |
| 450 | 450 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; background:#eaeaea} |
| 451 | 451 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } |
| 452 | 452 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } | ... | ... |