Skip to content

Commit e206fe4

Browse files
committed
Latest build
1 parent 268a4af commit e206fe4

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

dist/textpattern/jquery-ui.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ body.darkmode .information.ui-icon {
444444
* 'White out' (inversed) icons.
445445
*/
446446
.ui-icon-inversed,
447-
.messagepane .ui-icon {
447+
#messagepane .ui-icon {
448448
filter: brightness(5);
449449
}
450450

@@ -1554,7 +1554,6 @@ input[type=button] .ui-icon,
15541554
display: inline-block;
15551555
position: relative;
15561556
box-sizing: border-box;
1557-
height: 2.3076923077em;
15581557
margin: 0;
15591558
padding: 0.3076923077em 0.6153846154em;
15601559
/* 1 */
@@ -2204,6 +2203,7 @@ input[type=button] .ui-icon,
22042203
top: 0;
22052204
left: 0;
22062205
flex-flow: column;
2206+
min-width: 300px;
22072207
max-width: 90vw;
22082208
max-height: 90vh;
22092209
padding: 0.2em;
@@ -2247,7 +2247,9 @@ input[type=button] .ui-icon,
22472247

22482248
.ui-dialog .ui-dialog-content {
22492249
position: relative;
2250+
box-sizing: border-box;
22502251
flex: 1 1 auto;
2252+
min-width: 100%;
22512253
padding: 0.5em 1em;
22522254
overflow: auto;
22532255
border: 0;

scss/modules/jquery-ui/_button.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
display: inline-block;
2727
position: relative;
2828
box-sizing: border-box;
29-
height: 2.307692307692308em; // 30px / 13px
3029
margin: 0;
3130
padding: 0.30769230769231em 0.61538461538462em; // 4px / 13px + 8px / 13px
3231
/* 1 */

scss/modules/jquery-ui/_dialog.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
top: 0;
4343
left: 0;
4444
flex-flow: column;
45+
min-width: 300px;
4546
max-width: 90vw;
4647
max-height: 90vh;
4748
padding: 0.2em;
@@ -87,7 +88,9 @@
8788

8889
.ui-dialog-content {
8990
position: relative;
91+
box-sizing: border-box;
9092
flex: 1 1 auto;
93+
min-width: 100%;
9194
padding: 0.5em 1em;
9295
overflow: auto;
9396
border: 0;

scss/modules/jquery-ui/_icons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ button:not(.ui-button):focus .ui-icon {
189189
*/
190190

191191
.ui-icon-inversed,
192-
.messagepane .ui-icon {
192+
#messagepane .ui-icon {
193193
filter: brightness(5);
194194
}
195195

webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
55
const StyleLintPlugin = require('stylelint-webpack-plugin');
66

77
module.exports = {
8+
mode: 'production',
89
entry: {
910
'jquery-ui.css': './scss/jquery-ui.scss'
1011
},

0 commit comments

Comments
 (0)