-
Notifications
You must be signed in to change notification settings - Fork 75
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
Several project view adjustments in CSS #17
Merged
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
06cf548
Several project view adjustments in CSS, adding font-awesome to use t…
akitaonrails e7876a5
Fixing failing specs (specially feature specs for removing the projec…
akitaonrails c7baa1f
move icon styles into proper file
adbatista 4f3ccf3
small refactor in screen.scss
adbatista cd6556d
add autoprefixer
adbatista 6d7df35
user pointer cursor in estimatives
adbatista 9c54ddb
Small CSS Adjustments to save more space between the columns in the p…
akitaonrails 000fa9b
Adding a simple collapsible sidebar
akitaonrails 21e3a5a
Repurposing the simple sidebar to not be the kind that is hidden in t…
akitaonrails bedd725
FIXME for some reason it seems like Backbone.sync actions such as add…
akitaonrails 4e4ee22
Adjusting forms to be inside a grid and have proper margins
akitaonrails b86aa0a
Fixing most of Devise’s templates to fit mobile screens properly
akitaonrails 0c0dac5
Use material icons for all task types
rscardinho da34ec5
Fixing failing specs. Removing the unnecessary ‘.story’ class from th…
akitaonrails 07e2bf6
Adjusting the add icon to the ‘add story’ button
akitaonrails ba1271b
Rewriting the initial column view toggle to reflect on the link states
akitaonrails 9d81939
Use image sprite on estimating points
rscardinho 63c4051
Fix story type icon position on popover
rscardinho 36283b5
Link the ColumnViews to the ProjectView
akitaonrails cabd9a0
Moving the story link to the top of the story card
akitaonrails b9493af
Estimates can’t be zero
akitaonrails e4c7e3c
sorting the requested by and owned by columns in the story form
akitaonrails 416e7c4
Adding icons to the column toggles in the menu
akitaonrails a420bc5
Adjusting the inputs to be smaller in the story view
akitaonrails 18d5fd6
Adding more explanations to the velocity override simulation box
akitaonrails 1c5422b
Removing unnecessary devise links CSS class
akitaonrails File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
<% content_for :title_bar do %> | ||
<h1>Resend confirmation instructions</h1> | ||
<% end %> | ||
<div class="form-wrapper"> | ||
<%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %> | ||
<%= devise_error_messages! %> | ||
<div class="row"> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="form-wrapper"> | ||
<%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %> | ||
<%= devise_error_messages! %> | ||
|
||
<div class="field-wrapper"> | ||
<%= f.label :email %> | ||
<div class="field"><%= f.email_field :email %></div> | ||
</div> | ||
|
||
<div class="actions"><%= f.submit "Resend confirmation instructions" %></div> | ||
<% end %> | ||
<div class="field-wrapper"> | ||
<%= f.label :email %> | ||
<div class="field"><%= f.email_field :email %></div> | ||
</div> | ||
|
||
<%= render :partial => "devise/shared/links" %> | ||
<div class=""><%= f.submit "Resend confirmation instructions" %></div> | ||
<% end %> | ||
</div> | ||
</div> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="devise_links"> | ||
<%= render :partial => "devise/shared/links" %> | ||
</div> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
<% content_for :title_bar do %> | ||
<h1>Change your password</h1> | ||
<% end %> | ||
<div class="form-wrapper"> | ||
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %> | ||
<%= devise_error_messages! %> | ||
<%= f.hidden_field :reset_password_token %> | ||
<div class="row"> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="form-wrapper"> | ||
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %> | ||
<%= devise_error_messages! %> | ||
<%= f.hidden_field :reset_password_token %> | ||
|
||
<div class="field-wrapper"> | ||
<%= f.label :password, "New password" %> | ||
<div class="field"><%= f.password_field :password %></div> | ||
</div> | ||
|
||
<div class="field-wrapper"> | ||
<%= f.label :password_confirmation, "Confirm new password" %> | ||
<div class="field"><%= f.password_field :password_confirmation %></div> | ||
</div> | ||
<div class="field-wrapper"> | ||
<%= f.label :password, "New password" %> | ||
<div class="field"><%= f.password_field :password %></div> | ||
</div> | ||
|
||
<div class="actions"><%= f.submit "Change my password" %></div> | ||
<% end %> | ||
<div class="field-wrapper"> | ||
<%= f.label :password_confirmation, "Confirm new password" %> | ||
<div class="field"><%= f.password_field :password_confirmation %></div> | ||
</div> | ||
|
||
<%= render :partial => "devise/shared/links" %> | ||
<div class="actions"><%= f.submit "Change my password" %></div> | ||
<% end %> | ||
</div> | ||
</div> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="devise_links"> | ||
<%= render :partial => "devise/shared/links" %> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,24 @@ | ||
<% content_for :title_bar do %> | ||
<h1>Forgot your password?</h1> | ||
<% end %> | ||
<div class="form-wrapper"> | ||
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %> | ||
<%= devise_error_messages! %> | ||
<div class="row"> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="form-wrapper"> | ||
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %> | ||
<%= devise_error_messages! %> | ||
|
||
<div class="field-wrapper"> | ||
<%= f.label :email %> | ||
<div class="field"><%= f.email_field :email %></div> | ||
</div> | ||
|
||
<div class="actions"><%= f.submit "Send me reset password instructions" %></div> | ||
<% end %> | ||
<div class="field-wrapper"> | ||
<%= f.label :email %> | ||
<div class="field"><%= f.email_field :email %></div> | ||
</div> | ||
|
||
<%= render :partial => "devise/shared/links" %> | ||
<div class=""><%= f.submit "Send me reset password instructions" %></div> | ||
<% end %> | ||
</div> | ||
</div> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="devise_links"> | ||
<%= render :partial => "devise/shared/links" %> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,34 @@ | ||
<% content_for :title_bar do %> | ||
<h1>Sign in</h1> | ||
<% end %> | ||
<div class="form-wrapper sign-in"> | ||
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %> | ||
<div class="field-wrapper"> | ||
<%= f.label :email, class: 'col-sm-2 control-label' %> | ||
<div class="col-sm-10"><%= f.email_field :email %></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="form-wrapper sign-in"> | ||
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %> | ||
<div class="field-wrapper"> | ||
<%= f.label :email, class: 'col-sm-4 control-label' %> | ||
<div class="col-sm-8"><%= f.email_field :email %></div> | ||
</div> | ||
|
||
<div class="field-wrapper"> | ||
<%= f.label :password, class: 'col-sm-2 control-label' %> | ||
<div class="col-sm-10"><%= f.password_field :password %></div> | ||
</div> | ||
<div class="field-wrapper"> | ||
<%= f.label :password, class: 'col-sm-4 control-label' %> | ||
<div class="col-sm-8"><%= f.password_field :password %></div> | ||
</div> | ||
|
||
|
||
<% if devise_mapping.rememberable? -%> | ||
<div class="checkbox"><%= f.check_box :remember_me %> <%= f.label :remember_me %></div> | ||
<% end -%> | ||
<% if devise_mapping.rememberable? -%> | ||
<div class="checkbox"><%= f.check_box :remember_me %> <%= f.label :remember_me %></div> | ||
<% end -%> | ||
|
||
<div class="actions clearfix"> | ||
<%= f.submit "Sign in", class: 'btn btn-primary pull-right' %> | ||
<div class="actions clearfix"> | ||
<%= f.submit "Sign in", class: 'btn btn-primary pull-right' %> | ||
</div> | ||
<% end %> | ||
</div> | ||
</div> | ||
<div class="col-sm-12 col-md-6"> | ||
<div class="devise_links"> | ||
<%= render :partial => "devise/shared/links" %> | ||
</div> | ||
</div> | ||
<% end %> | ||
<%= render :partial => "devise/shared/links" %> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should use
devise-links
here instead ofdevise_links
to follow the standard of the other class names.