From 1795f1d54bc37cd9e8858156801acad1b18ce1fa Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Thu, 24 Oct 2013 19:57:19 +0300 Subject: [ticket/11956] More resposive dropdown fixes PHPBB3-11956 --- phpBB/styles/prosilver/theme/buttons.css | 6 +++--- phpBB/styles/prosilver/theme/common.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'phpBB') diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css index 85a87b5c50..3eff3cf4f4 100644 --- a/phpBB/styles/prosilver/theme/buttons.css +++ b/phpBB/styles/prosilver/theme/buttons.css @@ -182,13 +182,13 @@ ul.profile-icons.responsive a.responsive-menu-link:before { top: 20px; } -.postbody ul.profile-icons.responsive .responsive-popup { +.postbody ul.profile-icons .dropdown { left: auto; right: -4px; top: 30px; } -.postbody ul.profile-icons.responsive .responsive-popup li, .postbody ul.profile-icons.responsive .responsive-popup li a { +.postbody ul.profile-icons .dropdown li, .postbody ul.profile-icons .dropdown li a { display: block; background: transparent none; width: auto; @@ -199,7 +199,7 @@ ul.profile-icons.responsive a.responsive-menu-link:before { list-style-type: none; } -.postbody ul.profile-icons.responsive .responsive-popup li span { +.postbody ul.profile-icons .dropdown li span { display: block; text-align: right; font-size: 1.2em; diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index bc2432e2a4..3605b9e1a4 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -523,7 +523,7 @@ ul.linklist.bulletin li.no-bulletin:before { text-align: left; } -.wrap .dropdown li, .dropdown.wrap li { +.wrap .dropdown li, .dropdown.wrap li, #notification_list li { white-space: normal; } -- cgit v1.2.1 Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2010-03-17 10:51:50 +0000
committerThierry Vignaud <tv@mandriva.org>2010-03-17 10:51:50 +0000
commite49ddefe079e4e6888d756177b41683e21fa010a (patch)
tree4891c6249f3295a0acdd4390460079045871bf4b /perl-install
parentccb3c74d3cf2a19c4e517bc68918cc43741c9592 (diff)
downloaddrakx-e49ddefe079e4e6888d756177b41683e21fa010a.tar
drakx-e49ddefe079e4e6888d756177b41683e21fa010a.tar.gz
drakx-e49ddefe079e4e6888d756177b41683e21fa010a.tar.bz2
drakx-e49ddefe079e4e6888d756177b41683e21fa010a.tar.xz
drakx-e49ddefe079e4e6888d756177b41683e21fa010a.zip
identify HECI controllers as system devices (#58215)
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/harddrake/data.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 9fda07506..c0a03751c 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,5 +1,7 @@
- include 'mpt2sas' SCSI driver (#57833)
- add mdadm raid10 support
+- harddrake:
+ o identify HECI controllers as system devices (#58215)
Version 13.12 - 25 February 2010
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index 27b123510..9cfebe7fb 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -155,7 +155,7 @@ our @tree =
string => N("Bridges and system controllers"),
icon => "memory.png",
configurator => "",
- detector => sub { f(grep { $_->{media_type} =~ /BRIDGE|MEMORY_RAM|SYSTEM_(OTHER|SDHCI)|MEMORY_OTHER|SYSTEM_PIC/
+ detector => sub { f(grep { $_->{media_type} =~ /BRIDGE|MEMORY_RAM|SYSTEM_(OTHER|SDHCI)|MEMORY_OTHER|SYSTEM_PIC|COMMUNICATION_OTHER/
|| $_->{description} =~ /Parallel Port Adapter/;
} @devices) },
checked_on_boot => 0,