@timus-networks/theme 2.4.238 → 2.4.239
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/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/assets/scss/main.css +2 -0
- package/dist/runtime/public/scss/element-plus/form.css +2 -0
- package/dist/runtime/public/scss/element-plus/form.scss +7 -0
- package/dist/runtime/public/scss/element-plus/index.css +2 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
13
|
const name = "@timus-networks/theme";
|
|
14
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.238";
|
|
15
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
16
16
|
const type = "module";
|
|
17
17
|
const exports = {
|
|
@@ -10028,6 +10028,8 @@ heights > $common-component-size
|
|
|
10028
10028
|
border-top-left-radius: 0;
|
|
10029
10029
|
border-bottom-left-radius: 0;
|
|
10030
10030
|
margin-left: -1px;
|
|
10031
|
+
}
|
|
10032
|
+
.el-form-items.sticky > :last-child:not(:first-child) [class*=__content] .el-button, .el-form-items.sticky > :last-child:not(:first-child).el-button {
|
|
10031
10033
|
z-index: 1;
|
|
10032
10034
|
}
|
|
10033
10035
|
.el-form-items.sticky [class*=__wrapper]:hover, .el-form-items.sticky [class*=__wrapper].is-focused, .el-form-items.sticky [class*=__wrapper].is-focus, .el-form-items.sticky [class*=__wrapper].is-hovering {
|
|
@@ -532,6 +532,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
532
532
|
border-top-left-radius: 0;
|
|
533
533
|
border-bottom-left-radius: 0;
|
|
534
534
|
margin-left: -1px;
|
|
535
|
+
}
|
|
536
|
+
.el-form-items.sticky > :last-child:not(:first-child) [class*=__content] .el-button, .el-form-items.sticky > :last-child:not(:first-child).el-button {
|
|
535
537
|
z-index: 1;
|
|
536
538
|
}
|
|
537
539
|
.el-form-items.sticky [class*=__wrapper]:hover, .el-form-items.sticky [class*=__wrapper].is-focused, .el-form-items.sticky [class*=__wrapper].is-focus, .el-form-items.sticky [class*=__wrapper].is-hovering {
|
|
@@ -294,6 +294,13 @@ $form-item-label-top-margin-bottom: map.merge(
|
|
|
294
294
|
border-top-left-radius: 0;
|
|
295
295
|
border-bottom-left-radius: 0;
|
|
296
296
|
margin-left: -1px;
|
|
297
|
+
// z-index: 1;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
> :last-child:not(:first-child) {
|
|
302
|
+
[class*='__content'] .el-button,
|
|
303
|
+
&.el-button {
|
|
297
304
|
z-index: 1;
|
|
298
305
|
}
|
|
299
306
|
}
|
|
@@ -9025,6 +9025,8 @@ heights > $common-component-size
|
|
|
9025
9025
|
border-top-left-radius: 0;
|
|
9026
9026
|
border-bottom-left-radius: 0;
|
|
9027
9027
|
margin-left: -1px;
|
|
9028
|
+
}
|
|
9029
|
+
.el-form-items.sticky > :last-child:not(:first-child) [class*=__content] .el-button, .el-form-items.sticky > :last-child:not(:first-child).el-button {
|
|
9028
9030
|
z-index: 1;
|
|
9029
9031
|
}
|
|
9030
9032
|
.el-form-items.sticky [class*=__wrapper]:hover, .el-form-items.sticky [class*=__wrapper].is-focused, .el-form-items.sticky [class*=__wrapper].is-focus, .el-form-items.sticky [class*=__wrapper].is-hovering {
|
package/package.json
CHANGED