Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: gm/rebaseline_server/static/view.css

Issue 264853004: tweaks to tab CSS for rebaseline server page; moar pretty (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gm/rebaseline_server/static/view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/rebaseline_server/static/view.css
diff --git a/gm/rebaseline_server/static/view.css b/gm/rebaseline_server/static/view.css
index 6520611e54379123f9b56197aad66b8624dfb91c..82eda618e09967e6b0cd6f9acbdaebd51a69c2f8 100644
--- a/gm/rebaseline_server/static/view.css
+++ b/gm/rebaseline_server/static/view.css
@@ -6,18 +6,36 @@
background-color: #ffbb00;
}
+.tab-wrapper {
+ margin-top: 10px;
+}
+
+.tab {
+ display: inline-block;
+ font-size: 20px;
+ padding: 5px;
+ border-top-left-radius: 5px;
+ border-top-right-radius: 5px;
+ position: relative;
+}
+
/* Tab which has been selected. */
.tab-true {
background-color: #ccccff;
- display: inline-block;
- font-size: 20px;
+ border: 1px solid black;
+ border-bottom-width: 0px;
+ bottom: -1px;
}
/* All other tabs. */
.tab-false {
background-color: #8888ff;
- display: inline-block;
- font-size: 20px;
+ cursor: pointer;
}
+
+.tab-false:hover {
+ background-color: #aa88ff;
+}
+
/* Spacers between tabs. */
.tab-spacer {
display: inline-block;
@@ -25,6 +43,7 @@
/* The main working area (connected to the selected tab). */
.tab-main {
background-color: #ccccff;
+ border: 1px solid black;
}
.update-results-button {
« no previous file with comments | « no previous file | gm/rebaseline_server/static/view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698