Change button appearance in gr-reply-dialog

1. Rename "Send" to "Save".
2. Change "Start Review"/"Send" button to blue.

Screenshot: https://imgur.com/a/No38Cav

Bug: Issue 12105
Change-Id: Ifd0a2efa9e345db0ce8d86f38268ae4e4f8f8012
This commit is contained in:
Ben Rohlfs
2020-02-05 12:21:16 +01:00
parent 51bb9c129e
commit f831341e35
2 changed files with 2 additions and 3 deletions

View File

@@ -299,11 +299,10 @@ limitations under the License.
class="action save"
has-tooltip
title="[[_saveTooltip]]"
on-click="_saveClickHandler">Send</gr-button>
on-click="_saveClickHandler">Save</gr-button>
</template>
<gr-button
id="sendButton"
link
primary
disabled="[[_sendDisabled]]"
class="action send"

View File

@@ -43,7 +43,7 @@
};
const ButtonTooltips = {
SAVE: 'Send but do not send notification or change review state',
SAVE: 'Save but do not send notification or change review state',
START_REVIEW: 'Mark as ready for review and send reply',
SEND: 'Send reply',
};