Skip to content

Commit

Permalink
r0b08x [chore] 3/18/2024, 5:14:06 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
p3x-robot committed Mar 18, 2024
1 parent c600dd5 commit 33c0d49
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ https://corifeus.com/redis-ui


---
# 💿 The p3x-redis-ui-material web interface that connects to the p3x-redis-ui-server via http and socket.io v2024.4.140
# 💿 The p3x-redis-ui-material web interface that connects to the p3x-redis-ui-server via http and socket.io v2024.4.141



Expand Down Expand Up @@ -77,7 +77,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://

---

[**P3X-REDIS-UI-MATERIAL**](https://corifeus.com/redis-ui-material) Build v2024.4.140
[**P3X-REDIS-UI-MATERIAL**](https://corifeus.com/redis-ui-material) Build v2024.4.141

[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "p3x-redis-ui-material",
"version": "2024.4.140",
"version": "2024.4.141",
"description": "💿 The p3x-redis-ui-material web interface that connects to the p3x-redis-ui-server via http and socket.io",
"corifeus": {
"icon": "fas fa-database",
Expand Down Expand Up @@ -72,7 +72,7 @@
"humanize-duration": "^3.31.0",
"jquery": "^3.7.1",
"js-htmlencode": "^0.3.0",
"jsoneditor": "^10.0.1",
"jsoneditor": "^10.0.2",
"lodash": "^4.17.21",
"material-design-icons-iconfont": "^6.7.0",
"mini-css-extract-plugin": "^2.8.1",
Expand Down
2 changes: 1 addition & 1 deletion src/angular/pages/main/p3xr-main-key.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ p3xr.ng.component('p3xrMainKey', {
const generateHighlight = () => {
$('#p3xr-theme-styles-tree-key').remove()
$('head').append('<style id="p3xr-theme-styles-tree-key">' + `
[data-p3xr-tree-key="${p3xr.ui.htmlEncode($stateParams.key)}"] {
[data-p3xr-tree-key="${p3xr.ui.htmlEncode($stateParams.key)}"] .p3xr-main-tree-node-label {
background-color: ${p3xrTheme.isDark() ? $mdColors.getThemeColor(p3xr.state.themeCommon + '-accent-300') : $mdColors.getThemeColor(p3xr.state.themeCommon + '-accent-800') } !important;
color: ${p3xrTheme.isDark() ? 'black' : 'white' } !important;
padding: 2px;
Expand Down
2 changes: 1 addition & 1 deletion src/angular/pages/main/p3xr-main-treecontrol.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<span data-p3xr-tree-key="{{$ctrl.extractNodeKey(node)}}">
<md-tooltip md-direction="top">{{ $ctrl.extractNodeTooltip(node) }}</md-tooltip>
<label class="p3xr-main-tree-node" ng-mouseover="$ctrl.hoverTree({node})" ng-mouseleave="node.showTree = false">
<label class="p3xr-main-tree-node" ng-mouseover="$ctrl.hover({node})" ng-mouseleave="node.showTree = false">
<span ng-switch="node.keysInfo.type">
<i ng-switch-when="hash" class="p3xr-main-treecontrol-node-icon fas fa-hashtag" aria-hidden="true"></i>
<i ng-switch-when="list" class="p3xr-main-treecontrol-node-icon fas fa-list-ol" aria-hidden="true"></i>
Expand Down
2 changes: 1 addition & 1 deletion src/angular/provider/p3xr-theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ body[md-theme="p3xrThemeEnterpriseLayout"] md-toolbar.md-hue-1 .md-button-dark-h
}
[data-p3xr-tree-key]:hover .p3xr-main-tree-node-label {
text-decoration: underline;
background-color: ${this.isDark() ? 'rgba(255, 255, 255, 0.1)' : 'rgba(0, 0, 0, 0.1)'}
}
.p3xr-theme-dark .p3xr-content-border {
Expand Down

0 comments on commit 33c0d49

Please sign in to comment.