diff options
author | msquare <msquare@notrademark.de> | 2017-12-13 12:22:26 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2017-12-13 12:22:26 +0100 |
commit | adc62470c51384094a34608cbd594cc52af899b6 (patch) | |
tree | e1bcd83d86e61e5c879cfc18c5d03b625616bebd /themes | |
parent | af8454598c204d5b32c6a33467086df5fd2dc3dc (diff) |
improve public dashboard
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base.less | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/themes/base.less b/themes/base.less index 35473860..e529ead6 100644 --- a/themes/base.less +++ b/themes/base.less @@ -43,6 +43,27 @@ body { color: @brand-success; } +.dashboard-panel { + position: relative; + + .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: @brand-primary; /* 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 */ + } + + .panel-link:hover { + opacity: 0.3; + } +} + .panel-primary .panel-heading a { color: @panel-primary-text; } |