1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-12 02:25:18 +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:
Tristan Darricau 2018-07-08 18:12:43 +02:00
commit aa2ed924a8

View File

@ -5,6 +5,11 @@
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
ul.forums,
ul.topics {
border-radius: 4px;
}
ul.topiclist {
display: block;
margin: 0;
@ -109,6 +114,20 @@ li.row {
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 {
font-weight: normal;
}