diff --git a/customize.dist/main.css b/customize.dist/main.css index 403c78568..db300316c 100644 --- a/customize.dist/main.css +++ b/customize.dist/main.css @@ -115,7 +115,8 @@ tr { padding-bottom: 1em; } /* buttons */ -.create { +.create, +.action { border: 2px solid #46E981; border-radius: 10px; background-color: #302B28; @@ -125,7 +126,8 @@ tr { margin-right: 5px; margin-left: 5px; } -.create:hover { +.create:hover, +.action:hover { border: 2px solid #a1f4bf; color: #46E981; } diff --git a/customize.dist/messages.js b/customize.dist/messages.js index 5097739e8..43f883977 100644 --- a/customize.dist/messages.js +++ b/customize.dist/messages.js @@ -17,8 +17,10 @@ define(function () { out.lag = 'Lag'; out.importButton = 'IMPORT'; + out.importButtonTitle = 'Import a document from a local file'; out.exportButton = 'EXPORT'; + out.exportButtonTitle = 'Export this document to a local file'; out.exportPrompt = 'What would you like to name your file?'; out.back = '⇐ Back'; @@ -27,10 +29,12 @@ define(function () { out.changeNamePrompt = 'Change your name: '; out.renameButton = 'RENAME'; + out.renameButtonTitle = 'Change the title under which this document is listed on your home page'; out.renamePrompt = 'How would you like to title this pad?'; out.renameConflict = 'Another pad already has that title'; out.forgetButton = 'FORGET'; + out.forgetButtonTitle = 'remove this document from your home page listings' out.forgetPrompt = 'Clicking OK will remove the URL for this pad from localStorage, are you sure?'; out.disconnectAlert = 'Network connection lost!'; diff --git a/customize.dist/src/cryptpad.less b/customize.dist/src/cryptpad.less index 0b077cd42..983687030 100644 --- a/customize.dist/src/cryptpad.less +++ b/customize.dist/src/cryptpad.less @@ -143,7 +143,7 @@ p, pre, td, a, table, tr { } /* buttons */ -.create { +.create, .action { @thick: 2px; border: @thick solid @cp-green; border-radius: 10px;