ros.grant.common 2.0.1147 → 2.0.1150
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.
|
@@ -13,7 +13,7 @@ class HtmlInputInitializer {
|
|
|
13
13
|
|
|
14
14
|
public static init(htmlInput: HTMLElement) {
|
|
15
15
|
($(htmlInput) as any).summernote({
|
|
16
|
-
fontSizes: ['8', '9', '10', '11', '12', '14', '16', '18', '24', '36
|
|
16
|
+
fontSizes: ['8', '9', '10', '11', '12', '14', '16', '18', '24', '36'],
|
|
17
17
|
fontNames: ['PT Sans', 'PT Sans Pro', 'Arial', 'Arial Black', 'Comic Sans MS', 'Courier New',
|
|
18
18
|
'Helvetica Neue', 'Helvetica', 'Impact', 'Lucida Grande',
|
|
19
19
|
'Tahoma', 'Times New Roman', 'Verdana'],
|
|
@@ -51,12 +51,16 @@
|
|
|
51
51
|
right: 0;
|
|
52
52
|
top: 50%;
|
|
53
53
|
transform: translateY(-50%);
|
|
54
|
-
width:
|
|
55
|
-
height:
|
|
54
|
+
width: 47px;
|
|
55
|
+
height: 47px;
|
|
56
|
+
line-height: 42px;
|
|
56
57
|
|
|
57
58
|
@media (max-width: 659px) {
|
|
58
59
|
top: 0;
|
|
59
60
|
left: 0;
|
|
61
|
+
width: 38px;
|
|
62
|
+
height: 38px;
|
|
63
|
+
line-height: 35px;
|
|
60
64
|
transform: none;
|
|
61
65
|
}
|
|
62
66
|
|
package/package.json
CHANGED