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