diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-12-06 12:54:32 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-12-06 12:54:32 +0100 |
| commit | 71169de8230812f2d05b87bfba42331e04663b81 (patch) | |
| tree | 57ac21bd303f0a44f582f0d3bb047b0fc33de004 /phpBB/styles/prosilver/theme/common.css | |
| parent | 4684ba08690b1a6e305d9f6bf8d38cacb86dc387 (diff) | |
| parent | dbe7154065fd4195395d620654ae7897e057a37e (diff) | |
| download | forums-71169de8230812f2d05b87bfba42331e04663b81.tar forums-71169de8230812f2d05b87bfba42331e04663b81.tar.gz forums-71169de8230812f2d05b87bfba42331e04663b81.tar.bz2 forums-71169de8230812f2d05b87bfba42331e04663b81.tar.xz forums-71169de8230812f2d05b87bfba42331e04663b81.zip | |
Merge remote-tracking branch 'prototech/ticket/11241' into develop
* prototech/ticket/11241:
[ticket/11241] Retain button gradient when menu is active.
[ticket/11241] Fix the disappearing dropdown when responsive changes take effect
[ticket/11241] Add border to dropdown menu options.
[ticket/11241] Add events & var for extensions to dropdown.
[ticket/11241] Fix the dropdown in RTL languages.
[ticket/11241] Use DEFINE for the block.
[ticket/11241] Consolidate topic actions into "Topic tools" dropdown.
[ticket/11241] Add dropdown control button.
Diffstat (limited to 'phpBB/styles/prosilver/theme/common.css')
| -rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 3cc3ce1afe..cacae74649 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -463,6 +463,10 @@ ul.linklist.bulletin li.no-bulletin:before { padding: 9px 0 0; } +.dropdown-container.topic-tools { + float: left; +} + .dropdown-up .dropdown { top: auto; bottom: 1.2em; @@ -474,6 +478,15 @@ ul.linklist.bulletin li.no-bulletin:before { right: 0; } +.dropdown-button-control .dropdown { + top: 24px; +} + +.dropdown-button-control.dropdown-up .dropdown { + top: auto; + bottom: 24px; +} + .dropdown .pointer, .dropdown .pointer-inner { position: absolute; width: 0; @@ -535,12 +548,35 @@ ul.linklist.bulletin li.no-bulletin:before { } .dropdown li { - float: none; + border-bottom: 1px dotted transparent; + float: none !important; + line-height: normal !important; + font-size: 1em !important; + list-style: none; margin: 0; + padding-top: 4px; + padding-bottom: 4px; white-space: nowrap; text-align: left; } +.dropdown li:last-child, .dropdown li li { + border-bottom: 0; +} + +.dropdown li li:first-child { + margin-top: 4px; +} + +.dropdown li li:last-child { + padding-bottom: 0; +} + +.dropdown li li { + border-top: 1px dotted transparent; + padding-left: 10px; +} + .wrap .dropdown li, .dropdown.wrap li, #notification_list li { white-space: normal; } |
