forked from mirrors/gecko-dev
Fix a bug where VS Code's eslint integration does not work for the newtab project because of a conflict caused by sass-lint's eslint dependency. Switching over to stylelint eliminates that dependency and generally modernizes our SCSS linting. stylelint doesn't have a 1 to 1 replacement for every sass-lint rule, so a few rules have been changed. Differential Revision: https://phabricator.services.mozilla.com/D173605
117 lines
2.4 KiB
SCSS
117 lines
2.4 KiB
SCSS
.SnippetBaseContainer {
|
|
position: fixed;
|
|
z-index: 2;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: var(--newtab-background-color-secondary);
|
|
color: var(--newtab-text-primary-color);
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
border-top: 1px solid transparent;
|
|
box-shadow: $shadow-secondary;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
a {
|
|
cursor: pointer;
|
|
color: var(--newtab-primary-action-background);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
[lwt-newtab-brighttext] & {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
input {
|
|
&[type='checkbox'] {
|
|
margin-inline-start: 0;
|
|
}
|
|
}
|
|
|
|
.innerWrapper {
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px $section-horizontal-padding;
|
|
// This is to account for the block button on smaller screens
|
|
padding-inline-end: 36px;
|
|
max-width: $wrapper-max-width-large + ($section-horizontal-padding * 2);
|
|
|
|
@media (min-width: $break-point-large) {
|
|
padding-inline-end: $section-horizontal-padding;
|
|
}
|
|
|
|
@media (min-width: $break-point-widest) {
|
|
max-width: $wrapper-max-width-widest + ($section-horizontal-padding * 2);
|
|
}
|
|
}
|
|
|
|
.blockButton {
|
|
display: none;
|
|
background: none;
|
|
border: 0;
|
|
position: absolute;
|
|
top: 20px;
|
|
inset-inline-end: 12px;
|
|
height: 16px;
|
|
width: 16px;
|
|
background-image: url('chrome://global/skin/icons/close.svg');
|
|
-moz-context-properties: fill;
|
|
color: inherit;
|
|
fill: currentColor;
|
|
opacity: 0.5;
|
|
margin-top: -8px;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&:hover .blockButton {
|
|
display: block;
|
|
}
|
|
|
|
.icon {
|
|
height: 42px;
|
|
width: 42px;
|
|
margin-inline-end: 12px;
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
.snippets-preview-banner {
|
|
font-size: 15px;
|
|
line-height: 42px;
|
|
color: var(--newtab-text-primary-color);
|
|
background: var(--newtab-background-color-secondary);
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
|
|
span {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
// We show snippet icons for both themes and conditionally hide
|
|
// based on which theme is currently active
|
|
body {
|
|
&:not([lwt-newtab-brighttext]) {
|
|
.icon-dark-theme,
|
|
.icon.icon-dark-theme,
|
|
.scene2Icon .icon-dark-theme {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&[lwt-newtab-brighttext] {
|
|
.icon-light-theme,
|
|
.icon.icon-light-theme,
|
|
.scene2Icon .icon-light-theme {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|