Search & replace of -webkit-box-shadow -> box-shadow

Webkit has supported unprefixed box-shadow since December 2010:
http://peter.sh/2010/12/no-more-delete-unprefixed-box-shadows-and-a-have-happy-new-year/

BUG=


Review URL: https://chromiumcodereview.appspot.com/12842013

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192665 0039d316-1c4b-4281-b951-d872f2087c98
parent 056efdce
...@@ -145,29 +145,29 @@ button[disabled], button[disabled]:hover, button[disabled]:active { ...@@ -145,29 +145,29 @@ button[disabled], button[disabled]:hover, button[disabled]:active {
padding-top:100px; padding-top:100px;
background-clip:padding-box; background-clip:padding-box;
background-color: rgba(0,0,0,0.2); background-color: rgba(0,0,0,0.2);
-webkit-box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10), box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10),
inset 0px -1px 0px rgba(0,0,0,0.07); inset 0px -1px 0px rgba(0,0,0,0.07);
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background-color: rgba(0,0,0,0.4); 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-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); background-color: rgba(0,0,0,0.5);
} }
::-webkit-scrollbar-track:hover { ::-webkit-scrollbar-track:hover {
background-color:rgba(0,0,0,0.05); 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 { ::-webkit-scrollbar-track:active {
background-color:rgba(0,0,0,0.05); background-color:rgba(0,0,0,0.05);
-webkit-box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14), box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14),
inset -1px -1px 0px rgba(0,0,0,0.07); inset -1px -1px 0px rgba(0,0,0,0.07);
} }
::-webkit-scrollbar-track-piece { ::-webkit-scrollbar-track-piece {
...@@ -191,11 +191,11 @@ input[type=text]:hover, ...@@ -191,11 +191,11 @@ input[type=text]:hover,
input[type=password]:hover { input[type=password]:hover {
border: 1px solid #b9b9b9; border: 1px solid #b9b9b9;
border-top: 1px solid #a0a0a0; 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=text]:focus,
input[type=password]: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; outline: none;
border: 1px solid #4d90fe; border: 1px solid #4d90fe;
} }
...@@ -209,7 +209,7 @@ Component: Modal Dialog ...@@ -209,7 +209,7 @@ Component: Modal Dialog
} }
.kd-modaldialog { .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; background: white;
outline:1px solid rgba(0,0,0,0.2); outline:1px solid rgba(0,0,0,0.2);
padding:30px 42px; padding:30px 42px;
...@@ -369,7 +369,7 @@ section { ...@@ -369,7 +369,7 @@ section {
background-color: #f9edbe; background-color: #f9edbe;
border: 1px solid #f0c36d; border: 1px solid #f0c36d;
-webkit-border-radius: 2px; -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; color: #222;
padding: 8px 16px; padding: 8px 16px;
text-align: center; text-align: center;
...@@ -607,7 +607,7 @@ button { ...@@ -607,7 +607,7 @@ button {
#session-mode { #session-mode {
position: absolute; position: absolute;
-webkit-box-shadow: 0 0 8px 0 black; box-shadow: 0 0 8px 0 black;
-webkit-user-select: none; -webkit-user-select: none;
} }
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
background-color: #EEE; background-color: #EEE;
background-image: -webkit-gradient(linear, left top, left bottom, background-image: -webkit-gradient(linear, left top, left bottom,
from(#EEE), to(#E0E0E0)); from(#EEE), to(#E0E0E0));
-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);
border: 1px solid #CCC; border: 1px solid #CCC;
color: #333; color: #333;
} }
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
background: white; background: white;
outline: 1px solid rgba(0, 0, 0, 0.2); outline: 1px solid rgba(0, 0, 0, 0.2);
padding: 0 0 6px; padding: 0 0 6px;
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
z-index: 1; z-index: 1;
} }
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
border-bottom-left-radius: 7px; border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px; border-bottom-right-radius: 7px;
background-color: #4695ff; background-color: #4695ff;
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
pointer-events: all; pointer-events: all;
clip: rect(0, 999px, 999px, -999px); clip: rect(0, 999px, 999px, -999px);
-webkit-transition: height 0.15s ease; -webkit-transition: height 0.15s ease;
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
width: 620px; width: 620px;
padding: 10px 7px 5px 7px; padding: 10px 7px 5px 7px;
background-color: #e9e9e9; background-color: #e9e9e9;
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
pointer-events: all; pointer-events: all;
display: -webkit-box; display: -webkit-box;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment