Skip to content

Commit 713d0b8

Browse files
committed
replace all .button(s) with .btn
in order to not have to support buttons with .ui-button AND .button AND .btn classes this simplifies and and makes our codebase more consistent by deprecating the .button class with .btn Change-Id: I4802d785a47b36aa477f302e6ac8c87715db8a62 Reviewed-on: https://gerrit.instructure.com/15194 Tested-by: Jenkins <[email protected]> Reviewed-by: Ryan Shaw <[email protected]>
1 parent 8115668 commit 713d0b8

File tree

220 files changed

+640
-658
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+640
-658
lines changed

app/coffeescripts/behaviors/elementToggler.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# into proper dialog buttons (look at fixDialogButtons to see what it does)
2323
# <div class="button-container">
2424
# <button type="submit">This will Submit the form</button>
25-
# <a class="button dialog_closer">This will cause the dialog to close</a>
25+
# <a class="btn dialog_closer">This will cause the dialog to close</a>
2626
# </div>
2727
# </form>
2828

app/coffeescripts/bundles/registration_confirmation.coffee

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ require [
1313
$.each [$disambiguation_box, $registration_form, $where_to_log_in], (i, $pane) ->
1414
$pane.showIf $pane.is(paneToShow)
1515

16-
$(".button#back").click (event) ->
16+
$(".btn#back").click (event) ->
1717
showPane($disambiguation_box)
1818
event.preventDefault()
1919

20-
$(".button#register").click (event) ->
20+
$(".btn#register").click (event) ->
2121
showPane($registration_form)
2222
event.preventDefault()
2323

24-
$merge_link = $(".button#merge").click (event) ->
24+
$merge_link = $(".btn#merge").click (event) ->
2525
if $merge_link.attr('href') == 'new_user_account'
2626
showPane($registration_form)
2727
event.preventDefault()

app/coffeescripts/calendar/EditApptCalendarEventDialog.coffee

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ define [
2727
buttons: [
2828
{
2929
text: I18n.t 'update', 'Update'
30-
class: "button"
3130
click: @save
3231
}
3332
]

app/coffeescripts/discussions/EntryEditor.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ define [
2222
constructor: (@view) ->
2323
super @view.$('.message:first'), switchViews: true
2424
@cancelButton = @createCancelButton()
25-
@done.addClass 'small-button'
25+
@done.addClass 'btn-small'
2626

2727
##
2828
# Extends EditorToggle::display to save the model's message.

app/coffeescripts/editor/EditorToggle.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ define [
9191
$('<a/>')
9292
.html(@options.doneText)
9393
.attr('href', '#')
94-
.addClass('button edit-html-done edit_html_done')
94+
.addClass('btn edit-html-done edit_html_done')
9595
.attr('title', I18n.t('done.title', 'Click to finish editing the rich text area'))
9696
.click => @display()
9797

app/coffeescripts/jquery/fixDialogButtons.coffee

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ define [
88
$.fn.fixDialogButtons = ->
99
this.each ->
1010
$dialog = $(this)
11-
$buttons = $dialog.find(".button-container:last .button, button[type=submit]")
11+
$buttons = $dialog.find(".button-container:last .btn, button[type=submit]")
1212
if $buttons.length
1313
$dialog.find(".button-container:last, button[type=submit]").hide()
1414
buttons = $.map $buttons.toArray(), (button) ->
@@ -35,5 +35,5 @@ define [
3535
}
3636
# put the primary button(s) on the far right
3737
buttons = _.sortBy buttons, (button) ->
38-
if button.class.match(/btn-primary|button-default/) then 1 else 0
38+
if button.class.match(/btn-primary/) then 1 else 0
3939
$dialog.dialog "option", "buttons", buttons

app/coffeescripts/views/QuickStartBar/PinView.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ define [
1616
@$('.toolbar').removeClass('toolbar')
1717
@$('.box-header').removeClass('box-header')
1818
@$('.box-content').removeClass('box-content').addClass('v-gutter')
19-
@$('.button').addClass('small-button')
19+
@$('.btn').addClass('small-button')
2020
@$('[autoFocus]').removeAttr('autoFocus')
2121

2222
class PinView extends BaseItemView

app/coffeescripts/widget/assignmentRubricDialog.coffee

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ define [
3131
autoOpen: false
3232

3333
$.get @url, (html) ->
34-
# weird hackery because the server returns a <div id="rubrics" style="display:none">
34+
# weird hackery because the server returns a <div id="rubrics" style="display:none">
3535
# as it's root node, so we need to show it before we inject it
3636
assignmentRubricDialog.$dialog.html $(html).show()
3737

3838
# if there is not already a rubric, we want to click the "add rubric" button for them,
3939
# since that is the point of why they clicked the link.
4040
if assignmentRubricDialog.noRubricExists
4141
$.subscribe 'edit_rubric/initted', ->
42-
assignmentRubricDialog.$dialog.find('.button.add_rubric_link').click()
42+
assignmentRubricDialog.$dialog.find('.btn.add_rubric_link').click()
4343

4444
openDialog: ->
4545
@initDialog() unless @dialogInited

app/helpers/application_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def show_user_create_course_button(user)
452452
#
453453
# Returns an HTML string.
454454
def sidebar_button(url, label, img = nil)
455-
link_to(url, :class => 'button button-sidebar-wide') do
455+
link_to(url, :class => 'btn button-sidebar-wide') do
456456
img ? image_tag(img) + label : label
457457
end
458458
end

app/stylesheets/gradebook2.sass

-5
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,6 @@ $cell_height: 33px
126126
+opacity(1)
127127

128128

129-
130-
#sort_rows_dialog
131-
.button
132-
margin-bottom: 5px
133-
134129
.odd .slick-cell
135130
background-color: #f5f6f7
136131
.even .slick-cell

app/stylesheets/helpDialog.sass

-8
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,6 @@
6868
select
6969
font-size: 15px
7070

71-
.button-container
72-
padding: 10px 6px 0
73-
margin: 20px -10px 0
74-
border-top: 1px solid #aaa
75-
overflow: auto
76-
.button
77-
float: right
78-
7971
.ui-state-error, .ui-state-highlight
8072
border-radius: 4px !important
8173
padding: 10px 10px 10px 35px

app/stylesheets/jqueryui/_jquery.ui.datepicker.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
text-align: center;
6868

6969
input { padding: 2px; }
70-
.button { margin-top: -3px; }
70+
.btn{ margin-top: -3px; }
7171
}
7272
.ui-datepicker-header {
7373
@extend .ui-dialog-titlebar;

app/stylesheets/login.sass

+5-6
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,17 @@ body.modal
2828
ul
2929
list-style-type: none
3030

31-
.button
31+
.btn
3232
float: right
3333
padding: 10px 36px
34-
font-size: 1.1em
3534
margin: 2px 7px 0 0
36-
border-radius: 7px
35+
font-size: 15px
3736

3837
.button_box
3938
text-align: right
4039
margin-right: 7px
4140
width: 100%
42-
.button
41+
.btn
4342
float: none
4443

4544
#modal-box
@@ -86,7 +85,7 @@ body.modal
8685
color: #64b9f9 !important
8786
&:hover
8887
text-decoration: underline
89-
88+
9089
input.text
9190
background: url(/images/login-input-bg.png) no-repeat
9291
border: 0 none
@@ -123,7 +122,7 @@ body.modal
123122
#forgot_password_form
124123
margin: 0 auto
125124
width: 455px
126-
button.button
125+
.btn
127126
margin: 7px 0
128127
float: none
129128
padding: 10px 24px

app/stylesheets/profile/edit.sass

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
1-
.profile_table td
1+
.profile_table td
22
vertical-align: top
33
padding: 2px 5px
44

5-
.profile_table .edit_data
5+
.profile_table .edit_data
66
display: none
77

8-
.profile_table.editing .edit_data
8+
.profile_table.editing .edit_data
99
display: inline
1010

11-
.profile_table.editing .display_data
11+
.profile_table.editing .display_data
1212
display: none
1313

1414
#user_bio
1515
width: 100%
1616
height: 200px
1717

18-
#registered_services .service
18+
#registered_services .service
1919
font-size: 1.2em
2020
padding: 2px
2121

22-
#registered_services .service .delete_service_link
22+
#registered_services .service .delete_service_link
2323
display: none
2424

25-
#registered_services .service.service-hover
25+
#registered_services .service.service-hover
2626
background-color: #eee
2727
-moz-border-radius: 3px
2828

29-
#registered_services .service.service-hover .delete_service_link
29+
#registered_services .service.service-hover .delete_service_link
3030
display: inline
3131

32-
#unregistered_services .button
32+
#unregistered_services .btn
3333
width: 150px
3434
margin: 3px
3535

36-
#unregistered_services .button img
36+
#unregistered_services .btn img
3737
vertical-align: middle
3838

3939
#unregistered_services .service a
4040
text-align: left
4141

42-
.profile_pic_link img
42+
.profile_pic_link img
4343
max-width: 50px
4444

45-
.profile_pic_list span.img
45+
.profile_pic_list span.img
4646
float: left
4747
width: 50px
4848
overflow: hidden
@@ -51,21 +51,21 @@
5151
padding: 4px
5252
display: inline-block
5353

54-
.profile_pic_list img
54+
.profile_pic_list img
5555
max-height: 75px
5656
min-height: 25px
5757
max-width: 50px
5858
vertical-align: middle
5959

60-
.profile_pic_list span.img:hover
60+
.profile_pic_list span.img:hover
6161
padding: 2px
6262
border: 2px solid #888
6363

64-
.profile_pic_list span.img.selected
64+
.profile_pic_list span.img.selected
6565
padding: 2px
6666
border: 2px solid #444
6767

68-
#token_details_dialog table
68+
#token_details_dialog table
6969
border-collapse: collapse
7070
width: 100%
7171
th

app/stylesheets/submissionDetailsDialog.sass

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@
7575
label
7676
display: inline
7777
font-weight: normal
78-
.button
78+
.btn
7979
float: right
8080

app/views/account_authorization_configs/_cas_settings.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
<td colspan="4">
3939
<div class="form-actions">
4040
<span class="auth_form">
41-
<button type="button" class="button cancel_button"><%= t("#buttons.cancel", "Cancel") %></button>
42-
<button type="submit" class="button btn-primary"><%= t(:save_button, "Save Authentication Settings") %></button>
41+
<button type="button" class="btn cancel_button"><%= t("#buttons.cancel", "Cancel") %></button>
42+
<button type="submit" class="btn btn-primary"><%= t(:save_button, "Save Authentication Settings") %></button>
4343
</span>
4444
</div>
4545
</td>

app/views/account_authorization_configs/_ldap_settings.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@
8484

8585
<div class="form-actions">
8686
<span class="auth_form">
87-
<button type="button" class="button cancel_button"><%= t("#buttons.cancel", "Cancel") %></button>
88-
<button type="submit" class="button btn-primary"><%= t(:save_button, "Save LDAP Settings") %></button>
87+
<button type="button" class="btn cancel_button"><%= t("#buttons.cancel", "Cancel") %></button>
88+
<button type="submit" class="btn btn-primary"><%= t(:save_button, "Save LDAP Settings") %></button>
8989
</span>
9090
</div>
9191
<% end %>

app/views/account_authorization_configs/_ldap_settings_test.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ ldap_tests << OpenStruct.new(
9191
</div></td>
9292
</tr>
9393
</table>
94-
<button type="button" class="button submit_button ldap_test_close" style="float:right"><%= t(:test_ldap_dialog_close, "Close") %></button>
94+
<button type="button" class="btn submit_button ldap_test_close" style="float:right"><%= t(:test_ldap_dialog_close, "Close") %></button>
9595
</div>
9696
</div>
9797

app/views/account_authorization_configs/_saml_settings.html.erb

+8-8
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
</div>
4444
<% form_tag(api_v1_account_update_discovery_url_path(@account), :method => :put, :id => 'discovery_url_form', :class => "form-horizontal bootstrap-form discovery_url_form well", :style => hidden) do %>
4545
<input type="text" name="discovery_url" id="discovery_url_input" class="input-xlarge" value="<%= @account.auth_discovery_url %>">
46-
<button type="submit" class="button btn-primary">Submit</button>
47-
<button class="element_toggler button" aria-controls="discovery_url_form">Cancel</button>
46+
<button type="submit" class="btn btn-primary">Submit</button>
47+
<button class="element_toggler btn" aria-controls="discovery_url_form">Cancel</button>
4848
<% end %>
4949
</div>
5050
<% end %>
@@ -214,9 +214,9 @@
214214
<div class="form-actions">
215215
<span class="auth_form">
216216
<% unless config.new_record? %>
217-
<button type="button" class="button cancel_button element_toggler" aria-controls="<%= form_id %>"><%= t("#buttons.cancel", "Cancel") %></button>
217+
<button type="button" class="btn cancel_button element_toggler" aria-controls="<%= form_id %>"><%= t("#buttons.cancel", "Cancel") %></button>
218218
<% end %>
219-
<button type="submit" class="button btn-primary"><%= t(:save_button, "Save Authentication Settings") %></button>
219+
<button type="submit" class="btn btn-primary"><%= t(:save_button, "Save Authentication Settings") %></button>
220220
</span>
221221
</div>
222222
<% end %>
@@ -226,7 +226,7 @@
226226
<% end %>
227227

228228

229-
<button class="element_toggler button"
229+
<button class="element_toggler btn"
230230
aria-controls="saml_config__form"
231231
data-hide-while-target-shown=true>Add New SAML Config</button>
232232

@@ -244,9 +244,9 @@
244244
%>
245245
</p>
246246
<p>
247-
<a href="<%= account_saml_testing_url(@account) %>" id="start_saml_debugging" class="button" style="<%= hidden(!debugging) %>"><%= t('start_debugging', 'Start Debugging') %></a>
248-
<a href="<%= account_saml_testing_url(@account) %>" id="refresh_saml_debugging" class="button" style="<%= hidden(debugging) %>"><%= t('refresh_debugging', 'Refresh') %></a>
249-
<a href="<%= account_saml_testing_stop_url(@account) %>" id="stop_saml_debugging" class="button" style="<%= hidden(debugging) %>"><%= t('stop_debugging', 'Stop Debugging') %></a>
247+
<a href="<%= account_saml_testing_url(@account) %>" id="start_saml_debugging" class="btn" style="<%= hidden(!debugging) %>"><%= t('start_debugging', 'Start Debugging') %></a>
248+
<a href="<%= account_saml_testing_url(@account) %>" id="refresh_saml_debugging" class="btn" style="<%= hidden(debugging) %>"><%= t('refresh_debugging', 'Refresh') %></a>
249+
<a href="<%= account_saml_testing_stop_url(@account) %>" id="stop_saml_debugging" class="btn" style="<%= hidden(debugging) %>"><%= t('stop_debugging', 'Stop Debugging') %></a>
250250
</p>
251251

252252
<div id="saml_debug_info" style="<%= hidden(debugging) %>">

app/views/account_authorization_configs/index.html.erb

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<% content_for :right_side do %>
1414
<div class="rs-margin-lr rs-margin-top">
1515
<% has_auth = @account_configs.any? %>
16-
<a href="#" class="edit_auth_link button button-sidebar-wide" style="<%= hidden if !has_auth || @account.saml_authentication? %>"><%= image_tag "edit.png" %><%= t(:edit_auth_link, "Edit Details")%></a>
17-
<a href="#" class="test_ldap_link button button-sidebar-wide" style="<%= hidden unless @account_configs.map {|c| c.auth_type}.include?("ldap") %>"><%= image_tag "pending_review.png" %><%= t(:test_ldap_link, "Test Authentication")%></a>
18-
<%= link_to image_tag("delete.png") + t(:delete_auth_link, "Remove Authentication"), context_url(@account, :context_remove_all_authorization_configs_url), :confirm => t(:delete_auth_confirmation, "Are you sure? Users may not be able to log in if this is removed."), :method => :delete, :class=>"delete_auth_link button button-sidebar-wide", :style => "#{ hidden unless has_auth}" %>
16+
<a href="#" class="edit_auth_link btn button-sidebar-wide" style="<%= hidden if !has_auth || @account.saml_authentication? %>"><%= image_tag "edit.png" %><%= t(:edit_auth_link, "Edit Details")%></a>
17+
<a href="#" class="test_ldap_link btn button-sidebar-wide" style="<%= hidden unless @account_configs.map {|c| c.auth_type}.include?("ldap") %>"><%= image_tag "pending_review.png" %><%= t(:test_ldap_link, "Test Authentication")%></a>
18+
<%= link_to image_tag("delete.png") + t(:delete_auth_link, "Remove Authentication"), context_url(@account, :context_remove_all_authorization_configs_url), :confirm => t(:delete_auth_confirmation, "Are you sure? Users may not be able to log in if this is removed."), :method => :delete, :class=>"delete_auth_link btn button-sidebar-wide", :style => "#{ hidden unless has_auth}" %>
1919
<div class="add_auth_div" style="<%= hidden if has_auth %>">
2020
<span class="add"><%= t(:add_auth_desc, "Add an identity provider to this account:")%></span><br/>
2121
<%= select("", "", [[:CAS, 'cas'], [:LDAP, 'ldap'], [:SAML, 'saml']],{:include_blank=>t(:choose_auth_type_option, "Choose an authentication service")}, :id => "add_auth_select") %>

0 commit comments

Comments
 (0)