@coorpacademy/components 11.13.7-alpha.8 → 11.14.0
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/es/molecule/discipline-header/index.d.ts +1 -0
- package/es/molecule/discipline-header/index.d.ts.map +1 -1
- package/es/molecule/discipline-header/index.js +24 -9
- package/es/molecule/discipline-header/index.js.map +1 -1
- package/es/molecule/discipline-header/style.css +33 -7
- package/es/template/common/discipline/index.d.ts.map +1 -1
- package/es/template/common/discipline/index.js +4 -2
- package/es/template/common/discipline/index.js.map +1 -1
- package/lib/molecule/discipline-header/index.d.ts +1 -0
- package/lib/molecule/discipline-header/index.d.ts.map +1 -1
- package/lib/molecule/discipline-header/index.js +25 -9
- package/lib/molecule/discipline-header/index.js.map +1 -1
- package/lib/molecule/discipline-header/style.css +33 -7
- package/lib/template/common/discipline/index.d.ts.map +1 -1
- package/lib/template/common/discipline/index.js +4 -2
- package/lib/template/common/discipline/index.js.map +1 -1
- package/package.json +3 -3
- package/es/atom/form-text-input/index.d.ts +0 -26
- package/es/atom/form-text-input/index.d.ts.map +0 -1
- package/es/atom/form-text-input/index.js +0 -103
- package/es/atom/form-text-input/index.js.map +0 -1
- package/es/atom/form-text-input/prop-types.d.ts +0 -54
- package/es/atom/form-text-input/prop-types.d.ts.map +0 -1
- package/es/atom/form-text-input/prop-types.js +0 -34
- package/es/atom/form-text-input/prop-types.js.map +0 -1
- package/es/atom/form-text-input/style.css +0 -53
- package/lib/atom/form-text-input/index.d.ts +0 -26
- package/lib/atom/form-text-input/index.d.ts.map +0 -1
- package/lib/atom/form-text-input/index.js +0 -121
- package/lib/atom/form-text-input/index.js.map +0 -1
- package/lib/atom/form-text-input/prop-types.d.ts +0 -54
- package/lib/atom/form-text-input/prop-types.d.ts.map +0 -1
- package/lib/atom/form-text-input/prop-types.js +0 -45
- package/lib/atom/form-text-input/prop-types.js.map +0 -1
- package/lib/atom/form-text-input/style.css +0 -53
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
@value colors: "../../variables/colors.css";
|
|
2
|
-
@value dark from colors;
|
|
3
|
-
@value cm_grey_400 from colors;
|
|
4
|
-
@value cm_grey_450 from colors;
|
|
5
|
-
@value white from colors;
|
|
6
|
-
|
|
7
|
-
.wrapper {
|
|
8
|
-
margin: 10px 0;
|
|
9
|
-
position: relative;
|
|
10
|
-
font-family: 'Gilroy';
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.formLabel {
|
|
14
|
-
font-size: 13px;
|
|
15
|
-
text-align: left;
|
|
16
|
-
/* temporal */
|
|
17
|
-
color: dark;
|
|
18
|
-
display: block;
|
|
19
|
-
margin-bottom: 7px;
|
|
20
|
-
width: 100%;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.textInput {
|
|
24
|
-
width: 100%;
|
|
25
|
-
height: 59px;
|
|
26
|
-
background-color: white;
|
|
27
|
-
border: solid 1px cm_grey_450;
|
|
28
|
-
text-align: left;
|
|
29
|
-
margin-bottom: 26px;
|
|
30
|
-
|
|
31
|
-
appearance: none;
|
|
32
|
-
padding: 0 8px 0 15px;
|
|
33
|
-
border-radius: 0;
|
|
34
|
-
|
|
35
|
-
box-sizing: border-box;
|
|
36
|
-
cursor: text;
|
|
37
|
-
|
|
38
|
-
color: inherit;
|
|
39
|
-
font: inherit;
|
|
40
|
-
overflow: visible;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.hintWrapper {
|
|
44
|
-
font-size: 12px;
|
|
45
|
-
margin-top: -20px;
|
|
46
|
-
margin-bottom: 20px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.hint {
|
|
50
|
-
color: cm_grey_400;
|
|
51
|
-
text-align: left;
|
|
52
|
-
font-style: italic;
|
|
53
|
-
}
|