Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Fix #4091: Order of OK and Cancel buttons is reversed #4113

Merged
merged 2 commits into from
Jun 6, 2013
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/htmlContent/install-extension-dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1 class="dialog-title">{{INSTALL_EXTENSION_TITLE}}</h1>
</div>
<div class="modal-footer">
<button class="btn left browse-extensions">{{BROWSE_EXTENSIONS}}</button>
<button class="dialog-button btn primary" data-button-id="ok" disabled>{{INSTALL}}</button>
<button class="dialog-button btn" data-button-id="cancel">{{CANCEL}}</button>
<button class="dialog-button btn primary" data-button-id="ok" disabled>{{INSTALL}}</button>
</div>
</div>
3 changes: 3 additions & 0 deletions src/styles/brackets_patterns_override.less
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,9 @@
margin-left: 0;
margin-right: 5px;
}
.modal-footer .btn:not(.left) {
margin-left: 5px;
}

.platform-win {
/* Reverse Save/Cancel button order on Win */
Expand Down