diff options
| author | PayBas <contact@paybas.com> | 2014-05-28 21:33:17 +0200 |
|---|---|---|
| committer | PayBas <contact@paybas.com> | 2014-06-15 10:02:08 +0200 |
| commit | d5f4d288e92499b64e96aeafe673ed05708cc8da (patch) | |
| tree | dbffc7117e7d3412fa2a4c01a0e00247d653b5f9 /phpBB/styles/prosilver/theme | |
| parent | 3a96c5b753cbbde459f9835e952b2cb75008a9fc (diff) | |
| download | forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar.gz forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar.bz2 forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar.xz forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.zip | |
[ticket/12608] Improve notifications drop-down menu styling in header
PHPBB3-12608
Diffstat (limited to 'phpBB/styles/prosilver/theme')
| -rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 30 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/links.css | 3 |
2 files changed, 31 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index aa28cd6962..50e89928d0 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -1101,7 +1101,7 @@ form > p.post-notice strong { display: none; position: absolute; left: 0; - width: 330px; + width: 340px; z-index: 1; top: 22px; } @@ -1173,19 +1173,38 @@ form > p.post-notice strong { text-decoration: none; } +.notification_list a.notification-block { + padding: 8px; +} + .notification_list ul li img { float: left; max-height: 50px; + max-width: 50px; width: auto !important; height: auto !important; margin-right: 5px; } .notification_list ul li p { - margin: 0; + margin-bottom: 4px; font-size: 1em; } +.notification_list p.notification-reference, +.notification_list p.notification-location, +.notification_list a.notification-block p.notification-reason { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.notification_list ul li p.notification-time { + font-size: 0.9em; + margin: 0; + text-align: right; +} + .notification_list div.notifications { padding: 5px; } @@ -1193,6 +1212,9 @@ form > p.post-notice strong { .notification_list p.notifications_title { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 13px !important; +} + +.notification_list p.notifications_title strong { font-weight: bold; } @@ -1200,6 +1222,10 @@ form > p.post-notice strong { font-size: 11px !important; } +.notification_text { + margin-left: 58px; +} + .notification_text:after { content: ''; clear: both; diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 86cdf9c10e..89639dde02 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -62,6 +62,9 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a { top: 50%; width: 30px; height: 40px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } .dropdown-extended li:hover a.mark_read { |
