@timus-networks/theme 2.4.75 → 2.4.77
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/public/scss/element-plus/index.css +6 -0
- package/dist/runtime/public/scss/element-plus/popover.css +2 -0
- package/dist/runtime/public/scss/element-plus/popover.scss +2 -1
- package/dist/runtime/public/scss/element-plus/table.css +4 -0
- package/dist/runtime/public/scss/element-plus/table.scss +5 -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.77";
|
|
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 = {
|
|
@@ -11440,6 +11440,8 @@ h6,
|
|
|
11440
11440
|
box-shadow: var(--el-box-shadow-light);
|
|
11441
11441
|
overflow-wrap: break-word;
|
|
11442
11442
|
box-sizing: border-box;
|
|
11443
|
+
width: auto !important;
|
|
11444
|
+
max-width: 450px;
|
|
11443
11445
|
}
|
|
11444
11446
|
.el-popover.el-popper--plain {
|
|
11445
11447
|
padding: var(--el-popover-padding-large);
|
|
@@ -14212,6 +14214,10 @@ h6,
|
|
|
14212
14214
|
.el-table__header-wrapper .el-table-column--selection .el-checkbox, .el-table__body-wrapper .el-table-column--selection .el-checkbox {
|
|
14213
14215
|
height: unset;
|
|
14214
14216
|
}
|
|
14217
|
+
.el-table__header-wrapper .el-table-column--selection .el-checkbox .el-checkbox__inner, .el-table__body-wrapper .el-table-column--selection .el-checkbox .el-checkbox__inner {
|
|
14218
|
+
width: 12px;
|
|
14219
|
+
height: 12px;
|
|
14220
|
+
}
|
|
14215
14221
|
.el-table__header-wrapper .el-table-column--selection + td > .cell, .el-table__header-wrapper .el-table-column--selection + th > .cell, .el-table__body-wrapper .el-table-column--selection + td > .cell, .el-table__body-wrapper .el-table-column--selection + th > .cell {
|
|
14216
14222
|
padding-left: 4px;
|
|
14217
14223
|
}
|
|
@@ -324,6 +324,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
324
324
|
box-shadow: var(--el-box-shadow-light);
|
|
325
325
|
overflow-wrap: break-word;
|
|
326
326
|
box-sizing: border-box;
|
|
327
|
+
width: auto !important;
|
|
328
|
+
max-width: 450px;
|
|
327
329
|
}
|
|
328
330
|
.el-popover.el-popper--plain {
|
|
329
331
|
padding: var(--el-popover-padding-large);
|
|
@@ -715,6 +715,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
715
715
|
.el-table__header-wrapper .el-table-column--selection .el-checkbox, .el-table__body-wrapper .el-table-column--selection .el-checkbox {
|
|
716
716
|
height: unset;
|
|
717
717
|
}
|
|
718
|
+
.el-table__header-wrapper .el-table-column--selection .el-checkbox .el-checkbox__inner, .el-table__body-wrapper .el-table-column--selection .el-checkbox .el-checkbox__inner {
|
|
719
|
+
width: 12px;
|
|
720
|
+
height: 12px;
|
|
721
|
+
}
|
|
718
722
|
.el-table__header-wrapper .el-table-column--selection + td > .cell, .el-table__header-wrapper .el-table-column--selection + th > .cell, .el-table__body-wrapper .el-table-column--selection + td > .cell, .el-table__body-wrapper .el-table-column--selection + th > .cell {
|
|
719
723
|
padding-left: 4px;
|
|
720
724
|
}
|
package/package.json
CHANGED