1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-20 07:21:30 +02:00

[ticket/11241] Add border to dropdown menu options.

PHPBB3-11241
This commit is contained in:
Cesar G
2013-11-09 00:40:58 -08:00
parent 5579dc2412
commit 42a70154fa
5 changed files with 66 additions and 46 deletions

View File

@@ -1181,6 +1181,10 @@ ul.linklist li.responsive-menu a.responsive-menu-link:hover:before, ul.linklist
box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
}
.dropdown li, .dropdown li li {
border-color: #DCDCDC;
}
#minitabs .dropdown-contents {
background-color: #F1F8FF;
}

View File

@@ -548,14 +548,32 @@ 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;
}