ros.grant.common 2.0.1376 → 2.0.1377
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.
- package/Shared/Styles/myrtex-lib/input-textarea/input-textarea-disabled-block.less +12 -0
- package/Shared/Styles/myrtex-lib/input-textarea/input-textarea-error.less +29 -0
- package/Shared/Styles/myrtex-lib/input-textarea/input-textarea-sizes.less +31 -0
- package/Shared/Styles/myrtex-lib/input-textarea/input-textarea.less +14 -0
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
.mrx-input-textarea {
|
|
2
|
+
.error-message {
|
|
3
|
+
margin-top: 4px;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-size: 12px;
|
|
6
|
+
line-height: 16px;
|
|
7
|
+
color: var(--Red)
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
&.mrx-input-error {
|
|
11
|
+
input {
|
|
12
|
+
border-color: var(--Red);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.mrx-input-checked-error {
|
|
17
|
+
input {
|
|
18
|
+
border-color: var(--Red);
|
|
19
|
+
background-color: var(--Warning);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.mrx-input-checked-success {
|
|
24
|
+
input {
|
|
25
|
+
background-color: var(--Good);
|
|
26
|
+
border: 1px solid #60A772;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.mrx-input-textarea {
|
|
2
|
+
&.mrx-input-lg {
|
|
3
|
+
textarea {
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-size: 14px;
|
|
6
|
+
line-height: 20px;
|
|
7
|
+
border-radius: 4px;
|
|
8
|
+
padding: 13px 16px;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&.mrx-input-md {
|
|
13
|
+
textarea {
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
font-size: 14px;
|
|
16
|
+
line-height: 20px;
|
|
17
|
+
border-radius: 4px;
|
|
18
|
+
padding: 9px 12px;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.mrx-input-sm {
|
|
23
|
+
textarea {
|
|
24
|
+
font-weight: 400;
|
|
25
|
+
font-size: 12px;
|
|
26
|
+
line-height: 16px;
|
|
27
|
+
border-radius: 4px;
|
|
28
|
+
padding: 7px 8px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
.mrx-input-textarea {
|
|
2
|
+
textarea {
|
|
3
|
+
display: block;
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
border: solid 1px var(--Stroke);
|
|
6
|
+
border-radius: 4px;
|
|
7
|
+
color: var(--Main1);
|
|
8
|
+
width: 100%;
|
|
9
|
+
font-family: 'PT Sans',sans-serif;
|
|
10
|
+
transition: all .3s ease-in-out;
|
|
11
|
+
overflow: auto;
|
|
12
|
+
resize: none;
|
|
13
|
+
}
|
|
14
|
+
}
|
package/package.json
CHANGED