@dev-tcloud/tcloud-ui 2.3.1 → 2.3.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0"
@@ -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
+ }