We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ddabb commit 8c9a0f7Copy full SHA for 8c9a0f7
4 files changed
src/extensionsIntegrated/TabBar/more-options.js
@@ -40,9 +40,9 @@ define(function (require, exports, module) {
40
Strings.CLOSE_ALL_TABS,
41
Strings.CLOSE_UNMODIFIED_TABS,
42
"---",
43
- Strings.RENAME_TAB_FILE,
44
- Strings.DELETE_TAB_FILE,
45
- Strings.SHOW_IN_FILE_TREE,
+ Strings.CMD_FILE_RENAME,
+ Strings.CMD_FILE_DELETE,
+ Strings.CMD_SHOW_IN_TREE,
46
47
Strings.REOPEN_CLOSED_FILE
48
];
@@ -309,13 +309,13 @@ define(function (require, exports, module) {
309
case Strings.CLOSE_UNMODIFIED_TABS:
310
handleCloseUnmodifiedTabs(paneId);
311
break;
312
- case Strings.RENAME_TAB_FILE:
+ case Strings.CMD_FILE_RENAME:
313
handleFileRename(filePath);
314
315
- case Strings.DELETE_TAB_FILE:
+ case Strings.CMD_FILE_DELETE:
316
handleFileDelete(filePath);
317
318
- case Strings.SHOW_IN_FILE_TREE:
+ case Strings.CMD_SHOW_IN_TREE:
319
handleShowInFileTree(filePath);
320
321
case Strings.REOPEN_CLOSED_FILE:
src/nls/root/strings.js
@@ -433,9 +433,6 @@ define({
433
"CLOSE_ALL_TABS": "Close All Tabs",
434
"CLOSE_UNMODIFIED_TABS": "Close Unmodified Tabs",
435
"REOPEN_CLOSED_FILE": "Reopen Closed File",
436
- "RENAME_TAB_FILE": "Rename File",
437
- "DELETE_TAB_FILE": "Delete File",
438
- "SHOW_IN_FILE_TREE": "Show in File Tree",
439
440
// CodeInspection: errors/warnings
441
"ERRORS_NO_FILE": "No File Open",
src/styles/brackets_core_ui_variables.less
@@ -205,6 +205,9 @@
205
@dark-bc-warning-text-low: #333333;
206
@notification-text: #333333;
207
208
+// success
209
+@dark-bc-success-bg: #1e3a1e;
210
+
211
// Text
212
@dark-bc-text: #ccc;
213
@dark-bc-text-alt: #fff;
@@ -275,4 +278,4 @@
275
278
276
279
// CSS Codehint icon
277
280
@css-codehint-icon: #2ea56c;
-@dark-css-codehint-icon: #146a41;
281
+@dark-css-codehint-icon: #146a41;
src/styles/brackets_patterns_override.less
@@ -2286,6 +2286,18 @@ dt,
2286
}
2287
2288
2289
+.alert.alert-success {
2290
+ text-shadow: none;
2291
+ background-color: @successBackground;
2292
+ border: none;
2293
2294
+ .dark & {
2295
+ background: @dark-bc-success-bg;
2296
+ border-radius: 2px;
2297
+ color: @dark-bc-text;
2298
+ }
2299
+}
2300
2301
.alert h4 {
2302
// Specified for the h4 to prevent conflicts of changing @headingsColor
2303
color: @bc-warning-bg;
0 commit comments