@dev-tcloud/tcloud-ui 2.3.1 → 2.3.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/esm2022/lib/_modules/tcloud-ui-tab-menu/components/tcloud-ui-tab-head/tcloud-ui-tab-head.component.mjs +3 -3
- package/esm2022/lib/_modules/tcloud-ui-tab-menu/components/tcloud-ui-tab-title/tcloud-ui-tab-title.component.mjs +2 -2
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +4 -4
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/components/custom/tab-menu.scss +41 -2
- package/scss/tcloud/custom/tcloud-prime.scss +0 -46
package/package.json
CHANGED
|
@@ -2,10 +2,49 @@
|
|
|
2
2
|
tcloud-ui-tab-head{
|
|
3
3
|
tcloud-ui-tab-title, tcloud-ui-tab-subtitle {
|
|
4
4
|
flex-grow: 1;
|
|
5
|
-
|
|
5
|
+
|
|
6
6
|
button {
|
|
7
7
|
min-width: 100% !important;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
-
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.tab-subtitle-line-bottom {
|
|
14
|
+
border-radius: 0 !important;
|
|
15
|
+
border-bottom: 1px solid #BCBCBC;
|
|
16
|
+
|
|
17
|
+
.tab-subtitle {
|
|
18
|
+
border-bottom: 4px solid transparent !important;
|
|
19
|
+
margin: 0 !important;
|
|
20
|
+
padding: 16px 32px !important;
|
|
21
|
+
transition: .3s ease-in-out;
|
|
22
|
+
|
|
23
|
+
&:hover {
|
|
24
|
+
:not(.tab-title-active) {
|
|
25
|
+
border-bottom: 4px solid transparent !important;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.tab-subtitle-active {
|
|
31
|
+
border-bottom: 4px solid var(--tc-primary) !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.tab-title{
|
|
35
|
+
border-bottom: 4px solid transparent !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.tab-title-active{
|
|
39
|
+
border-bottom: 4px solid var(--tc-primary) !important;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.tab-title:hover{
|
|
43
|
+
:not(.tab-title-active) {
|
|
44
|
+
background: none !important;
|
|
45
|
+
color: var(--tc-gray-500) !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
border-bottom: 4px solid var(--tc-primary) !important;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -1312,52 +1312,6 @@ body.tc-prime {
|
|
|
1312
1312
|
}
|
|
1313
1313
|
}
|
|
1314
1314
|
|
|
1315
|
-
//==========================================================
|
|
1316
|
-
// Prime T-Cloud UI KIT Components
|
|
1317
|
-
//==========================================================
|
|
1318
|
-
|
|
1319
|
-
//====================================
|
|
1320
|
-
// Tab Menu
|
|
1321
|
-
//====================================
|
|
1322
|
-
|
|
1323
|
-
.tab-title {
|
|
1324
|
-
|
|
1325
|
-
&:hover {
|
|
1326
|
-
background: var(--tc-complemt-2) !important;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
&.tab-title-active {
|
|
1330
|
-
@include prime-bg;
|
|
1331
|
-
}
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
|
-
.area-navigation {
|
|
1335
|
-
|
|
1336
|
-
td {
|
|
1337
|
-
&:first-child,
|
|
1338
|
-
&:last-child {
|
|
1339
|
-
|
|
1340
|
-
button {
|
|
1341
|
-
@include prime-color;
|
|
1342
|
-
}
|
|
1343
|
-
}
|
|
1344
|
-
}
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
.subnav {
|
|
1349
|
-
|
|
1350
|
-
.tc-menu {
|
|
1351
|
-
background: none !important;
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
1315
|
|
|
1362
1316
|
//====================================
|
|
1363
1317
|
// Modal
|