mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/12821] Update all gradients
This commit is contained in:
parent
8c758e223e
commit
d81ca8d7a5
6 changed files with 87 additions and 68 deletions
|
@ -48,25 +48,35 @@ hr {
|
||||||
}
|
}
|
||||||
|
|
||||||
.headerbar {
|
.headerbar {
|
||||||
background-color: #12A3EB;
|
|
||||||
background-image: url("./images/bg_header.gif");
|
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.headerbar, .forumbg {
|
||||||
|
background-color: #12A3EB; /* Old browsers */
|
||||||
|
background-image: url("./images/bg_header.gif"); /* IE8-9 */
|
||||||
|
background-image: -moz-linear-gradient(top, #6aceff 0%, #0076b1 2px, #12a3eb 92px, #12a3eb 100%); /* FF3.6+ */
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6aceff), color-stop(2px,#0076b1), color-stop(92px,#12a3eb), color-stop(100%,#12a3eb)); /* Chrome,Safari4+ */
|
||||||
|
background-image: -webkit-linear-gradient(top, #6aceff 0%,#0076b1 2px,#12a3eb 92px,#12a3eb 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background-image: -o-linear-gradient(top, #6aceff 0%,#0076b1 2px,#12a3eb 92px,#12a3eb 100%); /* Opera 11.10+ */
|
||||||
|
background-image: linear-gradient(to bottom, #6aceff 0%,#0076b1 2px,#12a3eb 92px,#12a3eb 100%); /* W3C */
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
}
|
||||||
|
|
||||||
|
.forabg {
|
||||||
|
background-color: #0076b1; /* Old browsers */
|
||||||
|
background-image: url("./images/bg_list.gif"); /* IE8-9 */
|
||||||
|
background-image: -moz-linear-gradient(top, #6aceff 0%, #12A3EB 2px, #0076b1 92px, #0076b1 100%); /* FF3.6+ */
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6aceff), color-stop(2px,#12A3EB), color-stop(92px,#0076b1), color-stop(100%,#0076b1)); /* Chrome,Safari4+ */
|
||||||
|
background-image: -webkit-linear-gradient(top, #6aceff 0%,#12A3EB 2px,#0076b1 92px,#0076b1 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background-image: -o-linear-gradient(top, #6aceff 0%,#12A3EB 2px,#0076b1 92px,#0076b1 100%); /* Opera 11.10+ */
|
||||||
|
background-image: linear-gradient(to bottom, #6aceff 0%,#12A3EB 2px,#0076b1 92px,#0076b1 100%); /* W3C */
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
}
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
background-color: #cadceb;
|
background-color: #cadceb;
|
||||||
}
|
}
|
||||||
|
|
||||||
.forabg {
|
|
||||||
background-color: #0076b1;
|
|
||||||
background-image: url("./images/bg_list.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
.forumbg {
|
|
||||||
background-color: #12A3EB;
|
|
||||||
background-image: url("./images/bg_header.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
background-color: #ECF1F3;
|
background-color: #ECF1F3;
|
||||||
color: #28313F;
|
color: #28313F;
|
||||||
|
@ -352,8 +362,13 @@ Colours and backgrounds for content.css
|
||||||
-------------------------------------------------------------- */
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
ul.forums {
|
ul.forums {
|
||||||
background-color: #eef5f9;
|
background-color: #eef5f9; /* Old browsers */
|
||||||
background-image: url("./images/gradient.gif");
|
background-image: -moz-linear-gradient(top, #d2e0eb 0%, #eef5f9 100%); /* FF3.6+ */
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d2e0eb), color-stop(100%,#eef5f9)); /* Chrome,Safari4+ */
|
||||||
|
background-image: -webkit-linear-gradient(top, #d2e0eb 0%,#eef5f9 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background-image: -o-linear-gradient(top, #d2e0eb 0%,#eef5f9 100%); /* Opera 11.10+ */
|
||||||
|
background-image: linear-gradient(to bottom, #d2e0eb 0%,#eef5f9 100%); /* W3C */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2e0eb', endColorstr='#eef5f9',GradientType=0 ); /* IE6-9 */
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.topiclist li {
|
ul.topiclist li {
|
||||||
|
@ -636,12 +651,13 @@ Colours and backgrounds for buttons.css
|
||||||
-------------------------------------------------------------- */
|
-------------------------------------------------------------- */
|
||||||
.button {
|
.button {
|
||||||
border-color: #C7C3BF;
|
border-color: #C7C3BF;
|
||||||
background-color: #FFFFFF;
|
background-color: #e9e9e9; /* Old browsers */
|
||||||
background-image: -moz-linear-gradient(top, #FFFFFF, #E9E9E9);
|
background-image: -moz-linear-gradient(top, #ffffff 0%, #e9e9e9 100%); /* FF3.6+ */
|
||||||
background-image: -webkit-linear-gradient(top, #FFFFFF, #E9E9E9);
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e9e9e9)); /* Chrome,Safari4+ */
|
||||||
background-image: -o-linear-gradient(top, #FFFFFF, #E9E9E9);
|
background-image: -webkit-linear-gradient(top, #ffffff 0%,#e9e9e9 100%); /* Chrome10+,Safari5.1+ */
|
||||||
background-image: linear-gradient(to bottom, #FFFFFF, #E9E9E9);
|
background-image: -o-linear-gradient(top, #ffffff 0%,#e9e9e9 100%); /* Opera 11.10+ */
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#FFFFFF', EndColorStr='#E9E9E9')";
|
background-image: linear-gradient(to bottom, #ffffff 0%,#e9e9e9 100%); /* W3C */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9e9e9',GradientType=0 ); /* IE6-9 */
|
||||||
box-shadow: 0 0 0 1px #FFFFFF inset;
|
box-shadow: 0 0 0 1px #FFFFFF inset;
|
||||||
-webkit-box-shadow: 0 0 0 1px #FFFFFF inset;
|
-webkit-box-shadow: 0 0 0 1px #FFFFFF inset;
|
||||||
color: #D31141;
|
color: #D31141;
|
||||||
|
@ -653,11 +669,13 @@ Colours and backgrounds for buttons.css
|
||||||
|
|
||||||
.button:hover, .dropdown-visible .dropdown-select, .nojs .dropdown-container:hover .dropdown-select {
|
.button:hover, .dropdown-visible .dropdown-select, .nojs .dropdown-container:hover .dropdown-select {
|
||||||
border-color: #0a8ed0;
|
border-color: #0a8ed0;
|
||||||
background-image: -moz-linear-gradient(top, #E9E9E9, #FFFFFF);
|
background-color: #FFFFFF; /* Old browsers */
|
||||||
background-image: -webkit-linear-gradient(top, #E9E9E9, #FFFFFF);
|
background-image: -moz-linear-gradient(top, #E9E9E9 0%, #FFFFFF 100%); /* FF3.6+ */
|
||||||
background-image: -o-linear-gradient(top, #E9E9E9, #FFFFFF);
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E9E9E9), color-stop(100%,#FFFFFF)); /* Chrome,Safari4+ */
|
||||||
background-image: linear-gradient(to bottom, #E9E9E9, #FFFFFF);
|
background-image: -webkit-linear-gradient(top, #E9E9E9 0%,#FFFFFF 100%); /* Chrome10+,Safari5.1+ */
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#E9E9E9', EndColorStr='#FFFFFF')";
|
background-image: -o-linear-gradient(top, #E9E9E9 0%,#FFFFFF 100%); /* Opera 11.10+ */
|
||||||
|
background-image: linear-gradient(to bottom, #E9E9E9 0%,#FFFFFF 100%); /* W3C */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E9E9E9', endColorstr='#FFFFFF',GradientType=0 ); /* IE6-9 */
|
||||||
text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, -1px -1px 0 rgba(188, 42, 77, 0.2);
|
text-shadow: 1px 1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, -1px -1px 0 rgba(188, 42, 77, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -810,14 +828,13 @@ ul.cplist {
|
||||||
|
|
||||||
#tabs .activetab > a,
|
#tabs .activetab > a,
|
||||||
#tabs .activetab > a:hover {
|
#tabs .activetab > a:hover {
|
||||||
background: #CADCEB;
|
background-color: #CADCEB; /* Old browsers */
|
||||||
background: -moz-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
|
background-image: -moz-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%); /* FF3.6+ */
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E2F2FF), color-stop(100%, #CADCEB));
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E2F2FF), color-stop(100%,#CADCEB)); /* Chrome,Safari4+ */
|
||||||
background: -webkit-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
|
background-image: -webkit-linear-gradient(top, #E2F2FF 0%,#CADCEB 100%); /* Chrome10+,Safari5.1+ */
|
||||||
background: -o-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
|
background-image: -o-linear-gradient(top, #E2F2FF 0%,#CADCEB 100%); /* Opera 11.10+ */
|
||||||
background: -ms-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
|
background-image: linear-gradient(to bottom, #E2F2FF 0%,#CADCEB 100%); /* W3C */
|
||||||
background: linear-gradient(to bottom, #E2F2FF 0%, #CADCEB 100%);
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E2F2FF', endColorstr='#CADCEB',GradientType=0 ); /* IE6-9 */
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E2F2FF', endColorstr='#CADCEB', GradientType=0 );
|
|
||||||
border-color: #CADCEB;
|
border-color: #CADCEB;
|
||||||
box-shadow: 0 1px 1px #F2F9FF inset;
|
box-shadow: 0 1px 1px #F2F9FF inset;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
|
@ -855,25 +872,23 @@ ul.cplist {
|
||||||
/* Link styles for the sub-section links */
|
/* Link styles for the sub-section links */
|
||||||
#navigation a {
|
#navigation a {
|
||||||
color: #333;
|
color: #333;
|
||||||
background: #B4C4D1;
|
background: #CADCEB; /* Old browsers */
|
||||||
background: -moz-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
|
background: -moz-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%); /* FF3.6+ */
|
||||||
background: -webkit-gradient(left top, right top, color-stop(50%, #B4C4D1), color-stop(100%, #CADCEB));
|
background: -webkit-gradient(linear, left top, right top, color-stop(50%,#B4C4D1), color-stop(100%,#CADCEB)); /* Chrome,Safari4+ */
|
||||||
background: -webkit-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
|
background: -webkit-linear-gradient(left, #B4C4D1 50%,#CADCEB 100%); /* Chrome10+,Safari5.1+ */
|
||||||
background: -o-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
|
background: -o-linear-gradient(left, #B4C4D1 50%,#CADCEB 100%); /* Opera 11.10+ */
|
||||||
background: -ms-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
|
background: linear-gradient(to right, #B4C4D1 50%,#CADCEB 100%); /* W3C */
|
||||||
background: linear-gradient(to right, #B4C4D1 50%, #CADCEB 100%);
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B4C4D1', endColorstr='#CADCEB',GradientType=1 ); /* IE6-9 */
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B4C4D1', endColorstr='#CADCEB', GradientType=1 );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.rtl #navigation a {
|
.rtl #navigation a {
|
||||||
background: #B4C4D1;
|
background: #B4C4D1; /* Old browsers */
|
||||||
background: -moz-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
|
background: -moz-linear-gradient(left, #CADCEB 50%, #B4C4D1 100%); /* FF3.6+ */
|
||||||
background: -webkit-gradient(left top, right top, color-stop(0%, #CADCEB), color-stop(50%, #B4C4D1));
|
background: -webkit-gradient(linear, left top, right top, color-stop(50%,#CADCEB), color-stop(100%,#B4C4D1)); /* Chrome,Safari4+ */
|
||||||
background: -webkit-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
|
background: -webkit-linear-gradient(left, #CADCEB 50%,#B4C4D1 100%); /* Chrome10+,Safari5.1+ */
|
||||||
background: -o-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
|
background: -o-linear-gradient(left, #CADCEB 50%,#B4C4D1 100%); /* Opera 11.10+ */
|
||||||
background: -ms-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
|
background: linear-gradient(to right, #CADCEB 50%,#B4C4D1 100%); /* W3C */
|
||||||
background: linear-gradient(to right, #CADCEB 0%, #B4C4D1 50%);
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#CADCEB', endColorstr='#B4C4D1',GradientType=1 ); /* IE6-9 */
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#CADCEB', endColorstr='#B4C4D1', GradientType=1 );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#navigation a:hover {
|
#navigation a:hover {
|
||||||
|
@ -1060,8 +1075,13 @@ fieldset.quick-login input.inputbox {
|
||||||
|
|
||||||
a.button1, input.button1, input.button3, a.button2, input.button2 {
|
a.button1, input.button1, input.button3, a.button2, input.button2 {
|
||||||
color: #000;
|
color: #000;
|
||||||
background-color: #FAFAFA;
|
background-color: #EFEFEF; /* Old browsers */
|
||||||
background-image: url("./images/bg_button.gif");
|
background-image: -moz-linear-gradient(top, #D2D2D2 0%, #EFEFEF 100%); /* FF3.6+ */
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#D2D2D2), color-stop(100%,#EFEFEF)); /* Chrome,Safari4+ */
|
||||||
|
background-image: -webkit-linear-gradient(top, #D2D2D2 0%,#EFEFEF 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background-image: -o-linear-gradient(top, #D2D2D2 0%,#EFEFEF 100%); /* Opera 11.10+ */
|
||||||
|
background-image: linear-gradient(to bottom, #D2D2D2 0%,#EFEFEF 100%); /* W3C */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#D2D2D2', endColorstr='#EFEFEF',GradientType=0 ); /* IE6-9 */
|
||||||
}
|
}
|
||||||
|
|
||||||
a.button1, input.button1 {
|
a.button1, input.button1 {
|
||||||
|
@ -1084,8 +1104,15 @@ a.button1, a.button2 {
|
||||||
|
|
||||||
/* Hover states */
|
/* Hover states */
|
||||||
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
|
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
|
||||||
border-color: #BC2A4D;
|
border-color: #D31141;
|
||||||
color: #BC2A4D;
|
color: #D31141;
|
||||||
|
background-color: #D2D2D2; /* Old browsers */
|
||||||
|
background-image: -moz-linear-gradient(top, #EFEFEF 0%, #D2D2D2 100%); /* FF3.6+ */
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#EFEFEF), color-stop(100%,#D2D2D2)); /* Chrome,Safari4+ */
|
||||||
|
background-image: -webkit-linear-gradient(top, #EFEFEF 0%,#D2D2D2 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background-image: -o-linear-gradient(top, #EFEFEF 0%,#D2D2D2 100%); /* Opera 11.10+ */
|
||||||
|
background-image: linear-gradient(to bottom, #EFEFEF 0%,#D2D2D2 100%); /* W3C */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EFEFEF', endColorstr='#D2D2D2',GradientType=0 ); /* IE6-9 */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Focus states */
|
/* Focus states */
|
||||||
|
@ -1140,13 +1167,13 @@ input.disabled {
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-extended .header {
|
.dropdown-extended .header {
|
||||||
background: #F1F8FF;
|
background-color: #F1F8FF; /* Old browsers */
|
||||||
background: -moz-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%);
|
background-image: -moz-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%); /* FF3.6+ */
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F1F8FF), color-stop(100%, #CADCEB));
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F1F8FF), color-stop(100%,#CADCEB)); /* Chrome,Safari4+ */
|
||||||
background: -webkit-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%);
|
background-image: -webkit-linear-gradient(top, #F1F8FF 0%,#CADCEB 100%); /* Chrome10+,Safari5.1+ */
|
||||||
background: -o-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%);
|
background-image: -o-linear-gradient(top, #F1F8FF 0%,#CADCEB 100%); /* Opera 11.10+ */
|
||||||
background: -ms-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%);
|
background-image: linear-gradient(to bottom, #F1F8FF 0%,#CADCEB 100%); /* W3C */
|
||||||
background: linear-gradient(to bottom, #F1F8FF 0%, #CADCEB 100%);
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F1F8FF', endColorstr='#CADCEB',GradientType=0 ); /* IE6-9 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown .pointer {
|
.dropdown .pointer {
|
||||||
|
|
|
@ -177,7 +177,6 @@ ol ol ul, ol ul ul, ul ol ul, ul ul ul {
|
||||||
/* Round cornered boxes and backgrounds
|
/* Round cornered boxes and backgrounds
|
||||||
---------------------------------------- */
|
---------------------------------------- */
|
||||||
.headerbar {
|
.headerbar {
|
||||||
background: transparent none repeat-x 0 0;
|
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 7px;
|
border-radius: 7px;
|
||||||
|
@ -189,7 +188,6 @@ ol ol ul, ol ul ul, ul ol ul, ul ul ul {
|
||||||
}
|
}
|
||||||
|
|
||||||
.forabg {
|
.forabg {
|
||||||
background: transparent none repeat-x 0 0;
|
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
@ -197,7 +195,6 @@ ol ol ul, ol ul ul, ul ol ul, ul ul ul {
|
||||||
}
|
}
|
||||||
|
|
||||||
.forumbg {
|
.forumbg {
|
||||||
background: transparent none repeat-x 0 0;
|
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
|
@ -7,10 +7,6 @@ ul.topiclist {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.forums {
|
|
||||||
background: transparent none repeat-x 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul.topiclist li {
|
ul.topiclist li {
|
||||||
display: block;
|
display: block;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
|
|
@ -353,7 +353,6 @@ a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.but
|
||||||
/* Hover states */
|
/* Hover states */
|
||||||
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
|
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
background-position: 0 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input.disabled {
|
input.disabled {
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 182 B |
Binary file not shown.
Before Width: | Height: | Size: 549 B |
Loading…
Add table
Reference in a new issue