flowcloudai-ui 0.1.10 → 0.1.12
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/dist/index.css +6 -3
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1930,7 +1930,7 @@
|
|
|
1930
1930
|
border-radius: var(--tab-item-radius-tl) var(--tab-item-radius-tr) var(--tab-item-radius-br) var(--tab-item-radius-bl);
|
|
1931
1931
|
overflow: hidden;
|
|
1932
1932
|
}
|
|
1933
|
-
.fc-tab-bar__tab:hover:not(.fc-tab-bar__tab--disabled):not(.fc-tab-bar__tab--dragging) {
|
|
1933
|
+
.fc-tab-bar__tab:hover:not(.fc-tab-bar__tab--disabled):not(.fc-tab-bar__tab--dragging):not(.fc-tab-bar__tab--active) {
|
|
1934
1934
|
color: var(--tab-hover-color);
|
|
1935
1935
|
background-color: var(--tab-hover-bg);
|
|
1936
1936
|
}
|
|
@@ -1938,6 +1938,9 @@
|
|
|
1938
1938
|
color: var(--tab-active-color);
|
|
1939
1939
|
background-color: var(--tab-active-bg);
|
|
1940
1940
|
}
|
|
1941
|
+
.fc-tab-bar__tab--active:hover {
|
|
1942
|
+
color: var(--tab-active-color);
|
|
1943
|
+
}
|
|
1941
1944
|
.fc-tab-bar__tab--disabled {
|
|
1942
1945
|
color: var(--fc-color-text-disabled);
|
|
1943
1946
|
cursor: not-allowed;
|
|
@@ -2079,7 +2082,7 @@
|
|
|
2079
2082
|
cursor: pointer;
|
|
2080
2083
|
transition: all var(--fc-transition, 150ms ease);
|
|
2081
2084
|
border-radius: var(--fc-radius-sm, 2px);
|
|
2082
|
-
background-color: var(--
|
|
2085
|
+
background-color: var(--fc-color-bg-secondary);
|
|
2083
2086
|
}
|
|
2084
2087
|
.fc-tab-bar__add-btn:hover {
|
|
2085
2088
|
color: var(--fc-color-primary);
|
|
@@ -2094,7 +2097,7 @@
|
|
|
2094
2097
|
[data-theme=dark] .fc-tab-bar__tab--active {
|
|
2095
2098
|
background-color: var(--tab-active-bg);
|
|
2096
2099
|
}
|
|
2097
|
-
[data-theme=dark] .fc-tab-bar__tab:hover:not(.fc-tab-bar__tab--disabled) {
|
|
2100
|
+
[data-theme=dark] .fc-tab-bar__tab:hover:not(.fc-tab-bar__tab--disabled):not(.fc-tab-bar__tab--active) {
|
|
2098
2101
|
background-color: var(--tab-hover-bg);
|
|
2099
2102
|
}
|
|
2100
2103
|
[data-theme=dark] .fc-tab-bar--floating .fc-tab-bar__tab--active {
|