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

Unified Diff: remoting/webapp/app_remoting/html/context_menu.css

Issue 1816653002: Remove app_remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: remoting/webapp/app_remoting/html/context_menu.css
diff --git a/remoting/webapp/app_remoting/html/context_menu.css b/remoting/webapp/app_remoting/html/context_menu.css
deleted file mode 100644
index ba3e0c1d750db55fed2914f61282655debc3c5a5..0000000000000000000000000000000000000000
--- a/remoting/webapp/app_remoting/html/context_menu.css
+++ /dev/null
@@ -1,125 +0,0 @@
-/* Copyright 2014 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#context-menu {
- position: fixed;
- bottom: 0; /* The vertical position is controlled by context_menu_dom.js */
- left: -48px;
- background-color: #c4c4c4;
- border: 1px solid #a6a6a6;
- z-index: 101;
- transition-property: left;
- transition-duration: 0.3s;
- box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
- opacity: 0.8;
-}
-
-#context-menu:hover,
-#context-menu.opened,
-#context-menu.menu-opened {
- left: 0;
- opacity: 1;
-}
-
-.no-gaps {
- font-size: 0;
-}
-
-.context-menu-icon {
- margin-top: 2px;
-}
-
-.context-menu-icon:hover,
-.context-menu-stub:hover {
- background-color: #d5d5d5;
-}
-
-#context-menu.opened .context-menu-stub,
-.context-menu-icon:active {
- background-color: #a6a6a6;
-}
-
-.context-menu-stub {
- display: inline-block;
- width: 12px;
- height: 50px;
- background: url("drag.webp");
- cursor: move;
-}
-
-.etched {
- position: relative;
-}
-
-.etched:after {
- content: "";
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- border-left: 1px solid rgba(255, 255, 255, 0.2);
- border-top: 1px solid rgba(255, 255, 255, 0.2);
-}
-
-#context-menu ul {
- visibility: hidden;
- position: absolute;
- left: 24px;
- padding: 0;
- margin: 0;
- list-style-type: none;
- background: white;
- outline: 1px solid rgba(0, 0, 0, 0.2);
- padding: 0 0 6px;
- box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
- z-index: 102;
-}
-
-#context-menu ul.menu-align-bottom {
- bottom: 24px;
-}
-
-#context-menu ul:not(.menu-align-bottom) {
- top: 24px;
-}
-
-#context-menu ul.opened {
- visibility: visible;
-}
-
-#context-menu li {
- padding: 6px 44px 6px 30px;
- white-space: nowrap;
-}
-
-#context-menu li:hover {
- background-color: #EEE;
-}
-
-#context-menu li.selected {
- background-image: url('tick.webp');
- background-position: left center;
- background-repeat: no-repeat;
-}
-
-#context-menu li.menu-group-header {
- pointer-events: none;
- font-style: italic;
- color: gray;
-}
-
-#context-menu li.menu-group-item {
- margin-left: 16px;
-}
-
-.context-menu-screen {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 100;
-}
« no previous file with comments | « remoting/webapp/app_remoting/html/cloud_print_dialog.css ('k') | remoting/webapp/app_remoting/html/context_menu.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698