@interopio/groups-ui-react 2.6.2 → 2.7.0
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/cjs/useGDWindow.d.ts +2 -0
- package/dist/esm/useGDWindow.d.ts +2 -0
- package/dist/styles/fonts.css +2 -0
- package/dist/styles/groups.css +6 -36
- package/dist/styles/styles.css +679 -0
- package/dist/styles/themes.css +155 -0
- package/dist/styles/vars.css +2 -1
- package/package.json +4 -4
package/dist/styles/groups.css
CHANGED
|
@@ -5,13 +5,7 @@
|
|
|
5
5
|
box-sizing: border-box;
|
|
6
6
|
transition-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
|
|
7
7
|
transition-duration: 240ms;
|
|
8
|
-
transition-property: background-color;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
*::before,
|
|
12
|
-
*::after {
|
|
13
|
-
transition-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
|
|
14
|
-
transition-duration: 240ms;
|
|
8
|
+
transition-property: background-color, color;
|
|
15
9
|
}
|
|
16
10
|
|
|
17
11
|
body {
|
|
@@ -58,8 +52,6 @@ input {
|
|
|
58
52
|
|
|
59
53
|
.t42-internal-caption-bar {
|
|
60
54
|
flex-direction: row;
|
|
61
|
-
align-items: center;
|
|
62
|
-
width: 100%;
|
|
63
55
|
}
|
|
64
56
|
|
|
65
57
|
.t42-react-caption-bar {
|
|
@@ -117,9 +109,7 @@ input {
|
|
|
117
109
|
display: flex;
|
|
118
110
|
flex-grow: 1;
|
|
119
111
|
align-items: center;
|
|
120
|
-
height: 100%;
|
|
121
112
|
min-width: var(--t42-move-area-min-width);
|
|
122
|
-
-webkit-app-region: drag;
|
|
123
113
|
}
|
|
124
114
|
|
|
125
115
|
.t42-buttons-container {
|
|
@@ -206,14 +196,6 @@ input {
|
|
|
206
196
|
color: var(--t42-caption-bar-button-close-hover-text);
|
|
207
197
|
}
|
|
208
198
|
|
|
209
|
-
.t42-standard-button-collapse::before {
|
|
210
|
-
content: "\e918";
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.t42-standard-button-expand::before {
|
|
214
|
-
content: "\e90e";
|
|
215
|
-
}
|
|
216
|
-
|
|
217
199
|
.t42-standard-button-minimize::before {
|
|
218
200
|
content: "\e904";
|
|
219
201
|
}
|
|
@@ -293,10 +275,6 @@ input {
|
|
|
293
275
|
content: "\e902";
|
|
294
276
|
}
|
|
295
277
|
|
|
296
|
-
.t42-group-caption-bar-container {
|
|
297
|
-
display: flex;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
278
|
.t42-group-caption-bar {
|
|
301
279
|
height: auto;
|
|
302
280
|
}
|
|
@@ -574,7 +552,8 @@ input {
|
|
|
574
552
|
height: calc(var(--t42-tab-bar-tab-close-button-size) + var(--t42-tab-bar-tab-close-button-padding) * 2);
|
|
575
553
|
border-radius: 50%;
|
|
576
554
|
background-color: var(--t42-tab-bar-tab-close-button-background);
|
|
577
|
-
transition-
|
|
555
|
+
transition-duration: 80ms;
|
|
556
|
+
transition-property: background-color, fill, color;
|
|
578
557
|
}
|
|
579
558
|
|
|
580
559
|
.t42-tab-close-button-content svg {
|
|
@@ -591,10 +570,6 @@ input {
|
|
|
591
570
|
background-color: var(--t42-tab-bar-tab-close-button-bg-hover);
|
|
592
571
|
}
|
|
593
572
|
|
|
594
|
-
.t42-tab-close-button-content:hover::before {
|
|
595
|
-
color: var(--t42-tab-bar-tab-text-hover);
|
|
596
|
-
}
|
|
597
|
-
|
|
598
573
|
.t42-tab-close-button-content:hover .t42-standard-button-image {
|
|
599
574
|
fill: var(--t42-tab-bar-tab-text-hover);
|
|
600
575
|
}
|
|
@@ -708,7 +683,6 @@ input {
|
|
|
708
683
|
|
|
709
684
|
.t42-sizing-border-group:hover {
|
|
710
685
|
background-color: var(--t42-hover-sizing-border-group-color);
|
|
711
|
-
z-index: 150;
|
|
712
686
|
}
|
|
713
687
|
|
|
714
688
|
.t42-active-sizing-border-group {
|
|
@@ -764,11 +738,6 @@ input {
|
|
|
764
738
|
}
|
|
765
739
|
}
|
|
766
740
|
|
|
767
|
-
.loader-container {
|
|
768
|
-
display: flex;
|
|
769
|
-
flex-grow: 1;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
741
|
.loader-wrapper {
|
|
773
742
|
display: flex;
|
|
774
743
|
flex-direction: column;
|
|
@@ -834,7 +803,8 @@ input {
|
|
|
834
803
|
|
|
835
804
|
@container normal-tabs (max-width: 50px) {
|
|
836
805
|
.t42-tab-channel-selector {
|
|
837
|
-
--t42-tab-bar-tab-channels-
|
|
806
|
+
--t42-tab-bar-tab-channels-height:0;
|
|
807
|
+
--t42-tab-bar-tab-channels-width: 0;
|
|
838
808
|
--t42-tab-bar-tab-channels-margin: 0;
|
|
839
809
|
}
|
|
840
810
|
}
|
|
@@ -857,7 +827,7 @@ input {
|
|
|
857
827
|
}
|
|
858
828
|
|
|
859
829
|
.t42-tabs-overflow .t42-tab {
|
|
860
|
-
min-width: var(--t42-tab-bar-tab-overflowable-min-width);
|
|
830
|
+
min-width: var(--t42-tab-bar-tab-overflowable-min-width);
|
|
861
831
|
}
|
|
862
832
|
|
|
863
833
|
.t42-tabs-overflow .t42-tabs {
|