You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2017/06/18 16:32:33 UTC

svn commit: r1799103 - /comdev/reporter.apache.org/trunk/site/css/tabs.css

Author: humbedooh
Date: Sun Jun 18 16:32:33 2017
New Revision: 1799103

URL: http://svn.apache.org/viewvc?rev=1799103&view=rev
Log:
refactor tabs CSS to make them independent of background color

Modified:
    comdev/reporter.apache.org/trunk/site/css/tabs.css

Modified: comdev/reporter.apache.org/trunk/site/css/tabs.css
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/css/tabs.css?rev=1799103&r1=1799102&r2=1799103&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/css/tabs.css (original)
+++ comdev/reporter.apache.org/trunk/site/css/tabs.css Sun Jun 18 16:32:33 2017
@@ -25,7 +25,6 @@ a {
 #dialog {
     position: relative;
     display: inline-block;
-    background: #eee;
     width: 90%;
     max-width: 1600px;
     min-width: 1200px;
@@ -33,27 +32,29 @@ a {
 }
 
 .tabs {
+    margin-left: 2px;
     border-top-left-radius: 3px;
     border-top-right-radius: 3px;
     float: left;
     height: 36px;
     width: 100%;
+    background: none;
     text-align: center;
-    background: #456;
 }
 
 .tablink {
-    background: linear-gradient(to bottom, #eeeeee 0%,#d5d5d5 100%);
+    background: linear-gradient(to bottom, #FAFAFA 0%,#dfdfdf 100%);
     color: #555;
     padding-top: 10px;
     float: left;
     height: 26px;
     min-width: 110px;
     text-align: center;
-    border-right: 4px solid #456;
+    margin-right: 4px;
     box-shadow: inset 0px -1px 2px rgba(0,0,0,0.75);
 }
 
+
 .tablink:first-child {
     border-top-left-radius: 5px;
 }
@@ -66,24 +67,25 @@ a {
 
 .tablink_selected {
     border-bottom: none;
-    box-shadow: none;
+    box-shadow: 2px -2px 2px rgba(0,0,0,0.25);
     cursor: default;
     color: #338;
-    background: #eee;
+    background: #FAFAFA;
 }
 
 .bread {
-    
+    box-shadow: 2px -2px 2px rgba(0,0,0,0.25);
     margin: 0 auto;
     padding:8px;
+    margin-top: 36px;
     width: calc(100% - 20px);
-    background: #eee;
+    background: #FAFAFA;
     text-align: left;
 }
 
 h2 {
     text-align: center;
-    padding-top: 28px;
+    padding-top: 0px;
     margin-bottom: 8px;
 }