diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php
index 89fb89fbde..1596ec7d80 100644
--- a/pandora_console/general/header.php
+++ b/pandora_console/general/header.php
@@ -599,21 +599,12 @@ echo sprintf('
* {
padding-left: 7px;
pointer-events: none;
@@ -10587,7 +10600,7 @@ button.submitButton:active {
border: 2px solid #57ea82;
}
-button.buttonButton > div,
+button.buttonButton > div:not(.unset),
button.submitButton > div {
background-color: #fff;
width: 2rem;
@@ -12676,11 +12689,12 @@ form.cfv_status_agent input:checked + label:before {
.notificaion_menu_container {
display: flex;
- padding-top: 10px;
- padding-left: 15px;
-}
-.notification_menu {
- width: 100px;
+ padding: 10px 15px;
+ flex-direction: row;
+ flex-wrap: nowrap;
+ align-items: center;
+ justify-content: space-between;
+ border-bottom: 1px solid #e5e9ed;
}
.filter_notification {
@@ -13867,3 +13881,18 @@ button.disabled {
.white_table_graph > div {
background-color: transparent;
}
+
+.link-bold {
+ color: var(--primary-color);
+ text-decoration: none;
+ font-weight: bold;
+}
+
+.link-bold:hover {
+ opacity: 0.9;
+ color: var(--primary-color);
+}
+
+.text-nowrap {
+ text-wrap: nowrap;
+}
diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css
index 8148ee5eb6..80032efbb7 100644
--- a/pandora_console/include/styles/pandora_black.css
+++ b/pandora_console/include/styles/pandora_black.css
@@ -1886,3 +1886,9 @@ a.pandora_pagination,
#score-bar .labels-bar div {
color: white;
}
+
+a.link-bold {
+ color: var(--primary-color) !important;
+ text-decoration: none;
+ font-weight: bold;
+}