aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/theme
diff options
context:
space:
mode:
authorDominik Dröscher <dhn2@users.sourceforge.net>2007-04-06 23:09:00 +0000
committerDominik Dröscher <dhn2@users.sourceforge.net>2007-04-06 23:09:00 +0000
commit39f8ef287af043e0724631094351c77b93191bba (patch)
treeb6caaf20a03cc90acc61a2de33c99b883afe2f28 /phpBB/styles/prosilver/theme
parente3007bb6cf79f19e70cc9cf486f49eba574d20bc (diff)
downloadforums-39f8ef287af043e0724631094351c77b93191bba.tar
forums-39f8ef287af043e0724631094351c77b93191bba.tar.gz
forums-39f8ef287af043e0724631094351c77b93191bba.tar.bz2
forums-39f8ef287af043e0724631094351c77b93191bba.tar.xz
forums-39f8ef287af043e0724631094351c77b93191bba.zip
#8669
#8745 #8762 #5417 #9525 #9568 #9574 #9577 #9640 #9641 #9644 git-svn-id: file:///svn/phpbb/trunk@7291 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r--phpBB/styles/prosilver/theme/colours.css9
-rw-r--r--phpBB/styles/prosilver/theme/common.css4
-rw-r--r--phpBB/styles/prosilver/theme/forms.css4
-rw-r--r--phpBB/styles/prosilver/theme/images/top.gifbin204 -> 0 bytes
-rw-r--r--phpBB/styles/prosilver/theme/tweaks.css8
5 files changed, 20 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css
index bd93eb9493..37ca60320a 100644
--- a/phpBB/styles/prosilver/theme/colours.css
+++ b/phpBB/styles/prosilver/theme/colours.css
@@ -851,7 +851,7 @@ pmlist li.pm_foe_colour, .pm_foe_colour {
/* Avatar gallery */
#gallery label {
- background: #FFFFFF;
+ background-color: #FFFFFF;
border-color: #CCC;
}
@@ -946,6 +946,13 @@ a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.but
color: #000000;
}
+/* Hover states */
+a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
+ border: 1px solid #BC2A4D;
+ background-position: 0 100%;
+ color: #BC2A4D;
+}
+
input.search {
background-image: url("{T_THEME_PATH}/images/icon_textbox_search.gif");
} \ No newline at end of file
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index 35a956b81b..935b81b9dd 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -429,14 +429,14 @@ dl.details {
dl.details dt {
float: left;
- width: 11em;
+ width: 16em;
text-align: right;
color: #000000;
display: block;
}
dl.details dd {
- margin-left: 11em;
+ margin-left: 16em;
padding-left: 5px;
margin-bottom: 5px;
color: #828282;
diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css
index 2d2eb56fed..006ed3b026 100644
--- a/phpBB/styles/prosilver/theme/forms.css
+++ b/phpBB/styles/prosilver/theme/forms.css
@@ -347,9 +347,9 @@ a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.but
/* Hover states */
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
- border: 1px solid #BC2A4D;
+ border: 1px solid #BCBCBC;
background-position: 0 100%;
- color: #BC2A4D;
+ color: #BCBCBC;
}
/* Topic and forum Search */
diff --git a/phpBB/styles/prosilver/theme/images/top.gif b/phpBB/styles/prosilver/theme/images/top.gif
deleted file mode 100644
index 4d2b8f3822..0000000000
--- a/phpBB/styles/prosilver/theme/images/top.gif
+++ /dev/null
Binary files differ
diff --git a/phpBB/styles/prosilver/theme/tweaks.css b/phpBB/styles/prosilver/theme/tweaks.css
index 387f2cf44b..4dd490ea33 100644
--- a/phpBB/styles/prosilver/theme/tweaks.css
+++ b/phpBB/styles/prosilver/theme/tweaks.css
@@ -45,3 +45,11 @@ html>body dd label input { vertical-align: text-bottom; } /* Align checkboxes/ra
#tabs, #minitabs, .post, .navbar, fieldset dl, ul.topiclist dl, ul.linklist, dl.polls {
height: 1%;
}
+
+/* Simple fix so forum and topic lists always have a min-height set, even in IE6
+ From http://www.dustindiaz.com/min-height-fast-hack */
+dl.icon {
+ min-height: 35px;
+ height: auto !important;
+ height: 35px;
+} \ No newline at end of file