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

Unified Diff: remoting/webapp/me2mom/choice.css

Issue 8511077: Fixed css to make host list prettier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
Index: remoting/webapp/me2mom/choice.css
diff --git a/remoting/webapp/me2mom/choice.css b/remoting/webapp/me2mom/choice.css
index eedc11f460ff67fb4f78134227c6ba428c232ecb..22da18da1cec90f2dc842e933440b49c57768287 100644
--- a/remoting/webapp/me2mom/choice.css
+++ b/remoting/webapp/me2mom/choice.css
@@ -56,7 +56,6 @@ button[disabled], .button[disabled]:hover {
h1 {
font-size: 24px;
font-weight: normal;
- margin-__MSG_@@bidi_start_edge__: 10px;
}
label {
@@ -91,6 +90,11 @@ label {
text-align: center;
}
+.collapsed {
+ opacity: 0;
+ height: 0 !important;
+}
+
.choice-header {
font-size: 24px;
font-weight: normal;
@@ -133,6 +137,7 @@ label {
.icon-label {
display: inline-block;
vertical-align: top;
+ margin-__MSG_@@bidi_start_edge__: 10px;
}
.information-box {
@@ -180,6 +185,56 @@ label {
overflow-y: hidden;
}
+.host-list-container {
+ -webkit-transition: all 0.5s;
+ overflow: hidden;
+}
+
+.host-list-table {
+ margin-__MSG_@@bidi_start_edge__: 30px;
+ width: 610px; /* width + margin = body width */
+ border-spacing: 0;
+}
+
+.host-list-row {
+ height: 50px;
+ color: black;
+}
+
+.host-list-row, .host-list-row td {
+ -webkit-transition: all 0.5s;
+}
+
+.host-list-row td {
+ border-bottom: 1px solid transparent;
+ border-top: 1px solid transparent;
+}
+
+.host-list-row:hover {
+ background-color: #e7eef2;
+}
+
+.host-list-row:hover td {
+ border-bottom: 1px solid #c6c6c6;
+ border-top: 1px solid #c6c6c6;
+}
+
+.host-list-row-end {
+ padding-__MSG_@@bidi_end_edge__: 10px;
+}
+
+.host-list-row-start {
+ padding-__MSG_@@bidi_start_edge__: 10px;
+}
+
+.host-offline {
+ color: #a9a9a9;
+}
+
+.host-offline img {
+ opacity: 0.5;
+}
+
.small-print {
font-size: 13px;
color: #AAA;

Powered by Google App Engine
This is Rietveld 408576698