File tree Expand file tree Collapse file tree 4 files changed +26
-15
lines changed
plugins/plugin-client-common/web/scss/components Expand file tree Collapse file tree 4 files changed +26
-15
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ export default {
24
24
}
25
25
26
26
export const popupWindowDefaults = {
27
- width : 672 ,
28
- height : 730
27
+ width : 625 ,
28
+ height : 625
29
29
}
Original file line number Diff line number Diff line change
1
+ @import ' ../common/narrow-window' ;
2
+
1
3
.bx--data-table {
2
4
[data-tag = ' badge' ] {
3
5
display : flex ;
59
61
}
60
62
}
61
63
62
- @mixin narrow-window {
63
- @media (max-width : 44rem ) {
64
- @content ;
65
- }
66
- }
67
-
68
64
@mixin badge-only {
69
65
.bx--data-table-container .bx--data-table {
70
66
th [data-key = ' STATUS' ],
Original file line number Diff line number Diff line change
1
+ @import ' ../common/narrow-window' ;
2
+
1
3
body [kui-theme-style ] {
2
4
.bx--select--inline .bx--select-input {
3
5
fill : var (--color-text-01 );
@@ -147,7 +149,15 @@ body .bx--data-table {
147
149
}
148
150
}
149
151
150
- body [kui-theme-style ] .repl.sidecar-visible {
152
+ @mixin full-width-tables {
153
+ .kui--data-table-wrapper {
154
+ /* render tables full-width when sidecar is open https://github.com/IBM/kui/issues/3952 */
155
+ flex : 1 ;
156
+ }
157
+ .kui--paginated-table {
158
+ flex : 1 ;
159
+ }
160
+
151
161
.repl-result {
152
162
width : 100% ;
153
163
@@ -176,10 +186,13 @@ body[kui-theme-style] .repl.sidecar-visible {
176
186
}
177
187
}
178
188
179
- .sidecar-visible .kui--data-table-wrapper {
180
- /* render tables full-width when sidecar is open https://github.com/IBM/kui/issues/3952 */
181
- flex : 1 ;
189
+ body [kui-theme-style ] .repl.sidecar-visible {
190
+ @include full-width-tables ;
191
+ }
192
+ @include narrow-window {
193
+ @include full-width-tables ;
182
194
}
195
+
183
196
.kui--data-table-wrapper {
184
197
overflow-x : auto ;
185
198
}
@@ -188,6 +201,3 @@ body[kui-theme-style] .repl.sidecar-visible {
188
201
display : flex ;
189
202
flex-direction : column ;
190
203
}
191
- .sidecar-visible .kui--paginated-table {
192
- flex : 1 ;
193
- }
Original file line number Diff line number Diff line change
1
+ @mixin narrow-window {
2
+ @media (max-width : 44rem ) {
3
+ @content ;
4
+ }
5
+ }
You can’t perform that action at this time.
0 commit comments