mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
879 lines
17 KiB
CSS
879 lines
17 KiB
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
input {
|
|
font: message-box !important;
|
|
font-size: 16px !important;
|
|
}
|
|
|
|
input[type=button] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* SCROLLBOX */
|
|
#newtab-scrollbox {
|
|
display: -moz-box;
|
|
position: relative;
|
|
-moz-box-flex: 1;
|
|
-moz-user-focus: normal;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
#newtab-scrollbox:not([page-disabled]) {
|
|
overflow: auto;
|
|
}
|
|
|
|
/* UNDO */
|
|
#newtab-undo-container {
|
|
transition: opacity 100ms ease-out;
|
|
display: -moz-box;
|
|
-moz-box-align: center;
|
|
-moz-box-pack: center;
|
|
}
|
|
|
|
#newtab-undo-container[undo-disabled] {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* CUSTOMIZE */
|
|
#newtab-customize-button {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 20px;
|
|
z-index: 101;
|
|
}
|
|
|
|
#newtab-customize-button:-moz-locale-dir(rtl) {
|
|
left: 20px;
|
|
right: auto;
|
|
}
|
|
|
|
#newtab-intro-what {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: 70px;
|
|
top: 20px;
|
|
display: none;
|
|
}
|
|
|
|
#newtab-intro-what:-moz-locale-dir(rtl) {
|
|
left: 70px;
|
|
right: auto;
|
|
}
|
|
|
|
#newtab-scrollbox[page-disabled] #newtab-intro-what {
|
|
display: none;
|
|
}
|
|
|
|
#newtab-intro-panel {
|
|
color: #6a7b86;
|
|
font-size: 15px;
|
|
line-height: 19px;
|
|
width: 520px;
|
|
}
|
|
|
|
#newtab-intro-panel h1 {
|
|
color: #343f48;
|
|
font-family: Open Sans, sans-serif;
|
|
font-size: 30px;
|
|
margin: 20px;
|
|
}
|
|
|
|
#newtab-intro-panel p {
|
|
margin: 10px 20px;
|
|
}
|
|
|
|
#newtab-intro-panel p:last-child {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
#newtab-intro-what:hover,
|
|
#newtab-intro-panel a {
|
|
color: #4a90e2;
|
|
}
|
|
|
|
/* MARGINS */
|
|
#newtab-vertical-margin {
|
|
display: -moz-box;
|
|
position: relative;
|
|
-moz-box-flex: 1;
|
|
-moz-box-orient: vertical;
|
|
}
|
|
|
|
#newtab-margin-undo-container {
|
|
display: -moz-box;
|
|
left: 6px;
|
|
position: absolute;
|
|
top: 6px;
|
|
z-index: 1;
|
|
}
|
|
|
|
#newtab-margin-undo-container:-moz-locale-dir(rtl) {
|
|
left: auto;
|
|
right: 6px;
|
|
}
|
|
|
|
#newtab-horizontal-margin {
|
|
display: -moz-box;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
#newtab-margin-top,
|
|
#newtab-margin-bottom {
|
|
display: -moz-box;
|
|
position: relative;
|
|
}
|
|
|
|
#newtab-margin-top {
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
#newtab-margin-bottom {
|
|
-moz-box-flex: 2;
|
|
}
|
|
|
|
.newtab-side-margin {
|
|
min-width: 10px;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
/* GRID */
|
|
#newtab-grid {
|
|
-moz-box-flex: 5;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
transition: 100ms ease-out;
|
|
transition-property: opacity;
|
|
}
|
|
|
|
#newtab-grid[page-disabled] {
|
|
opacity: 0;
|
|
}
|
|
|
|
#newtab-grid[locked],
|
|
#newtab-grid[page-disabled] {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* CELLS */
|
|
.newtab-cell,
|
|
.newtab-intro-cell,
|
|
.newtab-intro-cell-hover {
|
|
display: -moz-box;
|
|
height: 210px;
|
|
margin: 20px 10px 35px;
|
|
width: 290px;
|
|
}
|
|
|
|
.newtab-intro-cell-wrapper {
|
|
margin-top: -12px;
|
|
}
|
|
|
|
.newtab-intro-cell,
|
|
.newtab-intro-cell-hover {
|
|
margin: 0;
|
|
}
|
|
|
|
/* SITES */
|
|
.newtab-site {
|
|
position: relative;
|
|
-moz-box-flex: 1;
|
|
transition: 100ms ease-out;
|
|
transition-property: top, left, opacity;
|
|
}
|
|
|
|
.newtab-site[frozen] {
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.newtab-site[dragged] {
|
|
transition-property: none;
|
|
z-index: 10;
|
|
}
|
|
|
|
/* LINK + THUMBNAILS */
|
|
.newtab-link,
|
|
.newtab-thumbnail {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
/* TITLES */
|
|
.newtab-sponsored,
|
|
.newtab-title,
|
|
.newtab-suggested {
|
|
overflow: hidden;
|
|
position: absolute;
|
|
right: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.newtab-sponsored,
|
|
.newtab-title {
|
|
bottom: 0;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
font-size: 13px;
|
|
line-height: 30px;
|
|
vertical-align: middle;
|
|
background-color: #F2F2F2;
|
|
}
|
|
|
|
.newtab-suggested {
|
|
border: 1px solid transparent;
|
|
border-radius: 2px;
|
|
font-size: 12px;
|
|
height: 17px;
|
|
line-height: 17px;
|
|
margin-bottom: -1px;
|
|
padding: 2px 8px;
|
|
display: none;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
left: 0;
|
|
top: 215px;
|
|
-moz-user-select: none;
|
|
}
|
|
|
|
.newtab-suggested-bounds {
|
|
max-height: 34px; /* 34 / 17 = 2 lines maximum */
|
|
}
|
|
|
|
.newtab-title {
|
|
left: 0;
|
|
}
|
|
|
|
.newtab-sponsored {
|
|
border: 1px solid #dcdcdc;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
display: none;
|
|
font-family: Arial;
|
|
font-size: 10px;
|
|
height: 17px;
|
|
line-height: 17px;
|
|
margin: 5px;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.newtab-sponsored:-moz-any(:hover, [active]) {
|
|
background-color: #3a72b1;
|
|
border: 0;
|
|
color: white;
|
|
}
|
|
|
|
.newtab-sponsored:-moz-locale-dir(rtl) {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
.newtab-site:-moz-any([type=enhanced], [type=sponsored], [suggested]) .newtab-sponsored {
|
|
display: block;
|
|
}
|
|
|
|
.newtab-site[suggested] .newtab-suggested {
|
|
display: table;
|
|
}
|
|
|
|
.sponsored-explain,
|
|
.sponsored-explain a,
|
|
.suggested-explain,
|
|
.suggested-explain a {
|
|
color: white;
|
|
}
|
|
|
|
.sponsored-explain,
|
|
.suggested-explain {
|
|
background-color: rgba(51, 51, 51, 0.95);
|
|
bottom: 30px;
|
|
line-height: 20px;
|
|
padding: 15px 10px;
|
|
position: absolute;
|
|
text-align: start;
|
|
}
|
|
|
|
#newtab-intro-panel input,
|
|
.sponsored-explain input,
|
|
.suggested-explain input {
|
|
background-size: 18px;
|
|
height: 18px;
|
|
opacity: 1;
|
|
pointer-events: none;
|
|
position: static;
|
|
width: 18px;
|
|
}
|
|
|
|
/* CONTROLS */
|
|
.newtab-control {
|
|
position: absolute;
|
|
top: 4px;
|
|
opacity: 0;
|
|
transition: opacity 100ms ease-out;
|
|
}
|
|
|
|
.newtab-control:-moz-focusring,
|
|
.newtab-cell:not([ignorehover]) > .newtab-site:hover > .newtab-control,
|
|
.newtab-intro-cell-hover .newtab-control {
|
|
opacity: 1;
|
|
}
|
|
|
|
.newtab-control[dragged] {
|
|
opacity: 0 !important;
|
|
}
|
|
|
|
@media (-moz-touch-enabled) {
|
|
.newtab-control {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.newtab-control-pin:-moz-locale-dir(ltr),
|
|
.newtab-control-block:-moz-locale-dir(rtl) {
|
|
left: 4px;
|
|
}
|
|
|
|
.newtab-control-block:-moz-locale-dir(ltr),
|
|
.newtab-control-pin:-moz-locale-dir(rtl) {
|
|
right: 4px;
|
|
}
|
|
|
|
/* DRAG & DROP */
|
|
|
|
/*
|
|
* This is just a temporary drag element used for dataTransfer.setDragImage()
|
|
* so that we can use custom drag images and elements. It needs an opacity of
|
|
* 0.01 so that the core code detects that it's in fact a visible element.
|
|
*/
|
|
.newtab-drag {
|
|
width: 1px;
|
|
height: 1px;
|
|
background-color: #fff;
|
|
opacity: 0.01;
|
|
}
|
|
|
|
/* SEARCH */
|
|
#newtab-search-container {
|
|
display: -moz-box;
|
|
position: relative;
|
|
-moz-box-align: center;
|
|
-moz-box-pack: center;
|
|
}
|
|
|
|
#newtab-search-container[page-disabled] {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#newtab-search-form {
|
|
display: -moz-box;
|
|
-moz-box-flex: 1;
|
|
-moz-box-orient: horizontal;
|
|
-moz-box-align: center;
|
|
height: 44px; /* 32 + 6 logo top "padding" + 6 logo bottom "padding" */
|
|
margin: 26px 20px 10px; /* top: 32 - 6 search form top "padding", bottom: 32 - 16 tiles top margin - 6 logo bottom "padding" */
|
|
max-width: 600px; /* 2 * (290 cell width + 10 cell margin) */
|
|
}
|
|
|
|
#newtab-search-logo {
|
|
display: -moz-box;
|
|
width: 38px;
|
|
height: 38px; /* 26 image height + 6 top "padding" + 6 bottom "padding" */
|
|
border: 1px solid transparent;
|
|
-moz-margin-end: 8px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-image: url(chrome://global/skin/icons/autocomplete-search.svg#search-icon);
|
|
background-size: 26px 26px;
|
|
}
|
|
|
|
#newtab-search-logo.magnifier {
|
|
width: 38px; /* 26 image width + 6 left "padding" + 6 right "padding" */
|
|
-moz-margin-end: 5px;
|
|
background-size: 26px;
|
|
background-image: url("chrome://browser/skin/magnifier.png");
|
|
}
|
|
|
|
@media not all and (max-resolution: 1dppx) {
|
|
#newtab-search-logo.magnifier {
|
|
background-image: url("chrome://browser/skin/magnifier@2x.png");
|
|
}
|
|
}
|
|
|
|
#newtab-search-logo[type="logo"] {
|
|
background-size: 65px 26px;
|
|
width: 77px; /* 65 image width + 6 left "padding" + 6 right "padding" */
|
|
}
|
|
|
|
#newtab-search-logo[type="favicon"] {
|
|
background-size: 16px 16px;
|
|
}
|
|
|
|
#newtab-search-logo[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
#newtab-search-logo[active],
|
|
#newtab-search-logo:hover {
|
|
background-color: #e9e9e9;
|
|
border: 1px solid rgb(226, 227, 229);
|
|
border-radius: 2.5px;
|
|
}
|
|
|
|
#newtab-search-text {
|
|
height: 38px; /* same height as #newtab-search-logo */
|
|
-moz-box-flex: 1;
|
|
|
|
padding: 0 8px;
|
|
background: hsla(0,0%,100%,.9) padding-box;
|
|
border: 1px solid;
|
|
border-color: hsla(210,54%,20%,.15) hsla(210,54%,20%,.17) hsla(210,54%,20%,.2);
|
|
box-shadow: 0 1px 0 hsla(210,65%,9%,.02) inset,
|
|
0 0 2px hsla(210,65%,9%,.1) inset,
|
|
0 1px 0 hsla(0,0%,100%,.2);
|
|
border-radius: 2.5px 0 0 2.5px;
|
|
color: inherit;
|
|
}
|
|
|
|
#newtab-search-text:-moz-dir(rtl) {
|
|
border-radius: 0 2.5px 2.5px 0;
|
|
}
|
|
|
|
#newtab-search-text:focus,
|
|
#newtab-search-text[autofocus] {
|
|
border-color: hsla(206,100%,60%,.6) hsla(206,76%,52%,.6) hsla(204,100%,40%,.6);
|
|
}
|
|
|
|
#newtab-search-submit {
|
|
height: 38px; /* same height as #newtab-search-logo */
|
|
font-size: 13px !important;
|
|
|
|
-moz-margin-start: -1px;
|
|
background: linear-gradient(hsla(0,0%,100%,.8), hsla(0,0%,100%,.1)) padding-box;
|
|
padding: 0 9px;
|
|
border: 1px solid;
|
|
border-color: hsla(210,54%,20%,.15) hsla(210,54%,20%,.17) hsla(210,54%,20%,.2);
|
|
-moz-border-start: 1px solid transparent;
|
|
border-radius: 0 2.5px 2.5px 0;
|
|
box-shadow: 0 0 2px hsla(0,0%,100%,.5) inset,
|
|
0 1px 0 hsla(0,0%,100%,.2);
|
|
color: inherit;
|
|
cursor: pointer;
|
|
transition-property: background-color, border-color, box-shadow;
|
|
transition-duration: 150ms;
|
|
}
|
|
|
|
#newtab-search-submit:-moz-dir(rtl) {
|
|
border-radius: 2.5px 0 0 2.5px;
|
|
}
|
|
|
|
#newtab-search-text:focus + #newtab-search-submit,
|
|
#newtab-search-text + #newtab-search-submit:hover,
|
|
#newtab-search-text[autofocus] + #newtab-search-submit {
|
|
border-color: #59b5fc #45a3e7 #3294d5;
|
|
color: white;
|
|
}
|
|
|
|
#newtab-search-text:focus + #newtab-search-submit,
|
|
#newtab-search-text[autofocus] + #newtab-search-submit {
|
|
background-image: linear-gradient(#4cb1ff, #1793e5);
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.2) inset,
|
|
0 0 0 1px hsla(0,0%,100%,.1) inset,
|
|
0 1px 0 hsla(210,54%,20%,.03);
|
|
}
|
|
|
|
#newtab-search-text + #newtab-search-submit:hover {
|
|
background-image: linear-gradient(#66bdff, #0d9eff);
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.2) inset,
|
|
0 0 0 1px hsla(0,0%,100%,.1) inset,
|
|
0 1px 0 hsla(210,54%,20%,.03),
|
|
0 0 4px hsla(206,100%,20%,.2);
|
|
}
|
|
|
|
#newtab-search-text + #newtab-search-submit:hover:active {
|
|
box-shadow: 0 1px 1px hsla(211,79%,6%,.1) inset,
|
|
0 0 1px hsla(211,79%,6%,.2) inset;
|
|
transition-duration: 0ms;
|
|
}
|
|
|
|
#newtab-customize-overlay {
|
|
opacity: 0;
|
|
display: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #F9F9F9;
|
|
z-index: 100;
|
|
position: fixed;
|
|
transition: opacity .07s linear;
|
|
}
|
|
|
|
#newtab-customize-panel {
|
|
z-index: 101;
|
|
margin-top: -5px;
|
|
min-width: 270px;
|
|
}
|
|
|
|
#newtab-customize-title {
|
|
color: #7A7A7A;
|
|
font-size: 14px;
|
|
background-color: #FFFFFF;
|
|
height: 52px;
|
|
line-height: 52px;
|
|
padding-left: 15px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
cursor: default;
|
|
border-radius: 5px 5px 0px 0px;
|
|
}
|
|
|
|
#newtab-customize-title > label {
|
|
cursor: default;
|
|
}
|
|
|
|
#newtab-customize-panel > .panel-arrowcontainer > .panel-arrowcontent,
|
|
#newtab-search-panel > .panel-arrowcontainer > .panel-arrowcontent {
|
|
padding: 0;
|
|
}
|
|
|
|
.newtab-customize-panel-item,
|
|
.newtab-search-panel-engine,
|
|
#newtab-search-manage {
|
|
line-height: 54px;
|
|
padding-left: 40px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.newtab-customize-panel-item:not(:last-child),
|
|
.newtab-search-panel-engine {
|
|
border-bottom: 1px solid threedshadow;
|
|
}
|
|
|
|
.newtab-search-panel-engine > image {
|
|
-moz-margin-end: 8px;
|
|
width: 16px;
|
|
height: 16px;
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
|
|
}
|
|
|
|
.newtab-customize-panel-subitem > label,
|
|
.newtab-customize-panel-item > label,
|
|
.newtab-search-panel-engine > label,
|
|
#newtab-search-manage > label,
|
|
.newtab-customize-complex-option {
|
|
padding: 0;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.newtab-customize-panel-item,
|
|
.newtab-customize-complex-option {
|
|
width: 100%;
|
|
}
|
|
|
|
.newtab-customize-panel-item:not([selected]),
|
|
.newtab-customize-panel-subitem:not([selected]){
|
|
color: #7A7A7A;
|
|
}
|
|
|
|
.newtab-customize-panel-item:not([selected]):hover {
|
|
color: #FFFFFF;
|
|
background-color: #4A90E2
|
|
}
|
|
|
|
.newtab-customize-complex-option:hover > .selectable:not([selected]),
|
|
.selectable:not([selected]):hover {
|
|
background: url("chrome://global/skin/menu/shared-menu-check-hover.svg") no-repeat #FFFFFF;
|
|
background-size: 16px 16px;
|
|
background-position: 15px 15px;
|
|
color: #171F26;
|
|
}
|
|
|
|
.newtab-customize-complex-option:hover > .selectable:not([selected]) + .newtab-customize-panel-subitem {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.newtab-customize-panel-item[selected],
|
|
.newtab-search-panel-engine[selected] {
|
|
background: url("chrome://global/skin/menu/shared-menu-check-active.svg") no-repeat transparent;
|
|
background-size: 16px 16px;
|
|
background-position: 15px 15px;
|
|
color: black;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.newtab-customize-panel-subitem > .checkbox {
|
|
width: 18px;
|
|
height: 18px;
|
|
background-color: #FFFFFF;
|
|
border: solid 1px threedshadow;
|
|
}
|
|
|
|
.newtab-customize-panel-subitem[selected] > .checkbox {
|
|
background: url("chrome://global/skin/menu/shared-menu-check-black.svg") no-repeat #FFFFFF;
|
|
background-size: 9px 9px;
|
|
background-position: center;
|
|
color: #333333;
|
|
}
|
|
|
|
.newtab-customize-panel-subitem {
|
|
font-size: 12px;
|
|
padding-left: 40px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 1px solid threedshadow;
|
|
}
|
|
|
|
.newtab-customize-panel-subitem > label {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.newtab-customize-panel-superitem {
|
|
line-height: 14px;
|
|
border-bottom: medium none !important;
|
|
padding: 15px 0px 10px 40px;
|
|
}
|
|
|
|
.searchSuggestionTable {
|
|
font: message-box;
|
|
font-size: 16px;
|
|
}
|
|
|
|
/**
|
|
* Onboarding styling
|
|
*/
|
|
|
|
#newtab-intro-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #424F5A;
|
|
z-index:102;
|
|
background-color: rgba(66,79,90,0.95);
|
|
transition: opacity .5s linear;
|
|
overflow: auto;
|
|
display: none;
|
|
}
|
|
|
|
#newtab-intro-modal {
|
|
font-family: "Helvetica";
|
|
width: 700px;
|
|
height: 500px;
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
background: linear-gradient(#FFFFFF, #F9F9F9);
|
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
|
|
border-radius: 8px 8px 0px 0px;
|
|
}
|
|
|
|
#newtab-intro-header {
|
|
font-size: 28px;
|
|
color: #737980;
|
|
text-align: center;
|
|
top: 50px;
|
|
position: relative;
|
|
border-bottom: 2px solid #E0DFE0;
|
|
padding-bottom: 10px;
|
|
width: 600px;
|
|
display: block;
|
|
margin: 0px auto;
|
|
font-weight: 100;
|
|
}
|
|
|
|
#newtab-intro-header .bold {
|
|
font-weight: 500;
|
|
color: #343F48;
|
|
}
|
|
|
|
#newtab-intro-footer {
|
|
width: 100%;
|
|
height: 55px;
|
|
margin: 0px auto;
|
|
display: block;
|
|
position: absolute;
|
|
bottom: 0px;
|
|
background-color: white;
|
|
box-shadow: 0 -1px 4px -1px #EBEBEB;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
line-height: 55px;
|
|
}
|
|
|
|
#newtab-intro-footer > ul {
|
|
list-style-type: none;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
#newtab-intro-footer > ul > li {
|
|
display: inline;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
#newtab-intro-footer > ul > li > a {
|
|
text-decoration: none;
|
|
color: #4A90E2;
|
|
}
|
|
|
|
#newtab-intro-footer > ul > li > a:visited {
|
|
color: #171F26;
|
|
}
|
|
|
|
#newtab-intro-footer > ul > :first-child {
|
|
border-right: solid 1px #C1C1C1;
|
|
}
|
|
|
|
#newtab-intro-body {
|
|
height: 300px;
|
|
position: relative;
|
|
display: block;
|
|
top: 50px;
|
|
margin: 25px 50px 30px;
|
|
}
|
|
|
|
#newtab-intro-content > * {
|
|
display: inline-block;
|
|
}
|
|
|
|
#newtab-intro-content {
|
|
height: 210px;
|
|
position: relative;
|
|
}
|
|
|
|
#newtab-intro-buttons {
|
|
height: 90px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
line-height: 90px;
|
|
}
|
|
|
|
#newtab-intro-tile {
|
|
width: 290px;
|
|
height: 100%;
|
|
}
|
|
|
|
#newtab-intro-text,
|
|
#newtab-intro-image {
|
|
height: 100%;
|
|
width: 270px;
|
|
right: 0px;
|
|
position: absolute;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
margin-top: -12px;
|
|
}
|
|
|
|
#newtab-intro-image {
|
|
left: 0px;
|
|
right: auto;
|
|
}
|
|
|
|
.newtab-intro-image-tile {
|
|
}
|
|
|
|
.newtab-intro-image-customize {
|
|
display: block;
|
|
box-shadow: 3px 3px 5px #888;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.newtab-intro-image-customize .newtab-customize-panel-item:not([selected]):hover {
|
|
background-color: inherit;
|
|
color: #7A7A7A;
|
|
background: none;
|
|
}
|
|
|
|
#newtab-intro-text > p {
|
|
margin: 0 0 1em 0;
|
|
}
|
|
|
|
#newtab-intro-text .newtab-control {
|
|
background-size: 18px auto;
|
|
height: 18px;
|
|
width: 18px;
|
|
vertical-align: middle;
|
|
opacity: 1;
|
|
position: inherit;
|
|
}
|
|
|
|
#newtab-intro-buttons > input {
|
|
width: 150px;
|
|
height: 50px;
|
|
margin: 0px 5px;
|
|
vertical-align: bottom;
|
|
border-radius: 2px;
|
|
border: solid 1px #2C72E2;
|
|
background-color: #FFFFFF;
|
|
color: #4A90E2;
|
|
-moz-user-focus: normal;
|
|
}
|
|
|
|
#newtab-intro-buttons > input[default] {
|
|
background-color: #4A90E2;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
#newtab-intro-buttons > input:hover {
|
|
background-color: #2C72E2;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
#newtab-intro-progress {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
#newtab-intro-numerical-progress {
|
|
text-align: center;
|
|
top: 15px;
|
|
position: relative;
|
|
font-size: 12px;
|
|
color: #424F5A;
|
|
}
|
|
|
|
#newtab-intro-graphical-progress {
|
|
text-align: left;
|
|
border-radius: 1.5px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
margin: 10px auto 0px;
|
|
height: 3px;
|
|
top: 8px;
|
|
width: 35px;
|
|
background-color: #DCDCDC;
|
|
}
|
|
|
|
#indicator {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
display: inline-block;
|
|
width: 0%;
|
|
height: 4px;
|
|
background: none repeat scroll 0% 0% #FF9500;
|
|
transition: width 0.3s ease-in-out 0s;
|
|
}
|
|
|
|
#newtab-intro-numerical-progress[page="0"] + #newtab-intro-graphical-progress > #indicator {
|
|
width: 33%;
|
|
}
|
|
|
|
#newtab-intro-numerical-progress[page="1"] + #newtab-intro-graphical-progress > #indicator {
|
|
width: 66%;
|
|
}
|
|
|
|
#newtab-intro-numerical-progress[page="2"] + #newtab-intro-graphical-progress > #indicator {
|
|
width: 100%;
|
|
}
|