element-sim 1.1.10 → 1.1.11

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.
@@ -1,5 +1,9 @@
1
1
  ## 更新日志
2
2
 
3
+ ### 1.1.11
4
+ *2024-07-08*
5
+ - theme-chalk 修改message-box样式
6
+
3
7
  ### 1.1.10
4
8
  *2024-07-04*
5
9
  - theme-chalk 增加新图标
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "element-sim",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "A Component Library for Vue.js.",
5
5
  "main": "lib/element-sim.common.js",
6
6
  "files": [
@@ -344,17 +344,17 @@ $--alert-icon-large-size: 28px !default;
344
344
  -------------------------- */
345
345
  /// color||Color|0
346
346
  $--messagebox-title-color: $--color-text-primary !default;
347
- $--msgbox-width: 420px !default;
347
+ $--msgbox-width: 480px !default;
348
348
  $--msgbox-border-radius: 4px !default;
349
349
  /// fontSize||Font|1
350
- $--messagebox-font-size: $--font-size-large !default;
350
+ $--messagebox-font-size: $--font-size-medium !default;
351
351
  /// fontSize||Font|1
352
352
  $--messagebox-content-font-size: $--font-size-base !default;
353
353
  /// color||Color|0
354
354
  $--messagebox-content-color: $--color-text-regular !default;
355
355
  /// fontSize||Font|1
356
356
  $--messagebox-error-font-size: 12px !default;
357
- $--msgbox-padding-primary: 15px !default;
357
+ $--msgbox-padding-primary: 16px !default;
358
358
  /// color||Color|0
359
359
  $--messagebox-success-color: $--color-success !default;
360
360
  /// color||Color|0
@@ -39,6 +39,7 @@
39
39
  position: relative;
40
40
  padding: $--msgbox-padding-primary;
41
41
  padding-bottom: 10px;
42
+ border-bottom: 1px solid #F2F3F5;
42
43
  }
43
44
 
44
45
  @include e(title) {
@@ -73,7 +74,7 @@
73
74
  }
74
75
 
75
76
  @include e(content) {
76
- padding: 10px $--msgbox-padding-primary;
77
+ padding: 20px 30px;
77
78
  color: $--messagebox-content-color;
78
79
  font-size: $--messagebox-content-font-size;
79
80
  }
@@ -143,7 +144,7 @@
143
144
  }
144
145
 
145
146
  @include e(btns) {
146
- padding: 5px 15px 0;
147
+ padding: 10px 16px 0;
147
148
  text-align: right;
148
149
 
149
150
  & button:nth-child(2) {