| Index: chrome/browser/resources/aura/app_list/app_list.css
|
| diff --git a/chrome/browser/resources/aura/app_list/app_list.css b/chrome/browser/resources/aura/app_list/app_list.css
|
| index 7148b623cef484674e414f1d8794805d14f6e855..025543410f44f0fc714665d206e857cb69bc1b6b 100644
|
| --- a/chrome/browser/resources/aura/app_list/app_list.css
|
| +++ b/chrome/browser/resources/aura/app_list/app_list.css
|
| @@ -21,38 +21,26 @@ body {
|
| color: white;
|
| font-size: 14px;
|
| font-weight: bold;
|
| + padding: 2px; /* Extra padding for text-shadow. */
|
| text-shadow: 0 0 2px black, 0 0 4px black;
|
| }
|
|
|
| -#launcher-search-container {
|
| - position: relative;
|
| - z-index: 5;
|
| -}
|
| -
|
| -#launcher-search,
|
| -#launcher-search::-webkit-input-placeholder {
|
| - color: white;
|
| -}
|
| -
|
| -#launcher-search {
|
| - -webkit-padding-start: 10px;
|
| - -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
|
| - background-color: rgba(0, 0, 0, 0.2);
|
| - border: none;
|
| - font-size: 14px;
|
| - height: 34px;
|
| - min-width: 384px;
|
| - outline: 1px solid rgba(0, 0, 0, 0.1);
|
| +#container {
|
| + height: 550px;
|
| + left: 50%;
|
| + margin-top: -225px;
|
| + margin-left: -450px;
|
| + position: absolute;
|
| + top: 50%;
|
| + width: 900px;
|
| }
|
|
|
| #card-slider-frame {
|
| - /* Must match #footer height. 0 because footer is hidden.*/
|
| - bottom: 0;
|
| + /* Must match #footer height. */
|
| + bottom: 50px;
|
| overflow: hidden;
|
| - /* We want this to fill the window except for the region used
|
| - by footer */
|
| - position: fixed;
|
| - top: 0;
|
| + position: absolute;
|
| + height: 500px;
|
| width: 100%;
|
| }
|
|
|
| @@ -63,10 +51,9 @@ body {
|
| }
|
|
|
| #footer {
|
| - background-image: -webkit-linear-gradient(
|
| - rgba(242, 242, 242, 0.9), rgba(222, 222, 222, 0.9));
|
| + background: transparent;
|
| bottom: 0;
|
| - position: fixed;
|
| + position: absolute;
|
| width: 100%;
|
| z-index: 5;
|
| }
|
| @@ -76,3 +63,28 @@ body {
|
| display: -webkit-box;
|
| height: 49px;
|
| }
|
| +
|
| +.dot .selection-bar {
|
| + border-color: rgba(0x7F, 0x7F, 0x7F, 0.2);
|
| +}
|
| +
|
| +.dot input {
|
| + color: #7f7f7f;
|
| + font-size: 12px;
|
| +}
|
| +
|
| +.dot:focus input,
|
| +.dot:hover input,
|
| +.dot.selected input {
|
| + color: white;
|
| +}
|
| +
|
| +.dot:focus .selection-bar,
|
| +.dot:hover .selection-bar,
|
| +.dot.drag-target .selection-bar {
|
| + border-color: #b2b2b2;
|
| +}
|
| +
|
| +.dot.selected .selection-bar {
|
| + border-color: #7f7f7f;
|
| +}
|
|
|