@keenmate/pure-admin-theme-express 1.0.0-rc02 → 1.0.0-rc04
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/express.css +1270 -328
- package/package.json +3 -3
- package/src/scss/express.scss +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-express",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc04",
|
|
4
4
|
"description": "Express theme for Pure Admin",
|
|
5
5
|
"style": "dist/express.css",
|
|
6
6
|
"exports": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"author": "KeenMate",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
22
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc04"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc04",
|
|
26
26
|
"sass": "^1.70.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
package/src/scss/express.scss
CHANGED
|
@@ -399,6 +399,23 @@ $alert-info-border: $base-info-color;
|
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
401
|
|
|
402
|
+
// Profile panel tabs - improve visibility on yellow header
|
|
403
|
+
.pa-profile-panel__tabs {
|
|
404
|
+
.pa-tabs__item {
|
|
405
|
+
color: $express-dark !important;
|
|
406
|
+
|
|
407
|
+
&:hover {
|
|
408
|
+
color: $express-red !important;
|
|
409
|
+
background-color: rgba(212, 5, 17, 0.08) !important;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
&--active {
|
|
413
|
+
color: $express-red !important;
|
|
414
|
+
border-bottom-color: $express-red !important;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
|
|
402
419
|
// ============================================================================
|
|
403
420
|
// CSS VARIABLES - LIGHT MODE (Default - matches current Express)
|
|
404
421
|
// ============================================================================
|