Commit:    b00017e929f42017c48ce383370a1f906f4b11d9
Author:    Levi Morrison <[email protected]>         Sun, 15 Dec 2013 15:46:05 -0700
Parents:   1606e798e8021e2849f93e5cfdde543bd1f01580
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=b00017e929f42017c48ce383370a1f906f4b11d9

Log:
Standard some colors.

Changed paths:
  M  styles/theme-base.css
  M  styles/theme-medium.css


Diff:
diff --git a/styles/theme-base.css b/styles/theme-base.css
index b3c7ddd..77ed250 100755
--- a/styles/theme-base.css
+++ b/styles/theme-base.css
@@ -1073,7 +1073,7 @@ table.standard tr:nth-child(even) td.sub,
 table.standard tr:nth-child(even) th.sub,
 table.standard tr td.sub,
 table.standard tr th.sub {
-    background: #eeeef6;
+    background: #E3E3F1;
 }
 
 table.standard td.subr,
@@ -1481,12 +1481,8 @@ fieldset {
 .downloads .content-header,
 .refsect1 h3.title {
   padding:0.333333333em 0.444444444em;
-  border-radius:0 0 2px 2px;
   border-top:2px solid #669;
-  border-bottom:1px solid #D2D2D9;
-  box-shadow:
-    inset 2px 0 2px -2px #D2D2D9,
-    inset -2px 0 2px -2px #D2D2D9;
+  border-bottom:1px solid;
 }
 .refsect1 > *:last-child {
     margin-bottom:0;
@@ -2117,74 +2113,24 @@ aside.tips div.inner {
 /* {{{ Flash message */
 #flash-message {
   height: auto;
-  list-style-type: none;
-  margin: 0;
-  padding: 0;
   margin-top: 4px;
   position: fixed;
   width: 100%;
-  z-index: 9999999;
-  cursor: pointer;
+  z-index: 95;
   text-align: center;
-  opacity: 0.9;
-}
-
-#flash-message > div{
-  display: none;
-}
-
-#flash-message > div[id] {
-  display: block;
-}
-
-#flash-message .message:last-child {
   box-shadow: 0 0.25em 0.25em rgba(0, 0, 0, 0.1);
-  z-index: -1;
 }
 
 #flash-message .message {
-  margin: 0;
-  padding: 0;
+  cursor: pointer;
   text-align: center;
   position: relative;
-  font-weight: 700;
-  font-size: 1.125em;
-  border-bottom-width: 1px;
-  border-bottom-style: solid;
+  border-bottom:1px solid;
+  padding:.25em;
 }
 
 #flash-message .message a {
-  color:#fff;
-  text-decoration: none;
-  border-bottom: 1px dotted #fff;
-  font-weight: bold;
-}
-
-#flash-message .success {
-  background-color: #DFF0D8;
-  border-color: #D6E9C6;
-  color: #3C763D;
-}
-
-#flash-message .error {
-  background-color: #F2DEDE;
-  border-color: #EBCCD1;
-  color: #A94442;
-}
-
-#flash-message .warning {
-  background-color: #FCF8E3;
-  border-color: #FAEBCC;
-  color: #8A6D3B;
-}
-#flash-message .warning a {
-  color: #826200 !important;
-  border-bottom: 1px dotted #826200;
-}
-
-#flash-message .info {
-  background-color: #D9EDF7;
-  border-color: #BCE8F1;
-  color: #31708F;
+  border-style: dotted;
+  font-weight: bolder;
 }
 /* }}} */
diff --git a/styles/theme-medium.css b/styles/theme-medium.css
index bfa8912..a2936e6 100755
--- a/styles/theme-medium.css
+++ b/styles/theme-medium.css
@@ -2,7 +2,7 @@
  *
  *  COLORS:       | HEX     |
  * ---------------+---------+
- *  light-purple  | #ebebf2 |
+ *  light-purple  | #E3E3F1 |
  * ---------------+---------+
  *  medium-purple | #9999cc |
  * ---------------+---------+
@@ -17,7 +17,7 @@ html {
 }
 
 body {
-  background:#ebebf2;
+  background:#E3E3F1;
   color: #262626;
 }
 #layout-content {
@@ -111,7 +111,13 @@ h1.refname {
 .downloads .content-header,
 .refsect1 h3.title {
   color: #446;
-  background: #ebebf2;
+  background: #E3E3F1;
+  border-radius:0 0 2px 2px;
+  border-color:#C6C6E2;
+  border-top-color:#669;
+  box-shadow:
+    inset 2px 0 2px -2px #C6C6E2,
+    inset -2px 0 2px -2px #C6C6E2
 }
 
 .methodname b,
@@ -133,14 +139,19 @@ h1.refname {
 
 
 /* {{{ Warnings, Tips and Notes */
+#flash-message .success {
+  background:#E6F2D9;
+  border-color: #CCE6B3;
+}
+#flash-message .info,
 div.tip {
-  background:#ECF2F9;
-  border-color: #CDDEEE;
-  border-bottom-color:#C6D9EC;
+  background:#D9E6F2;
+  border-color: #B3CCE6;
+  border-bottom-color:#9FBFDF;
 }
 blockquote.note {
-  background-color: #eee;
-  border-color: #d5d5d5;
+  background-color: #F2F2F2;
+  border-color: #CCC;
 }
 div.caution {
   background: #fcfce9;
@@ -151,18 +162,21 @@ div.caution {
   background:#fff;
   border-color: #e5e6e9;
 }
+#flash-message .error,
 div.warning {
-  background:#f9ecf2;
-  border-color: #eecdde;
+  background:#F4DFDF;
+  border-color: #EABFBF;
 }
+#flash-message .error a,
+div.warning a:link,
+div.warning a:visited,
 div.warning h2,
 div.warning h3 {
   color:#936;
 }
-div.warning a:link,
-div.warning a:visited {
-  color:#936;
-}
+#flash-message .success a,
+#flash-message a:hover,
+#flash-message a:focus,
 div.warning a:hover,
 div.warning a:focus {
   color:#693;
@@ -251,7 +265,7 @@ div.warning:before {
   background-color: #ffffff;
 }
 .doctable tbody tr:nth-child(even) {
-  background-color: #ebebf2;
+  background-color: #E3E3F1;
 }
 /* }}} */


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to