diff --git a/polygerrit-ui/app/elements/admin/gr-admin-group-list/gr-admin-group-list.html b/polygerrit-ui/app/elements/admin/gr-admin-group-list/gr-admin-group-list.html index 1ad80f5a54..ea08d8943d 100644 --- a/polygerrit-ui/app/elements/admin/gr-admin-group-list/gr-admin-group-list.html +++ b/polygerrit-ui/app/elements/admin/gr-admin-group-list/gr-admin-group-list.html @@ -22,7 +22,7 @@ limitations under the License. - + @@ -64,7 +64,7 @@ limitations under the License. - - + diff --git a/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog.html b/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog.html index 0a490163a5..38730830cb 100644 --- a/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog.html +++ b/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog.html @@ -16,7 +16,7 @@ limitations under the License. --> - + @@ -27,7 +27,7 @@ limitations under the License. width: 30em; } - - + diff --git a/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog_test.html b/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog_test.html index d429d7b4ed..d735acbc12 100644 --- a/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog_test.html +++ b/polygerrit-ui/app/elements/admin/gr-confirm-delete-item-dialog/gr-confirm-delete-item-dialog_test.html @@ -50,7 +50,7 @@ limitations under the License. const confirmHandler = sandbox.stub(); element.addEventListener('confirm', confirmHandler); sandbox.stub(element, '_handleConfirmTap'); - element.$$('gr-confirm-dialog').fire('confirm'); + element.$$('gr-dialog').fire('confirm'); assert.isTrue(confirmHandler.called); assert.isTrue(element._handleConfirmTap.called); }); @@ -59,7 +59,7 @@ limitations under the License. const cancelHandler = sandbox.stub(); element.addEventListener('cancel', cancelHandler); sandbox.stub(element, '_handleCancelTap'); - element.$$('gr-confirm-dialog').fire('cancel'); + element.$$('gr-dialog').fire('cancel'); assert.isTrue(cancelHandler.called); assert.isTrue(element._handleCancelTap.called); }); diff --git a/polygerrit-ui/app/elements/admin/gr-repo-commands/gr-repo-commands.html b/polygerrit-ui/app/elements/admin/gr-repo-commands/gr-repo-commands.html index 510f654d9e..935c967ba8 100644 --- a/polygerrit-ui/app/elements/admin/gr-repo-commands/gr-repo-commands.html +++ b/polygerrit-ui/app/elements/admin/gr-repo-commands/gr-repo-commands.html @@ -23,7 +23,7 @@ limitations under the License. - + @@ -64,7 +64,7 @@ limitations under the License. - - + diff --git a/polygerrit-ui/app/elements/admin/gr-repo-detail-list/gr-repo-detail-list.html b/polygerrit-ui/app/elements/admin/gr-repo-detail-list/gr-repo-detail-list.html index e38dacb33d..fccfa6a0c8 100644 --- a/polygerrit-ui/app/elements/admin/gr-repo-detail-list/gr-repo-detail-list.html +++ b/polygerrit-ui/app/elements/admin/gr-repo-detail-list/gr-repo-detail-list.html @@ -25,6 +25,7 @@ limitations under the License. + @@ -189,7 +190,7 @@ limitations under the License. - - + diff --git a/polygerrit-ui/app/elements/admin/gr-repo-list/gr-repo-list.html b/polygerrit-ui/app/elements/admin/gr-repo-list/gr-repo-list.html index 6c1f8fbd1d..7e1c385043 100644 --- a/polygerrit-ui/app/elements/admin/gr-repo-list/gr-repo-list.html +++ b/polygerrit-ui/app/elements/admin/gr-repo-list/gr-repo-list.html @@ -20,7 +20,7 @@ limitations under the License. - + @@ -74,7 +74,7 @@ limitations under the License. - - + diff --git a/polygerrit-ui/app/elements/change/gr-change-actions/gr-change-actions.html b/polygerrit-ui/app/elements/change/gr-change-actions/gr-change-actions.html index da0d167ae3..6b6e90bf1e 100644 --- a/polygerrit-ui/app/elements/change/gr-change-actions/gr-change-actions.html +++ b/polygerrit-ui/app/elements/change/gr-change-actions/gr-change-actions.html @@ -24,7 +24,7 @@ limitations under the License. - + @@ -210,7 +210,7 @@ limitations under the License. action="[[revisionActions.submit]]" on-cancel="_handleConfirmDialogCancel" on-confirm="_handleSubmitConfirm" hidden> - - - + Do you really want to delete the change? - - + Do you really want to delete the edit? - + diff --git a/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog.html b/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog.html index e42031276b..8803eb3e62 100644 --- a/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog.html +++ b/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog.html @@ -17,7 +17,7 @@ limitations under the License. - + @@ -52,7 +52,7 @@ limitations under the License. } } - @@ -66,7 +66,7 @@ limitations under the License. placeholder="" bind-value="{{message}}"> - + diff --git a/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog_test.html b/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog_test.html index a5c047c8e5..95d53740ec 100644 --- a/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog_test.html +++ b/polygerrit-ui/app/elements/change/gr-confirm-abandon-dialog/gr-confirm-abandon-dialog_test.html @@ -50,7 +50,7 @@ limitations under the License. const confirmHandler = sandbox.stub(); element.addEventListener('confirm', confirmHandler); sandbox.stub(element, '_confirm'); - element.$$('gr-confirm-dialog').fire('confirm'); + element.$$('gr-dialog').fire('confirm'); assert.isTrue(confirmHandler.called); assert.isTrue(element._confirm.called); }); @@ -59,7 +59,7 @@ limitations under the License. const cancelHandler = sandbox.stub(); element.addEventListener('cancel', cancelHandler); sandbox.stub(element, '_handleCancelTap'); - element.$$('gr-confirm-dialog').fire('cancel'); + element.$$('gr-dialog').fire('cancel'); assert.isTrue(cancelHandler.called); assert.isTrue(element._handleCancelTap.called); }); diff --git a/polygerrit-ui/app/elements/change/gr-confirm-cherrypick-dialog/gr-confirm-cherrypick-dialog.html b/polygerrit-ui/app/elements/change/gr-confirm-cherrypick-dialog/gr-confirm-cherrypick-dialog.html index 1590fd9f85..9e0aa8c617 100644 --- a/polygerrit-ui/app/elements/change/gr-confirm-cherrypick-dialog/gr-confirm-cherrypick-dialog.html +++ b/polygerrit-ui/app/elements/change/gr-confirm-cherrypick-dialog/gr-confirm-cherrypick-dialog.html @@ -19,7 +19,7 @@ limitations under the License. - + @@ -59,7 +59,7 @@ limitations under the License. }; } - @@ -85,7 +85,7 @@ limitations under the License. max-rows="15" bind-value="{{message}}"> - + diff --git a/polygerrit-ui/app/elements/change/gr-confirm-move-dialog/gr-confirm-move-dialog.html b/polygerrit-ui/app/elements/change/gr-confirm-move-dialog/gr-confirm-move-dialog.html index 350af90069..621ef0a942 100644 --- a/polygerrit-ui/app/elements/change/gr-confirm-move-dialog/gr-confirm-move-dialog.html +++ b/polygerrit-ui/app/elements/change/gr-confirm-move-dialog/gr-confirm-move-dialog.html @@ -19,7 +19,7 @@ limitations under the License. - + @@ -58,7 +58,7 @@ limitations under the License. color: var(--error-text-color); } - @@ -87,7 +87,7 @@ limitations under the License. max-rows="15" bind-value="{{message}}"> - + diff --git a/polygerrit-ui/app/elements/change/gr-confirm-rebase-dialog/gr-confirm-rebase-dialog.html b/polygerrit-ui/app/elements/change/gr-confirm-rebase-dialog/gr-confirm-rebase-dialog.html index ab4271d7aa..912bbfa6a2 100644 --- a/polygerrit-ui/app/elements/change/gr-confirm-rebase-dialog/gr-confirm-rebase-dialog.html +++ b/polygerrit-ui/app/elements/change/gr-confirm-rebase-dialog/gr-confirm-rebase-dialog.html @@ -17,7 +17,7 @@ limitations under the License. - + @@ -51,7 +51,7 @@ limitations under the License. margin: .5em 0; } - - + diff --git a/polygerrit-ui/app/elements/change/gr-confirm-revert-dialog/gr-confirm-revert-dialog.html b/polygerrit-ui/app/elements/change/gr-confirm-revert-dialog/gr-confirm-revert-dialog.html index 07d9b839e3..9e5f1de4ef 100644 --- a/polygerrit-ui/app/elements/change/gr-confirm-revert-dialog/gr-confirm-revert-dialog.html +++ b/polygerrit-ui/app/elements/change/gr-confirm-revert-dialog/gr-confirm-revert-dialog.html @@ -17,7 +17,7 @@ limitations under the License. - + @@ -47,7 +47,7 @@ limitations under the License. } } - @@ -63,7 +63,7 @@ limitations under the License. max-rows="15" bind-value="{{message}}"> - + diff --git a/polygerrit-ui/app/elements/change/gr-confirm-submit-dialog/gr-confirm-submit-dialog.html b/polygerrit-ui/app/elements/change/gr-confirm-submit-dialog/gr-confirm-submit-dialog.html index 299508b9d4..346bdd0d8c 100644 --- a/polygerrit-ui/app/elements/change/gr-confirm-submit-dialog/gr-confirm-submit-dialog.html +++ b/polygerrit-ui/app/elements/change/gr-confirm-submit-dialog/gr-confirm-submit-dialog.html @@ -18,6 +18,7 @@ limitations under the License. + @@ -37,7 +38,7 @@ limitations under the License. } } - - + diff --git a/polygerrit-ui/app/elements/diff/gr-confirm-delete-comment-dialog/gr-confirm-delete-comment-dialog.html b/polygerrit-ui/app/elements/diff/gr-confirm-delete-comment-dialog/gr-confirm-delete-comment-dialog.html index 22fd2aad57..9decfa9563 100644 --- a/polygerrit-ui/app/elements/diff/gr-confirm-delete-comment-dialog/gr-confirm-delete-comment-dialog.html +++ b/polygerrit-ui/app/elements/diff/gr-confirm-delete-comment-dialog/gr-confirm-delete-comment-dialog.html @@ -17,7 +17,7 @@ limitations under the License. - + @@ -52,7 +52,7 @@ limitations under the License. } } - @@ -66,7 +66,7 @@ limitations under the License. placeholder="" bind-value="{{message}}"> - + diff --git a/polygerrit-ui/app/elements/diff/gr-diff-comment/gr-diff-comment.html b/polygerrit-ui/app/elements/diff/gr-diff-comment/gr-diff-comment.html index f781bbd87d..649e8679f9 100644 --- a/polygerrit-ui/app/elements/diff/gr-diff-comment/gr-diff-comment.html +++ b/polygerrit-ui/app/elements/diff/gr-diff-comment/gr-diff-comment.html @@ -23,7 +23,7 @@ limitations under the License. - + @@ -214,7 +214,7 @@ limitations under the License. .resolve label { color: var(--comment-text-color); } - gr-confirm-dialog .main { + gr-dialog .main { display: flex; flex-direction: column; width: 100%; @@ -366,7 +366,7 @@ limitations under the License. - Are you sure you want to discard this draft comment? - + diff --git a/polygerrit-ui/app/elements/edit/gr-edit-controls/gr-edit-controls.html b/polygerrit-ui/app/elements/edit/gr-edit-controls/gr-edit-controls.html index 61a9e69519..81b3c076c3 100644 --- a/polygerrit-ui/app/elements/edit/gr-edit-controls/gr-edit-controls.html +++ b/polygerrit-ui/app/elements/edit/gr-edit-controls/gr-edit-controls.html @@ -23,7 +23,7 @@ limitations under the License. - + @@ -46,10 +46,10 @@ limitations under the License. margin-left: 1em; text-decoration: none; } - gr-confirm-dialog { + gr-dialog { width: 50em; } - gr-confirm-dialog .main { + gr-dialog .main { width: 100%; } gr-autocomplete { @@ -71,7 +71,7 @@ limitations under the License. width: 100%; } @media screen and (max-width: 50em) { - gr-confirm-dialog { + gr-dialog { width: 100vw; } } @@ -84,7 +84,7 @@ limitations under the License. on-tap="_handleTap">[[action.label]] - - + - + - + + diff --git a/polygerrit-ui/app/elements/shared/gr-confirm-dialog/gr-confirm-dialog.html b/polygerrit-ui/app/elements/shared/gr-dialog/gr-dialog.html similarity index 95% rename from polygerrit-ui/app/elements/shared/gr-confirm-dialog/gr-confirm-dialog.html rename to polygerrit-ui/app/elements/shared/gr-dialog/gr-dialog.html index 92a7d5dd0c..7d56606b76 100644 --- a/polygerrit-ui/app/elements/shared/gr-confirm-dialog/gr-confirm-dialog.html +++ b/polygerrit-ui/app/elements/shared/gr-dialog/gr-dialog.html @@ -19,7 +19,7 @@ limitations under the License. - +