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

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

Issue 8587050: Implement rename and delete. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
« no previous file with comments | « remoting/resources/icon_pencil.png ('k') | remoting/webapp/me2mom/choice.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/me2mom/choice.css
diff --git a/remoting/webapp/me2mom/choice.css b/remoting/webapp/me2mom/choice.css
index c74e07b1037ad64cd4c9e708d4250f72537c7def..839524ae5fe6ab1e278bf239d0896f66339f8fa4 100644
--- a/remoting/webapp/me2mom/choice.css
+++ b/remoting/webapp/me2mom/choice.css
@@ -110,6 +110,10 @@ label {
padding-bottom: 20px;
}
+.clickable {
+ cursor: pointer;
+}
+
.description {
margin-bottom: 25px;
}
@@ -201,10 +205,6 @@ label {
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;
@@ -214,6 +214,26 @@ label {
background-color: #e7eef2;
}
+.host-list-rename-icon, .host-list-remove-icon {
+ opacity: 0;
+}
+
+.host-list-row:hover .host-list-rename-icon {
+ opacity: 0.8;
+}
+
+.host-list-row:hover .host-list-remove-icon {
+ opacity: 0.3;
+}
+
+.host-list-edit:hover .host-list-rename-icon {
+ opacity: 1;
+}
+
+.host-list-edit:hover .host-list-remove-icon {
+ opacity: 0.5;
+}
+
.host-list-row:hover td {
border-bottom: 1px solid #c6c6c6;
border-top: 1px solid #c6c6c6;
@@ -231,7 +251,7 @@ label {
color: #a9a9a9;
}
-.host-offline img {
+.host-offline .host-list-main-icon {
opacity: 0.5;
}
« no previous file with comments | « remoting/resources/icon_pencil.png ('k') | remoting/webapp/me2mom/choice.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698