Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: pages/contributors.html

Issue 29334775: Issue 2873 - Making contributor tables responsive (Closed)
Patch Set: Fixed whitespace Created Feb. 5, 2016, 1:31 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pages/contributors.html
diff --git a/pages/contributors.html b/pages/contributors.html
index 205726ccf843d7a8beac381efb4c8eb9d2f8deaa..d17d8c9d0d2404364fc86a5faf9af1b8d771323b 100644
--- a/pages/contributors.html
+++ b/pages/contributors.html
@@ -70,6 +70,30 @@ h3
{
padding: 5px 5px;
}
+
+@media(max-width: 980px) {
+ #content
+ {
+ width: auto;
+ }
+ section
+ {
+ display: block;
+ margin: 0px;
+ }
+ .contributors-table
+ {
+ width: 100%;
+ display: table;
saroyanm 2016/02/05 14:49:58 What about not changing the display value at all ?
juliandoucette 2016/02/05 18:38:24 Done.
+ }
+ .contributors-table td
+ {
+ font-size: 12px;
saroyanm 2016/02/05 14:49:57 I would avoid introducing similar cosmetic fixes,
juliandoucette 2016/02/05 18:38:24 Done.
+ min-width: inherit;
saroyanm 2016/02/05 14:49:57 Deatail: I think no need to inherit initial value,
juliandoucette 2016/02/05 18:38:24 Done.
+ width: 50%;
+ }
+}
+
</style>
</head>
<section id="team">
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld