jnraine / munkiserver

Visit https://github.com/munkiserver/munkiserver for active development — this repository is no longer maintained
85 stars 27 forks source link

Update effective items view to fit with managed_updates addition #128

Closed treydock closed 12 years ago

treydock commented 12 years ago

Just noticed that the effective items of a computer is too narrow to fit in the addition of managed_updates. Didn't think this fix warranted a pull request, here's the change to fix it.

From 8df820ef12a706be8e443319d18f4c2b9a30ab2b Mon Sep 17 00:00:00 2001
From: Trey Dockendorf <treydock@gmail.com>
Date: Tue, 14 Feb 2012 10:07:26 -0600
Subject: [PATCH] - Fix view of effective items after managed_updates was added

---
 public/stylesheets/style.css |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css
index 0a05435..ec4e175 100644
--- a/public/stylesheets/style.css
+++ b/public/stylesheets/style.css
@@ -473,7 +473,7 @@ thead th a:hover,
     -webkit-box-shadow: rgba(0,0,0,.6) 0px 2px 12px;
     -moz-box-shadow:  rgba(0,0,0,.6) 0px 2px 12px;;
     padding: 14px 22px;
-    width: 500px;
+    width: 600px;
     position: relative;
     display: none;
 }
-- 
jnraine commented 12 years ago

Thanks for the heads up @treydock.