mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/10734] CSS tweaks
Modified colours.css Removed the corner images. Added border radius. PHPBB3-10734
This commit is contained in:
parent
e7a4437c1b
commit
31ea2da5ac
1 changed files with 29 additions and 4 deletions
|
@ -47,25 +47,50 @@ hr {
|
||||||
background-color: #12A3EB;
|
background-color: #12A3EB;
|
||||||
background-image: url("./images/bg_header.gif");
|
background-image: url("./images/bg_header.gif");
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
|
border-radius: 7px;
|
||||||
|
-webkit-border-radius: 7px;
|
||||||
|
-moz-border-radius: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
background-color: #cadceb;
|
background-color: #cadceb;
|
||||||
|
border-radius: 7px;
|
||||||
|
-webkit-border-radius: 7px;
|
||||||
|
-moz-border-radius: 7px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.forabg {
|
.forabg {
|
||||||
background-color: #0076b1;
|
background-color: #0076b1;
|
||||||
background-image: url("./images/bg_list.gif");
|
background-image: url("./images/bg_list.gif");
|
||||||
|
border-radius: 7px;
|
||||||
|
-webkit-border-radius: 7px;
|
||||||
|
-moz-border-radius: 7px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.forumbg {
|
.forumbg {
|
||||||
background-color: #12A3EB;
|
background-color: #12A3EB;
|
||||||
background-image: url("./images/bg_header.gif");
|
background-image: url("./images/bg_header.gif");
|
||||||
|
border-radius: 7px;
|
||||||
|
-webkit-border-radius: 7px;
|
||||||
|
-moz-border-radius: 7px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
background-color: #ECF1F3;
|
background-color: #ECF1F3;
|
||||||
color: #28313F;
|
color: #28313F;
|
||||||
|
border-radius: 7px;
|
||||||
|
-webkit-border-radius: 7px;
|
||||||
|
-moz-border-radius: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post {
|
||||||
|
border-radius: 7px;
|
||||||
|
-webkit-border-radius: 7px;
|
||||||
|
-moz-border-radius: 7px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.post:target .content {
|
.post:target .content {
|
||||||
|
@ -89,19 +114,19 @@ hr {
|
||||||
}
|
}
|
||||||
|
|
||||||
span.corners-top {
|
span.corners-top {
|
||||||
background-image: url("./images/corners_left.png");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
span.corners-top span {
|
span.corners-top span {
|
||||||
background-image: url("./images/corners_right.png");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
span.corners-bottom {
|
span.corners-bottom {
|
||||||
background-image: url("./images/corners_left.png");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
span.corners-bottom span {
|
span.corners-bottom span {
|
||||||
background-image: url("./images/corners_right.png");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Horizontal lists
|
/* Horizontal lists
|
||||||
|
|
Loading…
Add table
Reference in a new issue