@timus-networks/theme 2.4.51 → 2.4.54

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.4.51",
4
+ "version": "2.4.54",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
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.51";
14
+ const version = "2.4.54";
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 = {
@@ -557,7 +557,7 @@ $messagebox: map.merge(
557
557
  (
558
558
  'title-color': getCssVar('text-color-primary'),
559
559
  'width': 420px,
560
- 'border-radius': 4px,
560
+ 'border-radius': 16px,
561
561
  'box-shadow': getCssVar('box-shadow'),
562
562
  'font-size': getCssVar('font-size-large'),
563
563
  'content-font-size': getCssVar('font-size-base'),
@@ -10364,7 +10364,7 @@ heights > $common-component-size
10364
10364
  .el-message-box {
10365
10365
  --el-messagebox-title-color: var(--el-text-color-primary);
10366
10366
  --el-messagebox-width: 420px;
10367
- --el-messagebox-border-radius: 4px;
10367
+ --el-messagebox-border-radius: 16px;
10368
10368
  --el-messagebox-box-shadow: var(--el-box-shadow);
10369
10369
  --el-messagebox-font-size: var(--el-font-size-large);
10370
10370
  --el-messagebox-content-font-size: var(--el-font-size-base);
@@ -340,7 +340,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
340
340
  .el-message-box {
341
341
  --el-messagebox-title-color: var(--el-text-color-primary);
342
342
  --el-messagebox-width: 420px;
343
- --el-messagebox-border-radius: 4px;
343
+ --el-messagebox-border-radius: 16px;
344
344
  --el-messagebox-box-shadow: var(--el-box-shadow);
345
345
  --el-messagebox-font-size: var(--el-font-size-large);
346
346
  --el-messagebox-content-font-size: var(--el-font-size-base);
@@ -1,3 +1,4 @@
1
+ @charset "UTF-8";
1
2
  :root {
2
3
  --font-size: 1em;
3
4
  --border-width: 1px;
@@ -1247,24 +1248,27 @@ body {
1247
1248
  width: 24px;
1248
1249
  }
1249
1250
 
1250
- ::-webkit-scrollbar {
1251
+ .el-main {
1252
+ overflow: hidden scroll;
1253
+ position: relative; /* scrollbar'ın absolute pozisyonu için gerekli */
1254
+ }
1255
+ .el-main::-webkit-scrollbar {
1256
+ position: absolute;
1257
+ right: 0;
1251
1258
  width: 8px;
1259
+ z-index: 1000; /* içeriğin üzerinde durması için */
1252
1260
  }
1253
-
1254
- /* background of the scrollbar except button or resizer */
1255
- ::-webkit-scrollbar-track {
1256
- background-color: rgba(255, 255, 255, 0.01);
1257
- border-radius: 10px;
1261
+ .el-main::-webkit-scrollbar-track {
1262
+ background: transparent;
1258
1263
  }
1259
-
1260
- /* scrollbar itself */
1261
- ::-webkit-scrollbar-thumb {
1264
+ .el-main::-webkit-scrollbar-thumb {
1265
+ background-color: rgba(0, 0, 0, 0);
1266
+ border-radius: 4px;
1267
+ transition: background-color 0.3s ease;
1268
+ }
1269
+ .el-main::-webkit-scrollbar-thumb:hover {
1262
1270
  background-color: rgba(255, 255, 255, 0.01);
1263
- border: 2px solid rgba(255, 255, 255, 0.01);
1264
- border-radius: 10px;
1265
1271
  }
1266
-
1267
- /* set button(top and bottom of the scrollbar) */
1268
- ::-webkit-scrollbar-button {
1269
- display: none;
1272
+ .el-main:hover::-webkit-scrollbar-thumb {
1273
+ background-color: rgba(255, 255, 255, 0.01);
1270
1274
  }
@@ -60,28 +60,36 @@ body {
60
60
  }
61
61
  }
62
62
 
63
- // SCROLLBAR
64
- ::-webkit-scrollbar {
65
- width: 8px;
66
- }
63
+ .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
+ overflow: hidden scroll;
67
+ position: relative; /* scrollbar'ın absolute pozisyonu için gerekli */
67
68
 
68
- $neutral-light-2: map.get(map.get($theme, 'light'), '2');
69
- $neutral-light-3: map.get(map.get($theme, 'light'), '3');
69
+ &::-webkit-scrollbar {
70
+ position: absolute;
71
+ right: 0;
72
+ width: 8px;
73
+ z-index: 1000; /* içeriğin üzerinde durması için */
74
+ }
70
75
 
71
- /* background of the scrollbar except button or resizer */
72
- ::-webkit-scrollbar-track {
73
- background-color: $neutral-light-2;
74
- border-radius: 10px;
75
- }
76
+ &::-webkit-scrollbar-track {
77
+ background: transparent;
78
+ }
76
79
 
77
- /* scrollbar itself */
78
- ::-webkit-scrollbar-thumb {
79
- background-color: $neutral-light-3;
80
- border: 2px solid $neutral-light-3;
81
- border-radius: 10px;
82
- }
80
+ &::-webkit-scrollbar-thumb {
81
+ background-color: rgba(0, 0, 0, 0%);
82
+ border-radius: 4px;
83
+ transition: background-color 0.3s ease;
83
84
 
84
- /* set button(top and bottom of the scrollbar) */
85
- ::-webkit-scrollbar-button {
86
- display: none;
85
+ &:hover {
86
+ background-color: $neutral-light-3;
87
+ }
88
+ }
89
+
90
+ &:hover {
91
+ &::-webkit-scrollbar-thumb {
92
+ background-color: $neutral-light-2;
93
+ }
94
+ }
87
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.51",
3
+ "version": "2.4.54",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "type": "module",
6
6
  "exports": {