1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: Upstream embeds jquery-ui.css, but we want to use the system
version of that file. To honor cacti's changes to jquery-ui.css, the delta is
added as an overload in main.css instead.
Author: Paul Gevers <elbrus@debian.org>
Bug: https://github.com/Cacti/cacti/issues/186
Index: cacti/include/themes/classic/main.css
===================================================================
--- cacti.orig/include/themes/classic/main.css
+++ cacti/include/themes/classic/main.css
@@ -2066,6 +2066,7 @@ tr#realtime td:first-child {
border: none;
font-weight: normal;
padding: 2px;
+ color: #555555
}
.ui-select-text input {
@@ -2129,3 +2130,7 @@ td.center > table {
.ui-menu-item-wrapper {
white-space: nowrap;
}
+.ui-widget-shadow {
+ -webkit-box-shadow: -8px -8px 8px #aaaaaa;
+ box-shadow: -8px -8px 8px #aaaaaa;
+}
|