aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShibu Lijack <shibulijack@gmail.com>2012-04-09 18:43:54 +0530
committerShibu Lijack <shibulijack@gmail.com>2012-04-09 18:43:54 +0530
commitfa04c3712b611425e41f5f5ac661eb0cddcba3ec (patch)
treee7aec0224f9b27446b9bd153d7f09e3bc56d20e9
parentd8c67937d6e9bb07f4ab103e66c96efaf0bb51d1 (diff)
downloadforums-fa04c3712b611425e41f5f5ac661eb0cddcba3ec.tar
forums-fa04c3712b611425e41f5f5ac661eb0cddcba3ec.tar.gz
forums-fa04c3712b611425e41f5f5ac661eb0cddcba3ec.tar.bz2
forums-fa04c3712b611425e41f5f5ac661eb0cddcba3ec.tar.xz
forums-fa04c3712b611425e41f5f5ac661eb0cddcba3ec.zip
[ticket/10734] Moved style elements and fixed minor bugs
Moved color related style elements to colours.css and other elements to common.css Also added an empty display for corners span. Removed unwanted space in mcp_topic Removed DS_Store PHPBB-10734
-rw-r--r--phpBB/styles/prosilver/template/mcp_topic.html3
-rw-r--r--phpBB/styles/prosilver/theme/colours.css11
-rw-r--r--phpBB/styles/prosilver/theme/common.css10
-rw-r--r--phpBB/styles/prosilver/theme/content.css4
-rw-r--r--phpBB/styles/prosilver/theme/images/.DS_Storebin6148 -> 0 bytes
5 files changed, 16 insertions, 12 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html
index 1da1b1b3d4..527d21771e 100644
--- a/phpBB/styles/prosilver/template/mcp_topic.html
+++ b/phpBB/styles/prosilver/template/mcp_topic.html
@@ -21,8 +21,7 @@ onload_functions.push('subPanels()');
<div id="minitabs">
<ul>
- <li id="display-panel-tab"<!-- IF not S_MERGE_VIEW --> class="activetab"<!-- ENDIF -->>
-
+ <li id="display-panel-tab"<!-- IF not S_MERGE_VIEW --> class="activetab"<!-- ENDIF -->
<a href="#minitabs" onclick="subPanels('display-panel'); return false;"><span>{L_DISPLAY_OPTIONS}</span></a>
</li>
<li id="split-panel-tab">
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css
index 53fa2dd653..66b60ea7bf 100644
--- a/phpBB/styles/prosilver/theme/colours.css
+++ b/phpBB/styles/prosilver/theme/colours.css
@@ -47,34 +47,26 @@ hr {
background-color: #12A3EB;
background-image: url("./images/bg_header.gif");
color: #FFFFFF;
- border-radius: 7px;
}
.navbar {
background-color: #cadceb;
- border-radius: 7px;
}
.forabg {
background-color: #0076b1;
background-image: url("./images/bg_list.gif");
- border-radius: 7px;
}
.forumbg {
background-color: #12A3EB;
background-image: url("./images/bg_header.gif");
- border-radius: 7px;
}
.panel {
background-color: #ECF1F3;
color: #28313F;
- border-radius: 7px;
-}
-
-.post {
- border-radius: 7px;
+
}
.post:target .content {
@@ -871,7 +863,6 @@ ul.cplist {
#cp-main .panel {
background-color: #F9F9F9;
- padding: 5px 10px;
}
#cp-main .pm {
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index 57696d71ee..300125b4f1 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -252,12 +252,14 @@ a#logo:hover {
background: transparent none repeat-x 0 0;
margin-bottom: 4px;
padding: 5px;
+ border-radius: 7px;
}
.navbar {
padding: 0 10px;
background-color: #ebebeb;
padding: 5px 10px 5px 10px;
+ border-radius: 7px;
}
.forabg {
@@ -265,6 +267,7 @@ a#logo:hover {
margin-bottom: 4px;
padding: 5px;
clear: both;
+ border-radius: 7px;
}
.forumbg {
@@ -272,6 +275,7 @@ a#logo:hover {
margin-bottom: 4px;
padding: 5px;
clear: both;
+ border-radius: 7px;
}
.panel {
@@ -279,6 +283,7 @@ a#logo:hover {
padding: 5px 10px;
background-color: #f3f3f3;
color: #3f3f3f;
+ border-radius: 7px;
}
.post {
@@ -286,6 +291,7 @@ a#logo:hover {
margin-bottom: 4px;
background-repeat: no-repeat;
background-position: 100% 0;
+ border-radius: 7px;
}
.inner:after {
@@ -307,6 +313,10 @@ ul.linklist {
overflow: hidden;
}
+#cp-main .panel {
+ padding: 5px 10px;
+}
+
ul.linklist li {
display: block;
list-style-type: none;
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css
index b0872f78aa..60903911dd 100644
--- a/phpBB/styles/prosilver/theme/content.css
+++ b/phpBB/styles/prosilver/theme/content.css
@@ -336,6 +336,10 @@ div[class].topic-actions {
line-height: 1.4em;
}
+span.corners-top, span.corners-bottom {
+ display: none;
+}
+
dl.faq {
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.1em;
diff --git a/phpBB/styles/prosilver/theme/images/.DS_Store b/phpBB/styles/prosilver/theme/images/.DS_Store
deleted file mode 100644
index 5008ddfcf5..0000000000
--- a/phpBB/styles/prosilver/theme/images/.DS_Store
+++ /dev/null
Binary files differ