mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 00:07:44 +02:00
[ticket/15388] List boxes internal corners rounded
Improve the visual style commonality by making the internal corners of the forum and topic list boxes rounded to match the rounded outer corners. PHPBB3-15388
This commit is contained in:
@@ -7,6 +7,10 @@
|
|||||||
/* stylelint-disable declaration-property-unit-whitelist */
|
/* stylelint-disable declaration-property-unit-whitelist */
|
||||||
/* stylelint-disable declaration-property-unit-blacklist */
|
/* stylelint-disable declaration-property-unit-blacklist */
|
||||||
|
|
||||||
|
ul.forums, ul.topics {
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
ul.topiclist {
|
ul.topiclist {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -105,6 +109,26 @@ li.row {
|
|||||||
border-bottom: 1px solid transparent;
|
border-bottom: 1px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li.row:first-child {
|
||||||
|
border-top: 0;
|
||||||
|
padding-top: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.row:first-child, li.row:first-child:hover {
|
||||||
|
border-top-left-radius: 4px;
|
||||||
|
border-top-right-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.row:last-child {
|
||||||
|
border-bottom: 0;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.row:last-child, li.row:last-child:hover {
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
li.row strong {
|
li.row strong {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user