Commit 599519d 1 parent f308eb3 commit 599519d Copy full SHA for 599519d
File tree 4 files changed +28
-24
lines changed
4 files changed +28
-24
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ select
30
30
.opblock-body select
31
31
{
32
32
min-width : 230px ;
33
- @media (max-width : 768px )
33
+ @container (max-width : 768px )
34
34
{
35
35
min-width : 180px ;
36
36
}
37
- @media (max-width : 640px )
37
+ @container (max-width : 640px )
38
38
{
39
39
width : 100% ;
40
40
min-width : 100% ;
@@ -59,7 +59,7 @@ input[type=file]
59
59
{
60
60
line-height : 1 ;
61
61
62
- @media (max-width : 768px ) {
62
+ @container (max-width : 768px ) {
63
63
max-width : 175px ;
64
64
}
65
65
}
Original file line number Diff line number Diff line change
1
+ .swagger-ui {
2
+ container-type : inline-size ;
3
+ }
4
+
5
+
1
6
.wrapper
2
7
{
3
8
width : 100% ;
107
112
font-weight : 400 ;
108
113
}
109
114
110
- @media (max-width : 640px ) {
115
+ @container (max-width : 640px ) {
111
116
small
112
117
{
113
118
flex : 1 ;
305
310
{
306
311
font-size : 14px ;
307
312
font-weight : bold ;
308
- @media (max-width : 768px ) {
313
+ @container (max-width : 768px ) {
309
314
font-size : 12px ;
310
315
}
311
316
326
331
.opblock-summary-path__deprecated
327
332
{
328
333
font-size : 16px ;
329
- @media (max-width : 768px ) {
334
+ @container (max-width : 768px ) {
330
335
font-size : 12px ;
331
336
}
332
337
342
347
343
348
.opblock-summary-path
344
349
{
345
- flex-shrink : 0 ;
350
+ flex-shrink : 1 ;
346
351
}
347
352
348
- @media (max-width : 640px ) {
353
+ @container (max-width : 640px ) {
349
354
.opblock-summary-path
350
355
{
351
- flex-shrink : 1 ;
352
356
max-width : 100% ;
353
357
}
354
358
}
375
379
.opblock-summary-path-description-wrapper
376
380
{
377
381
display : flex ;
382
+ flex-direction : row ;
378
383
align-items : center ;
379
384
flex-wrap : wrap ;
380
385
gap : 0px 10px ;
384
389
width : 100% ;
385
390
}
386
391
387
- @media (max-width : 550px ) {
388
- .opblock-summary-path-description-wrapper
389
- {
390
- flex-direction : column ;
391
- align-items : start ;
392
- }
392
+ @container (max-width : 550px ) {
393
+ .opblock-summary-path-description-wrapper {
394
+ flex-direction : column ;
395
+ align-items : flex-start ;
396
+ }
393
397
}
394
398
395
399
.opblock-summary
837
841
justify-content : flex-end ;
838
842
}
839
843
840
- /*
844
+ /*
841
845
Target Authorize Button in schemes wrapper
842
846
This was added here to fix responsiveness issues with the authorize button
843
847
within the schemes wrapper without affecting other instances of it's usage
844
848
*/
845
- .auth-wrapper
849
+ .auth-wrapper
846
850
{
847
851
flex : none ;
848
852
justify-content : none ;
849
-
853
+
850
854
.authorize
851
855
{
852
856
padding-right : 20px ;
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ $browser-context: 16;
127
127
128
128
@mixin maxHeight ($height )
129
129
{
130
- @media (max-height : $height )
130
+ @container (max-height : $height )
131
131
{
132
132
@content ;
133
133
}
@@ -138,23 +138,23 @@ $browser-context: 16;
138
138
{
139
139
@if $class == tablet
140
140
{
141
- @media (min-width : 768px ) and (max-width : 1024px )
141
+ @container (min-width : 768px ) and (max-width : 1024px )
142
142
{
143
143
@content ;
144
144
}
145
145
}
146
146
147
147
@else if $class == mobile
148
148
{
149
- @media (min-width : 320px ) and (max-width : 736px )
149
+ @container (min-width : 320px ) and (max-width : 736px )
150
150
{
151
151
@content ;
152
152
}
153
153
}
154
154
155
155
@else if $class == desktop
156
156
{
157
- @media (min-width : 1400px )
157
+ @container (min-width : 1400px )
158
158
{
159
159
@content ;
160
160
}
Original file line number Diff line number Diff line change 10
10
flex-wrap : wrap ;
11
11
gap : 10px ;
12
12
}
13
- @media (max-width : 550px ) {
13
+ @container (max-width : 550px ) {
14
14
.topbar-wrapper
15
15
{
16
16
flex-direction : column ;
104
104
@include text_headline ($topbar-download-url-button-font-color );
105
105
}
106
106
}
107
- @media (max-width : 550px ) {
107
+ @container (max-width : 550px ) {
108
108
.download-url-wrapper
109
109
{
110
110
width : 100% ;
You can’t perform that action at this time.
0 commit comments