Skip to content

Commit 3b4c7ab

Browse files
author
Dave Conway-Jones
committed
bump for sass level and two small fixes for css
1 parent 24cc696 commit 3b4c7ab

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
### 3.2.1: Maintenance Release
3+
4+
- Fix notification toast class. Issue #776
5+
- Fix z-index of dropdown items. Issue #775
6+
27
### 3.2.0: Milestone Release
38

49
- Fix Cross site scripting for ui_text format input. Issue #772

dist/css/app.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4918,7 +4918,7 @@ md-input-container.md-input-focused:not([md-no-float]) md-select:not([placeholde
49184918
position: fixed;
49194919
top: 0;
49204920
transform: translateY(-1px);
4921-
z-index: 99;
4921+
z-index: 90;
49224922
}
49234923

49244924
.md-select-menu-container:not(.md-clickable) {

dist/dashboard.appcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# Time: Fri Sep 09 2022 10:49:21 GMT+0100 (British Summer Time)
2+
# Time: Wed Oct 05 2022 18:03:56 GMT+0100 (British Summer Time)
33

44
CACHE:
55
i18n.js
@@ -26,4 +26,4 @@ loading.html
2626
NETWORK:
2727
*
2828

29-
# hash: 0d8039fec29b2f46ff5694f84d027076a936f5bd6f9efc0fe4285d0052821e64
29+
# hash: bbd846b483dc9e1eb6cad1d245c8b4ef0450128aee826b1aed403ec8ec166fa6

dist/js/app.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var
1919
gmanifest = require('gulp-manifest3'),
2020
rename = require('gulp-rename'),
2121
replace = require('gulp-replace'),
22-
sass = require('gulp-sass'),
22+
sass = require('gulp-sass')(require('node-sass')),
2323
uglify = require('gulp-uglify'),
2424
gutil = require('gulp-util'),
2525
path = require('path'),

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-dashboard",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "A set of dashboard nodes for Node-RED",
55
"keywords": [
66
"node-red"
@@ -87,6 +87,7 @@
8787
"dependencies": {
8888
"compression": "^1.7.4",
8989
"gridstack": "^0.6.4",
90+
"node-sass": "~7.0.3",
9091
"serve-static": "^1.15.0",
9192
"socket.io": "^4.5.2"
9293
},
@@ -123,7 +124,7 @@
123124
"gulp-manifest3": "^0.1.2",
124125
"gulp-rename": "^1.4.0",
125126
"gulp-replace": "^1.1.3",
126-
"gulp-sass": "^4.1.1",
127+
"gulp-sass": "^5.1.0",
127128
"gulp-uglify": "~3.0.2",
128129
"gulp-util": "^3.0.8",
129130
"jquery": "~3.6.1",
@@ -132,6 +133,7 @@
132133
"less": "^3.13.1",
133134
"material-design-icons-iconfont": "^6.7.0",
134135
"moment": "~2.29.4",
136+
"node-sass": "^7.0.3",
135137
"sprintf-js": "^1.1.2",
136138
"streamqueue": "~1.1.2",
137139
"svg-morpheus": "^0.3.0",

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ app.controller('MainController', ['$mdSidenav', '$window', 'UiEvents', '$locatio
627627
.ariaLabel(msg.ok)
628628
.ok(msg.ok)
629629
}
630-
confirm._options.template = '<md-dialog md-theme="{{ dialog.theme || dialog.defaultTheme }}" aria-label="{{ dialog.ariaLabel }}" >' +
630+
confirm._options.template = '<md-dialog md-theme="{{ dialog.theme || dialog.defaultTheme }}" aria-label="{{ dialog.ariaLabel }}" class="' + msg.toastClass + ' >' +
631631
'<md-dialog-content class="md-dialog-content" role="document" tabIndex="-1">' +
632632
'<h2 class="md-title">{{ dialog.title }}</h2>' +
633633
'<div ng-if="::dialog.mdHtmlContent" class="md-dialog-content-body"ng-bind-html="::dialog.mdHtmlContent | trusted"></div>' +

0 commit comments

Comments
 (0)