@annalib/anna-core 2.7.2 → 2.7.3
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/package.json
CHANGED
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// scss-lint:disable all
|
|
2
|
+
.animated {
|
|
3
|
+
animation-duration: 1s;
|
|
4
|
+
// animation-fill-mode: both;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.animated.infinite {
|
|
8
|
+
animation-iteration-count: infinite;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.animated.hinge {
|
|
12
|
+
animation-duration: 2s;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@keyframes fadeIn {
|
|
16
|
+
from {
|
|
17
|
+
opacity: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
to {
|
|
21
|
+
opacity: 1;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.fadeIn {
|
|
26
|
+
animation-name: fadeIn;
|
|
27
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.modal-header {
|
|
2
|
+
height: 72px;
|
|
3
|
+
background-color: #3f4961;
|
|
4
|
+
background-position: center center;
|
|
5
|
+
background-size: cover;
|
|
6
|
+
font-weight: 300;
|
|
7
|
+
border-top-left-radius: 5px;
|
|
8
|
+
border-top-right-radius: 5px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.modal-title {
|
|
12
|
+
color: #ffffff;
|
|
13
|
+
font-size: 18px;
|
|
14
|
+
font-weight: 400 !important;
|
|
15
|
+
position: absolute;
|
|
16
|
+
top: 40px;
|
|
17
|
+
text-align: left;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.modal-dialog {
|
|
21
|
+
font-family: Roboto !important;
|
|
22
|
+
top: 100px !important;
|
|
23
|
+
margin: 1.75rem auto;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.modal-content {
|
|
27
|
+
border-radius: 7px;
|
|
28
|
+
width: fit-content;
|
|
29
|
+
min-width: 100%;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.modal-body {
|
|
33
|
+
padding: 24px;
|
|
34
|
+
}
|
|
35
|
+
.fade {
|
|
36
|
+
transition: none !important;
|
|
37
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
|
|
2
|
+
.switchBtn {
|
|
3
|
+
position: relative;
|
|
4
|
+
display: inline-block;
|
|
5
|
+
width: 50px;
|
|
6
|
+
height: 20px;
|
|
7
|
+
font-size: 12px;
|
|
8
|
+
top: 3px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.switchBtn input {
|
|
12
|
+
display: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.slide {
|
|
16
|
+
position: absolute;
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
top: 0;
|
|
19
|
+
left: 0;
|
|
20
|
+
right: 0;
|
|
21
|
+
bottom: 0;
|
|
22
|
+
background-color: #ffffff;
|
|
23
|
+
-webkit-transition: .4s;
|
|
24
|
+
transition: .4s;
|
|
25
|
+
padding: 4px 4px 4px 22px;
|
|
26
|
+
line-height: 1;
|
|
27
|
+
border: solid 1px rgba(0, 0, 0, 0.1);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.slide:before {
|
|
31
|
+
position: absolute;
|
|
32
|
+
content: "";
|
|
33
|
+
width: 18px;
|
|
34
|
+
height: 18px;
|
|
35
|
+
background-color: #ffffff;
|
|
36
|
+
box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 1px 0 rgba(0, 0, 0, 0.05);
|
|
37
|
+
border: solid 0.5px rgba(0, 0, 0, 0.1);
|
|
38
|
+
left: 0px;
|
|
39
|
+
bottom: 0px;
|
|
40
|
+
background-color: white;
|
|
41
|
+
-webkit-transition: .4s;
|
|
42
|
+
transition: .4s;
|
|
43
|
+
color: #999999;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
input:checked + .slide {
|
|
47
|
+
background-color: #44db5e;
|
|
48
|
+
padding-left: 7px;
|
|
49
|
+
color: #fff;
|
|
50
|
+
line-height: 1;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
input:focus + .slide {
|
|
54
|
+
box-shadow: 0 0 1px #01aeed;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
input:checked + .slide:before {
|
|
58
|
+
-webkit-transform: translateX(20px);
|
|
59
|
+
-ms-transform: translateX(20px);
|
|
60
|
+
transform: translateX(20px);
|
|
61
|
+
left: 10px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.slide.round {
|
|
65
|
+
border-radius: 15.5px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.slide.round:before {
|
|
69
|
+
border-radius: 50%;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.has-error {
|
|
73
|
+
transition: all linear 0.5s;
|
|
74
|
+
color: red !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.data-label {
|
|
78
|
+
font-size: 11px;
|
|
79
|
+
color: #666666;
|
|
80
|
+
letter-spacing: 0.2px;
|
|
81
|
+
text-overflow: ellipsis;
|
|
82
|
+
overflow: hidden;
|
|
83
|
+
white-space: nowrap;
|
|
84
|
+
}
|