@timus-networks/theme 2.4.52 → 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 +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/public/scss/theme.css +24 -13
- package/dist/runtime/public/scss/theme.scss +22 -16
- 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.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,3 +1,5 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/* stylelint-disable scss/selector-nest-combinators */
|
|
1
3
|
:root {
|
|
2
4
|
--font-size: 1em;
|
|
3
5
|
--border-width: 1px;
|
|
@@ -1206,6 +1208,7 @@ select {
|
|
|
1206
1208
|
white-space: nowrap;
|
|
1207
1209
|
}
|
|
1208
1210
|
|
|
1211
|
+
/* stylelint-disable scss/selector-nest-combinators */
|
|
1209
1212
|
html,
|
|
1210
1213
|
body,
|
|
1211
1214
|
#main {
|
|
@@ -1247,24 +1250,32 @@ body {
|
|
|
1247
1250
|
width: 24px;
|
|
1248
1251
|
}
|
|
1249
1252
|
|
|
1250
|
-
|
|
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;
|
|
1251
1261
|
width: 8px;
|
|
1262
|
+
z-index: 1000;
|
|
1252
1263
|
}
|
|
1253
1264
|
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
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;
|
|
1258
1273
|
}
|
|
1259
1274
|
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
background-color: rgba(255, 255, 255, 0.01);
|
|
1263
|
-
border: 2px solid rgba(255, 255, 255, 0.01);
|
|
1264
|
-
border-radius: 10px;
|
|
1275
|
+
.el-main:hover::-webkit-scrollbar-thumb {
|
|
1276
|
+
background-color: var(--el-color-neutral-light-2);
|
|
1265
1277
|
}
|
|
1266
1278
|
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
display: none;
|
|
1279
|
+
.el-main::-webkit-scrollbar-thumb:hover {
|
|
1280
|
+
background-color: var(--el-color-neutral-light-3);
|
|
1270
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 *;
|
|
@@ -60,28 +62,32 @@ body {
|
|
|
60
62
|
}
|
|
61
63
|
}
|
|
62
64
|
|
|
63
|
-
|
|
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;
|
|
65
73
|
width: 8px;
|
|
74
|
+
z-index: 1000;
|
|
66
75
|
}
|
|
67
76
|
|
|
68
|
-
|
|
69
|
-
|
|
77
|
+
.el-main::-webkit-scrollbar-track {
|
|
78
|
+
background: transparent;
|
|
79
|
+
}
|
|
70
80
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
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;
|
|
75
85
|
}
|
|
76
86
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
background-color: $neutral-light-3;
|
|
80
|
-
border: 2px solid $neutral-light-3;
|
|
81
|
-
border-radius: 10px;
|
|
87
|
+
.el-main:hover::-webkit-scrollbar-thumb {
|
|
88
|
+
background-color: var(--el-color-neutral-light-2);
|
|
82
89
|
}
|
|
83
90
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
display: none;
|
|
91
|
+
.el-main::-webkit-scrollbar-thumb:hover {
|
|
92
|
+
background-color: var(--el-color-neutral-light-3);
|
|
87
93
|
}
|
package/package.json
CHANGED