@dev-tcloud/tcloud-ui 0.0.87 → 0.0.89
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/esm2020/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component.mjs +3 -3
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +2 -2
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +2 -2
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/tcloud/custom/layout.scss +0 -76
- package/scss/tcloud/custom/tcloud-prime.scss +4619 -0
- package/scss/tcloud/custom/tcloud-standard.scss +119 -0
- package/scss/tcloud/custom/text.scss +21 -21
- package/scss/tcloud/styles.scss +4 -1
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
@import './colors.scss';
|
|
2
|
+
|
|
3
|
+
// ===============================
|
|
4
|
+
// T-Cloud Styles
|
|
5
|
+
// ===============================
|
|
6
|
+
|
|
7
|
+
body {
|
|
8
|
+
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
9
|
+
background: #484440;
|
|
10
|
+
font-size: 13px;
|
|
11
|
+
color: #676a6c;
|
|
12
|
+
overflow-x: hidden;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
html,
|
|
16
|
+
body {
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
// ---------------------------------------------
|
|
22
|
+
// Card
|
|
23
|
+
// ---------------------------------------------
|
|
24
|
+
|
|
25
|
+
.card {
|
|
26
|
+
background: #fff;
|
|
27
|
+
color: $tc-gray-500;
|
|
28
|
+
border-radius: 10px;
|
|
29
|
+
padding: 20px;
|
|
30
|
+
border: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.card-container {
|
|
34
|
+
background: $tc-white;
|
|
35
|
+
border-radius: 20px;
|
|
36
|
+
padding: 20px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.card-title {
|
|
40
|
+
color: $tc-primary;
|
|
41
|
+
text-transform: uppercase;
|
|
42
|
+
font-size: 16px;
|
|
43
|
+
margin-top: 0;
|
|
44
|
+
font-weight: normal;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.card.shadow {
|
|
48
|
+
box-shadow: 2px 3px 20px rgba($tc-black, .1)!important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.card.card-shadow {
|
|
52
|
+
box-shadow: 2px 3px 20px rgba($tc-black, .1);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.card.margin-top {
|
|
56
|
+
margin-top: 20px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.card-shadow {
|
|
60
|
+
background: $tc-white;
|
|
61
|
+
border-radius: 20px;
|
|
62
|
+
box-shadow: 2px 3px 20px rgba($tc-black, .1);
|
|
63
|
+
padding: 20px;
|
|
64
|
+
margin-bottom: 20px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.card-shadow-header {
|
|
68
|
+
display: flex;
|
|
69
|
+
justify-content: space-between;
|
|
70
|
+
flex-flow: column;
|
|
71
|
+
gap: 10px;
|
|
72
|
+
margin-bottom: 15px;
|
|
73
|
+
padding-bottom: 15px;
|
|
74
|
+
border-bottom: 1px solid $tc-gray-200;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.card-shadow-tit {
|
|
78
|
+
font-size: 16px;
|
|
79
|
+
color:$tc-primary;
|
|
80
|
+
text-transform: uppercase;
|
|
81
|
+
margin: 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.card-shadow-subtit {
|
|
85
|
+
font-size: 12px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.card-shadow-content-tit {
|
|
89
|
+
color: $tc-primary;
|
|
90
|
+
margin-bottom: 20px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.quick-filter-wrap {
|
|
94
|
+
margin-bottom: 15px;
|
|
95
|
+
|
|
96
|
+
input {
|
|
97
|
+
margin-left: 5px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.tc-pipeline-report-all {
|
|
102
|
+
|
|
103
|
+
.wrapper-content {
|
|
104
|
+
padding: 10px 0;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.form-group {
|
|
108
|
+
margin: 0 !important;
|
|
109
|
+
padding: 0 0 10px !important;
|
|
110
|
+
border-bottom: none!important;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.trustcenter-container {
|
|
115
|
+
|
|
116
|
+
.trust-center-prime {
|
|
117
|
+
display: none;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
|
|
2
|
-
h1, h2, h3, h4, h5, h6, p {
|
|
3
|
-
|
|
4
|
-
}
|
|
2
|
+
// h1, h2, h3, h4, h5, h6, p {
|
|
3
|
+
// margin: 0;
|
|
4
|
+
// }
|
|
5
5
|
|
|
6
|
-
h2, h3, h4, h5, h6 {
|
|
7
|
-
|
|
8
|
-
}
|
|
6
|
+
// h2, h3, h4, h5, h6 {
|
|
7
|
+
// margin-bottom: 20px;
|
|
8
|
+
// }
|
|
9
9
|
|
|
10
|
-
p,
|
|
11
|
-
label,
|
|
12
|
-
ul,
|
|
13
|
-
dl {
|
|
14
|
-
font-size: 13px;
|
|
15
|
-
}
|
|
10
|
+
// p,
|
|
11
|
+
// label,
|
|
12
|
+
// ul,
|
|
13
|
+
// dl {
|
|
14
|
+
// font-size: 13px;
|
|
15
|
+
// }
|
|
16
16
|
|
|
17
|
-
p,
|
|
18
|
-
ul,
|
|
19
|
-
dl,
|
|
20
|
-
code {
|
|
21
|
-
|
|
22
|
-
}
|
|
17
|
+
// p,
|
|
18
|
+
// ul,
|
|
19
|
+
// dl,
|
|
20
|
+
// code {
|
|
21
|
+
// line-height: 20px;
|
|
22
|
+
// }
|
|
23
23
|
|
|
24
|
-
.text {
|
|
25
|
-
|
|
26
|
-
}
|
|
24
|
+
// .text {
|
|
25
|
+
// margin-bottom: 20px;
|
|
26
|
+
// }
|
|
27
27
|
|
|
28
28
|
.tc-uppercase{
|
|
29
29
|
text-transform: uppercase;
|
package/scss/tcloud/styles.scss
CHANGED