mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-14 19:45:21 +02:00
Merge pull request #4986 from Sophist-UK/ticket/15388
[ticket/15388] List boxes internal corners rounded * github.com:/phpbb/phpbb: [ticket/15388] List boxes internal corners rounded fix 2 [ticket/15388] List boxes internal corners rounded fix 1 [ticket/15388] List boxes internal corners rounded
This commit is contained in:
commit
aa2ed924a8
@ -5,6 +5,11 @@
|
|||||||
/* stylelint-disable selector-max-compound-selectors */
|
/* stylelint-disable selector-max-compound-selectors */
|
||||||
/* stylelint-disable selector-no-qualifying-type */
|
/* stylelint-disable selector-no-qualifying-type */
|
||||||
|
|
||||||
|
ul.forums,
|
||||||
|
ul.topics {
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
ul.topiclist {
|
ul.topiclist {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -109,6 +114,20 @@ li.row {
|
|||||||
border-bottom: 1px solid transparent;
|
border-bottom: 1px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li.row:first-child {
|
||||||
|
border-top: 0;
|
||||||
|
border-top-left-radius: 4px;
|
||||||
|
border-top-right-radius: 4px;
|
||||||
|
padding-top: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.row:last-child {
|
||||||
|
border-bottom: 0;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
li.row strong {
|
li.row strong {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user