ros.grant.common 2.0.1393 → 2.0.1395
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -593,7 +593,7 @@ var dialog = renderer.create('<div class="note-modal" aria-hidden="false" tabind
|
|
|
593
593
|
' <div class="note-modal-content">',
|
|
594
594
|
(options.title
|
|
595
595
|
? ' <div class="note-modal-header">' +
|
|
596
|
-
' <button type="button" class="close mrx-icon icon-font-24 icon-close" aria-label="Close" aria-hidden="true"
|
|
596
|
+
' <button type="button" class="close mrx-icon icon-font-24 icon-close" aria-label="Close" aria-hidden="true"></button>' +
|
|
597
597
|
' <h4 class="note-modal-title">' + options.title + '</h4>' +
|
|
598
598
|
' </div>' : ''),
|
|
599
599
|
' <div class="note-modal-body">' + options.body + '</div>',
|
|
@@ -6639,8 +6639,8 @@ var ImageDialog = /** @class */ (function () {
|
|
|
6639
6639
|
' type="file" name="files" accept="image/*" multiple="multiple" />',
|
|
6640
6640
|
imageLimitation,
|
|
6641
6641
|
'</div>',
|
|
6642
|
-
'<div class="
|
|
6643
|
-
'<label
|
|
6642
|
+
'<div class="inputbox">',
|
|
6643
|
+
'<label>' + this.lang.image.url + '</label>',
|
|
6644
6644
|
'<input class="note-image-url form-control note-form-control note-input ',
|
|
6645
6645
|
' col-md-12" type="text" />',
|
|
6646
6646
|
'</div>'
|
|
@@ -6850,7 +6850,7 @@ var VideoDialog = /** @class */ (function () {
|
|
|
6850
6850
|
VideoDialog.prototype.initialize = function () {
|
|
6851
6851
|
var $container = this.options.dialogsInBody ? this.$body : this.$editor;
|
|
6852
6852
|
var body = [
|
|
6853
|
-
'<div class="
|
|
6853
|
+
'<div class="inputbox">',
|
|
6854
6854
|
"<label class=\"note-form-label\">" + this.lang.video.url + " <small class=\"text-muted\">" + this.lang.video.providers + "</small></label>",
|
|
6855
6855
|
'<input class="note-video-url form-control note-form-control note-input" type="text" />',
|
|
6856
6856
|
'</div>'
|
|
@@ -1446,6 +1446,7 @@
|
|
|
1446
1446
|
outline: none;
|
|
1447
1447
|
padding: 0;
|
|
1448
1448
|
margin: 0;
|
|
1449
|
+
background: transparent;
|
|
1449
1450
|
}
|
|
1450
1451
|
}
|
|
1451
1452
|
|
|
@@ -1470,10 +1471,6 @@
|
|
|
1470
1471
|
text-decoration: underline
|
|
1471
1472
|
}
|
|
1472
1473
|
|
|
1473
|
-
.note-modal-footer .note-btn {
|
|
1474
|
-
float: right
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
1474
|
.note-modal-title {
|
|
1478
1475
|
margin: 0;
|
|
1479
1476
|
font-size: 26px;
|
package/package.json
CHANGED