Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix css spacer bug for compatibility with core css #491

Merged
merged 1 commit into from Aug 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/views/repository_mirrors/index.html.haml
Expand Up @@ -35,18 +35,18 @@
- else
%p{ class: 'nodata' }= l(:label_no_data)

.spacer
.git_hosting_spacer

%div{ style: 'margin: 2px 3px; width: 99%;' }
%div
= zero_clipboard_button_for('mirror_pubkey')
%span{ style: 'margin-left: 10px;' }= l(:label_mirror_help) + ' :'

.spacer
.git_hosting_spacer

%textarea{ id: 'mirror_pubkey', readonly: 'readonly', style: 'height: 100px; width: 99%; font-family: sans-serif;' }= RedmineGitHosting::Config.mirroring_public_key

.spacer
.git_hosting_spacer

:javascript
$(document).ready(function() { initModalBoxes(modals); });
2 changes: 1 addition & 1 deletion assets/stylesheets/application.css
Expand Up @@ -136,7 +136,7 @@ REPOSITORY SETTINGS
/*
MISC
*/
.spacer { display: block; height: 10px; clear: both; }
.git_hosting_spacer { display: block; height: 10px; clear: both; }

td.buttons { width: 20%; }

Expand Down