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

Unified Diff: remoting/webapp/main.css

Issue 12842013: Search & replace of -webkit-box-shadow -> box-shadow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
« no previous file with comments | « no previous file | remoting/webapp/menu_button.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/main.css
diff --git a/remoting/webapp/main.css b/remoting/webapp/main.css
index 5b48cee5503a47c77a7c06b01a9bda88d609d752..f64f845914243acd457572a26cc49a9714983425 100644
--- a/remoting/webapp/main.css
+++ b/remoting/webapp/main.css
@@ -145,29 +145,29 @@ button[disabled], button[disabled]:hover, button[disabled]:active {
padding-top:100px;
background-clip:padding-box;
background-color: rgba(0,0,0,0.2);
- -webkit-box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10),
- inset 0px -1px 0px rgba(0,0,0,0.07);
+ box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10),
+ inset 0px -1px 0px rgba(0,0,0,0.07);
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0,0,0,0.4);
- -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.25);
+ box-shadow: inset 1px 1px 1px rgba(0,0,0,0.25);
}
::-webkit-scrollbar-thumb:active {
- -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35);
+ box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35);
background-color: rgba(0,0,0,0.5);
}
::-webkit-scrollbar-track:hover {
background-color:rgba(0,0,0,0.05);
- -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.10);
+ box-shadow: inset 1px 0px 0px rgba(0,0,0,0.10);
}
::-webkit-scrollbar-track:active {
background-color:rgba(0,0,0,0.05);
- -webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14),
- inset -1px -1px 0px rgba(0,0,0,0.07);
+ box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14),
+ inset -1px -1px 0px rgba(0,0,0,0.07);
}
::-webkit-scrollbar-track-piece {
@@ -191,11 +191,11 @@ input[type=text]:hover,
input[type=password]:hover {
border: 1px solid #b9b9b9;
border-top: 1px solid #a0a0a0;
- -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
}
input[type=text]:focus,
input[type=password]:focus {
- -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
outline: none;
border: 1px solid #4d90fe;
}
@@ -209,7 +209,7 @@ Component: Modal Dialog
}
.kd-modaldialog {
- -webkit-box-shadow: 0 4px 16px rgba(0,0,0,0.2);
+ box-shadow: 0 4px 16px rgba(0,0,0,0.2);
background: white;
outline:1px solid rgba(0,0,0,0.2);
padding:30px 42px;
@@ -369,7 +369,7 @@ section {
background-color: #f9edbe;
border: 1px solid #f0c36d;
-webkit-border-radius: 2px;
- -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
+ box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
color: #222;
padding: 8px 16px;
text-align: center;
@@ -568,7 +568,7 @@ button {
#session-mode {
position: absolute;
- -webkit-box-shadow: 0 0 8px 0 black;
+ box-shadow: 0 0 8px 0 black;
-webkit-user-select: none;
}
« no previous file with comments | « no previous file | remoting/webapp/menu_button.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698