@timus-networks/theme 2.4.28 → 2.4.31
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/composables/useBreadcrumb.mjs +1 -1
- package/dist/runtime/public/scss/element-plus/index.css +2 -0
- package/dist/runtime/public/scss/element-plus/link.css +1 -0
- package/dist/runtime/public/scss/element-plus/link.scss +1 -0
- package/dist/runtime/public/scss/element-plus/main.css +1 -0
- package/dist/runtime/public/scss/element-plus/main.scss +1 -0
- package/dist/runtime/public/scss/theme.css +38 -1
- package/dist/runtime/public/scss/theme.scss +47 -1
- 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.31";
|
|
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 = {
|
|
@@ -29,7 +29,7 @@ export function useBreadcrumb() {
|
|
|
29
29
|
const found = tabList.value.find((item) => item === (tab || route.query.tab));
|
|
30
30
|
activeTab.value = found || tabList.value[0];
|
|
31
31
|
initial && tabChanged({ paneName: activeTab.value });
|
|
32
|
-
},
|
|
32
|
+
}, 111);
|
|
33
33
|
};
|
|
34
34
|
const setupBreadcrumbs = (tabs) => {
|
|
35
35
|
console.log("CpMS");
|
|
@@ -9814,6 +9814,7 @@ heights > $common-component-size
|
|
|
9814
9814
|
font-weight: var(--el-link-font-weight);
|
|
9815
9815
|
color: var(--el-link-text-color);
|
|
9816
9816
|
border-bottom: 1px solid transparent;
|
|
9817
|
+
line-height: normal;
|
|
9817
9818
|
}
|
|
9818
9819
|
.el-link:hover {
|
|
9819
9820
|
color: var(--el-link-hover-text-color);
|
|
@@ -10017,6 +10018,7 @@ heights > $common-component-size
|
|
|
10017
10018
|
overflow: auto;
|
|
10018
10019
|
box-sizing: border-box;
|
|
10019
10020
|
padding: var(--el-main-padding);
|
|
10021
|
+
justify-content: flex-start;
|
|
10020
10022
|
}
|
|
10021
10023
|
|
|
10022
10024
|
:root {
|
|
@@ -325,6 +325,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
325
325
|
font-weight: var(--el-link-font-weight);
|
|
326
326
|
color: var(--el-link-text-color);
|
|
327
327
|
border-bottom: 1px solid transparent;
|
|
328
|
+
line-height: normal;
|
|
328
329
|
}
|
|
329
330
|
.el-link:hover {
|
|
330
331
|
color: var(--el-link-hover-text-color);
|
|
@@ -1222,10 +1222,12 @@ body {
|
|
|
1222
1222
|
|
|
1223
1223
|
.page-footer {
|
|
1224
1224
|
align-items: center;
|
|
1225
|
+
border-top: 1px solid var(--el-color-neutral-light-3);
|
|
1225
1226
|
display: flex;
|
|
1226
1227
|
gap: 30px;
|
|
1227
1228
|
justify-content: center;
|
|
1228
|
-
|
|
1229
|
+
margin-top: 24px;
|
|
1230
|
+
padding: 24px 0 8px;
|
|
1229
1231
|
}
|
|
1230
1232
|
.page-footer .el-button {
|
|
1231
1233
|
flex-basis: 100%;
|
|
@@ -1247,4 +1249,39 @@ body {
|
|
|
1247
1249
|
.layout-leave-to {
|
|
1248
1250
|
opacity: 0;
|
|
1249
1251
|
transition: opacity 0.4s;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.el-icon.more-icon {
|
|
1255
|
+
align-items: center;
|
|
1256
|
+
color: var(--el-color-neutral-light-3);
|
|
1257
|
+
display: flex;
|
|
1258
|
+
height: 24px;
|
|
1259
|
+
justify-content: center;
|
|
1260
|
+
width: 24px;
|
|
1261
|
+
}
|
|
1262
|
+
.el-icon.more-icon svg {
|
|
1263
|
+
height: 20px;
|
|
1264
|
+
width: 24px;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
::-webkit-scrollbar {
|
|
1268
|
+
width: 8px;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
/* background of the scrollbar except button or resizer */
|
|
1272
|
+
::-webkit-scrollbar-track {
|
|
1273
|
+
background-color: rgba(255, 255, 255, 0.01);
|
|
1274
|
+
border-radius: 10px;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
/* scrollbar itself */
|
|
1278
|
+
::-webkit-scrollbar-thumb {
|
|
1279
|
+
background-color: rgba(255, 255, 255, 0.01);
|
|
1280
|
+
border: 2px solid rgba(255, 255, 255, 0.01);
|
|
1281
|
+
border-radius: 10px;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
/* set button(top and bottom of the scrollbar) */
|
|
1285
|
+
::-webkit-scrollbar-button {
|
|
1286
|
+
display: none;
|
|
1250
1287
|
}
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
@use 'inputs' as *;
|
|
8
8
|
@use 'logo' as *;
|
|
9
9
|
@use 'selectbox' as *;
|
|
10
|
+
@use 'sass:map';
|
|
11
|
+
|
|
10
12
|
// @use 'layers' as *;
|
|
11
13
|
|
|
12
14
|
// variables.scss dosyasını forward edelim, böylece diğer dosyalar da kullanabilir
|
|
@@ -29,10 +31,12 @@ body {
|
|
|
29
31
|
|
|
30
32
|
.page-footer {
|
|
31
33
|
align-items: center;
|
|
34
|
+
border-top: 1px solid var(--el-color-neutral-light-3);
|
|
32
35
|
display: flex;
|
|
33
36
|
gap: 30px;
|
|
34
37
|
justify-content: center;
|
|
35
|
-
|
|
38
|
+
margin-top: 24px;
|
|
39
|
+
padding: 24px 0 8px;
|
|
36
40
|
|
|
37
41
|
.el-button {
|
|
38
42
|
flex-basis: 100%;
|
|
@@ -56,3 +60,45 @@ body {
|
|
|
56
60
|
opacity: 0;
|
|
57
61
|
transition: opacity 0.4s;
|
|
58
62
|
}
|
|
63
|
+
|
|
64
|
+
.el-icon {
|
|
65
|
+
&.more-icon {
|
|
66
|
+
align-items: center;
|
|
67
|
+
color: var(--el-color-neutral-light-3);
|
|
68
|
+
display: flex;
|
|
69
|
+
height: 24px;
|
|
70
|
+
justify-content: center;
|
|
71
|
+
width: 24px;
|
|
72
|
+
|
|
73
|
+
svg {
|
|
74
|
+
height: 20px;
|
|
75
|
+
width: 24px;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// SCROLLBAR
|
|
81
|
+
::-webkit-scrollbar {
|
|
82
|
+
width: 8px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
$neutral-light-2: map.get(map.get($theme, 'light'), '2');
|
|
86
|
+
$neutral-light-3: map.get(map.get($theme, 'light'), '3');
|
|
87
|
+
|
|
88
|
+
/* background of the scrollbar except button or resizer */
|
|
89
|
+
::-webkit-scrollbar-track {
|
|
90
|
+
background-color: $neutral-light-2;
|
|
91
|
+
border-radius: 10px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* scrollbar itself */
|
|
95
|
+
::-webkit-scrollbar-thumb {
|
|
96
|
+
background-color: $neutral-light-3;
|
|
97
|
+
border: 2px solid $neutral-light-3;
|
|
98
|
+
border-radius: 10px;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/* set button(top and bottom of the scrollbar) */
|
|
102
|
+
::-webkit-scrollbar-button {
|
|
103
|
+
display: none;
|
|
104
|
+
}
|
package/package.json
CHANGED