@keenmate/pure-admin-theme-audi 1.0.0-rc02 → 1.0.0-rc05
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/audi.css +1666 -297
- package/package.json +3 -3
- package/src/scss/audi.scss +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-audi",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc05",
|
|
4
4
|
"description": "Audi theme for Pure Admin - includes dark and light variants",
|
|
5
5
|
"style": "dist/audi.css",
|
|
6
6
|
"exports": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"author": "KeenMate",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc05"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
28
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc05",
|
|
29
29
|
"sass": "^1.70.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
package/src/scss/audi.scss
CHANGED
|
@@ -102,9 +102,10 @@ $base-text-on-info: #ffffff;
|
|
|
102
102
|
$sidebar-width: 29rem;
|
|
103
103
|
$border-radius: 1px;
|
|
104
104
|
$border-radius-lg: 2px;
|
|
105
|
+
$card-border-radius: 0; // Square cards (Audi design language)
|
|
105
106
|
|
|
106
107
|
// Enable red accent on table row hover (Audi signature detail)
|
|
107
|
-
$table-hover-accent-width: 3px
|
|
108
|
+
$table-hover-accent-width: 0.3rem; // 3px in 10px base
|
|
108
109
|
$table-hover-accent-position: left;
|
|
109
110
|
|
|
110
111
|
// Dark mode theme colors
|
|
@@ -244,6 +245,10 @@ $btn-dark-text: #ffffff;
|
|
|
244
245
|
|
|
245
246
|
$body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
246
247
|
|
|
248
|
+
// Card styling - thicker border for Audi design language
|
|
249
|
+
$card-border-width: $border-width-medium;
|
|
250
|
+
$card-border-radius: 0; // Sharp edges
|
|
251
|
+
|
|
247
252
|
// =============================================================================
|
|
248
253
|
// IMPORT CORE FRAMEWORK
|
|
249
254
|
// =============================================================================
|
|
@@ -282,8 +287,6 @@ $body-font-family: "Fira Sans Condensed", "Arial Narrow", "Arial", sans-serif;
|
|
|
282
287
|
}
|
|
283
288
|
|
|
284
289
|
.pa-card {
|
|
285
|
-
border-radius: 0 !important;
|
|
286
|
-
border: $border-width-medium solid var(--pa-border-color);
|
|
287
290
|
box-shadow: 0 $spacing-xs ($spacing-sm * 2) rgba(0, 0, 0, 0.4);
|
|
288
291
|
}
|
|
289
292
|
|