diff options
Diffstat (limited to 'public/css/theme4.css')
-rw-r--r-- | public/css/theme4.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/public/css/theme4.css b/public/css/theme4.css index 554cf166..2202c01d 100644 --- a/public/css/theme4.css +++ b/public/css/theme4.css @@ -6781,6 +6781,29 @@ body { .stats-success { color: #8dc123; } +.dashboard-panel { + position: relative; +} +.dashboard-panel .panel-link { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + text-decoration: none; + /* No underlines on the link */ + z-index: 10; + /* Places the link above everything else in the div */ + background-color: #009c8b; + /* Fix to make div clickable in IE */ + opacity: 0; + /* Fix to make div clickable in IE */ + filter: alpha(opacity=1); + /* Fix to make div clickable in IE */ +} +.dashboard-panel .panel-link:hover { + opacity: 0.3; +} .panel-primary .panel-heading a { color: #ffffff; } |