@timus-networks/theme 2.4.55 → 2.4.56
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
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.56";
|
|
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 = {
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
|
-
/* stylelint-disable scss/selector-nest-combinators */
|
|
3
1
|
:root {
|
|
4
2
|
--font-size: 1em;
|
|
5
3
|
--border-width: 1px;
|
|
@@ -1208,7 +1206,6 @@ select {
|
|
|
1208
1206
|
white-space: nowrap;
|
|
1209
1207
|
}
|
|
1210
1208
|
|
|
1211
|
-
/* stylelint-disable scss/selector-nest-combinators */
|
|
1212
1209
|
html,
|
|
1213
1210
|
body,
|
|
1214
1211
|
#main {
|
|
@@ -1248,34 +1245,4 @@ body {
|
|
|
1248
1245
|
.el-icon.more-icon svg {
|
|
1249
1246
|
height: 20px;
|
|
1250
1247
|
width: 24px;
|
|
1251
|
-
}
|
|
1252
|
-
|
|
1253
|
-
.el-main {
|
|
1254
|
-
overflow: hidden scroll;
|
|
1255
|
-
position: relative; /* scrollbar'ın absolute pozisyonu için gerekli */
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
.el-main::-webkit-scrollbar {
|
|
1259
|
-
position: absolute;
|
|
1260
|
-
right: 0;
|
|
1261
|
-
width: 8px;
|
|
1262
|
-
z-index: 1000;
|
|
1263
|
-
}
|
|
1264
|
-
|
|
1265
|
-
.el-main::-webkit-scrollbar-track {
|
|
1266
|
-
background: transparent;
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
.el-main::-webkit-scrollbar-thumb {
|
|
1270
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1271
|
-
border-radius: 4px;
|
|
1272
|
-
transition: background-color 0.3s ease;
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
.el-main:hover::-webkit-scrollbar-thumb {
|
|
1276
|
-
background-color: var(--el-color-neutral-light-2);
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
|
-
.el-main::-webkit-scrollbar-thumb:hover {
|
|
1280
|
-
background-color: var(--el-color-neutral-light-3);
|
|
1281
1248
|
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/* stylelint-disable scss/selector-nest-combinators */
|
|
2
|
-
|
|
3
1
|
@use 'variables' as *;
|
|
4
2
|
@use 'colors' as *;
|
|
5
3
|
@use 'buttons' as *;
|
|
@@ -61,33 +59,3 @@ body {
|
|
|
61
59
|
}
|
|
62
60
|
}
|
|
63
61
|
}
|
|
64
|
-
|
|
65
|
-
.el-main {
|
|
66
|
-
overflow: hidden scroll;
|
|
67
|
-
position: relative; /* scrollbar'ın absolute pozisyonu için gerekli */
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.el-main::-webkit-scrollbar {
|
|
71
|
-
position: absolute;
|
|
72
|
-
right: 0;
|
|
73
|
-
width: 8px;
|
|
74
|
-
z-index: 1000;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.el-main::-webkit-scrollbar-track {
|
|
78
|
-
background: transparent;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.el-main::-webkit-scrollbar-thumb {
|
|
82
|
-
background-color: rgba(0, 0, 0, 0%);
|
|
83
|
-
border-radius: 4px;
|
|
84
|
-
transition: background-color 0.3s ease;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.el-main:hover::-webkit-scrollbar-thumb {
|
|
88
|
-
background-color: var(--el-color-neutral-light-2);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.el-main::-webkit-scrollbar-thumb:hover {
|
|
92
|
-
background-color: var(--el-color-neutral-light-3);
|
|
93
|
-
}
|
package/package.json
CHANGED