mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-04 03:01:23 -06:00
This is a catch-all PR that modernizes and updates our Stylelint config, and resolves all open issues. This is a pretty big change - so I want to update all of our related dependencies in lockstep. In particular, this PR - [x] updates stylelint to `v14` - [x] adds in the standard stylelint config for SCSS (`stylelint-config-standard-scss`) - [x] swaps out `stylelint-config-prettier` for `stylelint-config-prettier-scss` - [x] ~~properly update `@primer`-related plugins:~~ completely remove `primer` from our configuration - [x] autofix, manually resolve, or disable all newly-introduced lint errors; **I've avoided manually resolving errors that would be a behavioural change** - [x] re-runs `npm run format` See the "next steps" section on some extra thoughts on disabling errors. (implicitly, I'm also using node 16/the new package-lock format). ### disabling rules and next steps I've introduced several new disabled rules. Let me quickly explain what's going on; there are two categories of rules I've disabled: 1. rules that were temporary disables; they were frequent enough that I couldn't manually resolve them, but should be simple. **I plan on opening issues to re-enable each of these rules**, just after this PR - `declaration-block-no-redundant-longhand-properties`: this is just tedious and error-prone - `no-descending-specificity`: this one is tricky since it could have impacts on the cascade (though that seems unlikely) - `scss/no-global-function-names`: I think we need to [import map and then use `map.get`](https://stackoverflow.com/questions/64210390/sass-map-get-doesnt-work-map-get-does-what-gives), but I'll leave this as out of scope for now 2. rules that are long-term disables; due to the SASS-based nature of our theme, I think we'll keep these in limbo - `alpha-value-notation` causes problems with SASS using the `modern` syntax - literals like `50%` are not properly interpolated, and they cause formatting issues on the site - `color-function-notation` also causes problems with SASS, but in this case the `modern` syntax breaks SASS compilation; we're not alone (see this [SO post](https://stackoverflow.com/questions/71805735/error-function-rgb-is-missing-argument-green-in-sass)). In addition, we have many inline `stylelint-disable` comments. I'd open a separate issue to audit them, especially since I think some disables are unnecessary. ### on Primer **note: there hasn't been much other discussion, so I'm going to remove primer's stylelint config.** If I do add `@primer/stylelint-config`, I get *a ton* of errors about now using `@primer`'s in-built SCSS variables. I imagine that we probably won't want to use these presets (though I could be wrong). In that case, I think we could either: 1. disable all of those rules 4. not use `@primer/stylelint-config`, since we're not actually using primer, and shift back to the standard SCSS config provided by Stylelint ~~Any thoughts here? I also don't have the original context as to why we do use the primer rules, perhaps @pmarsceill can chime in?~~
323 lines
5.9 KiB
SCSS
323 lines
5.9 KiB
SCSS
// Search input and autocomplete
|
|
|
|
.search {
|
|
position: relative;
|
|
z-index: 2;
|
|
flex-grow: 1;
|
|
height: $sp-10;
|
|
padding: $sp-2;
|
|
transition: padding linear #{$transition-duration / 2};
|
|
|
|
@include mq(md) {
|
|
position: relative !important;
|
|
width: auto !important;
|
|
height: 100% !important;
|
|
padding: 0;
|
|
transition: none;
|
|
}
|
|
}
|
|
|
|
.search-input-wrap {
|
|
position: relative;
|
|
z-index: 1;
|
|
height: $sp-8;
|
|
overflow: hidden;
|
|
border-radius: $border-radius;
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
|
|
transition: height linear #{$transition-duration / 2};
|
|
|
|
@include mq(md) {
|
|
position: absolute;
|
|
width: 100%;
|
|
max-width: $search-results-width;
|
|
height: 100% !important;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
transition: width ease $transition-duration;
|
|
}
|
|
}
|
|
|
|
.search-input {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding-top: $sp-2;
|
|
padding-right: $gutter-spacing-sm;
|
|
padding-bottom: $sp-2;
|
|
padding-left: #{$gutter-spacing-sm + $sp-5};
|
|
font-size: 16px;
|
|
color: $body-text-color;
|
|
background-color: $search-background-color;
|
|
border-top: 0;
|
|
border-right: 0;
|
|
border-bottom: 0;
|
|
border-left: 0;
|
|
border-radius: 0;
|
|
|
|
@include mq(md) {
|
|
padding-top: $gutter-spacing-sm;
|
|
padding-bottom: $gutter-spacing-sm;
|
|
padding-left: #{$gutter-spacing + $sp-5};
|
|
font-size: 14px;
|
|
background-color: $body-background-color;
|
|
transition: padding-left linear #{$transition-duration / 2};
|
|
}
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
|
|
+ .search-label .search-icon {
|
|
color: $link-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-label {
|
|
position: absolute;
|
|
display: flex;
|
|
height: 100%;
|
|
padding-left: $gutter-spacing-sm;
|
|
|
|
@include mq(md) {
|
|
padding-left: $gutter-spacing;
|
|
transition: padding-left linear #{$transition-duration / 2};
|
|
}
|
|
|
|
.search-icon {
|
|
width: #{$sp-4 * 1.2};
|
|
height: #{$sp-4 * 1.2};
|
|
align-self: center;
|
|
color: $grey-dk-000;
|
|
}
|
|
}
|
|
|
|
.search-results {
|
|
position: absolute;
|
|
left: 0;
|
|
display: none;
|
|
width: 100%;
|
|
max-height: calc(100% - #{$sp-10});
|
|
overflow-y: auto;
|
|
background-color: $search-background-color;
|
|
border-bottom-right-radius: $border-radius;
|
|
border-bottom-left-radius: $border-radius;
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
|
|
|
|
@include mq(md) {
|
|
top: 100%;
|
|
width: $search-results-width;
|
|
max-height: calc(100vh - 200%) !important;
|
|
}
|
|
}
|
|
|
|
.search-results-list {
|
|
padding-left: 0;
|
|
margin-bottom: $sp-1;
|
|
list-style: none;
|
|
@include fs-4;
|
|
|
|
@include mq(md) {
|
|
@include fs-3;
|
|
}
|
|
}
|
|
|
|
.search-results-list-item {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.search-result {
|
|
display: block;
|
|
padding-top: $sp-1;
|
|
padding-right: $sp-3;
|
|
padding-bottom: $sp-1;
|
|
padding-left: $sp-3;
|
|
|
|
&:hover,
|
|
&.active {
|
|
background-color: $feedback-color;
|
|
}
|
|
}
|
|
|
|
.search-result-title {
|
|
display: block;
|
|
padding-top: $sp-2;
|
|
padding-bottom: $sp-2;
|
|
|
|
@include mq(sm) {
|
|
display: inline-block;
|
|
width: 40%;
|
|
padding-right: $sp-2;
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
|
|
.search-result-doc {
|
|
display: flex;
|
|
align-items: center;
|
|
word-wrap: break-word;
|
|
|
|
&.search-result-doc-parent {
|
|
opacity: 0.5;
|
|
@include fs-3;
|
|
|
|
@include mq(md) {
|
|
@include fs-2;
|
|
}
|
|
}
|
|
|
|
.search-result-icon {
|
|
width: $sp-4;
|
|
height: $sp-4;
|
|
margin-right: $sp-2;
|
|
color: $link-color;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.search-result-doc-title {
|
|
overflow: auto;
|
|
}
|
|
}
|
|
|
|
.search-result-section {
|
|
margin-left: #{$sp-4 + $sp-2};
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.search-result-rel-url {
|
|
display: block;
|
|
margin-left: #{$sp-4 + $sp-2};
|
|
overflow: hidden;
|
|
color: $search-result-preview-color;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
@include fs-1;
|
|
}
|
|
|
|
.search-result-previews {
|
|
display: block;
|
|
padding-top: $sp-2;
|
|
padding-bottom: $sp-2;
|
|
padding-left: $sp-4;
|
|
margin-left: $sp-2;
|
|
color: $search-result-preview-color;
|
|
word-wrap: break-word;
|
|
border-left: $border;
|
|
border-left-color: $border-color;
|
|
@include fs-2;
|
|
|
|
@include mq(sm) {
|
|
display: inline-block;
|
|
width: 60%;
|
|
padding-left: $sp-2;
|
|
margin-left: 0;
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
|
|
.search-result-preview + .search-result-preview {
|
|
margin-top: $sp-1;
|
|
}
|
|
|
|
.search-result-highlight {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.search-no-result {
|
|
padding-top: $sp-2;
|
|
padding-right: $sp-3;
|
|
padding-bottom: $sp-2;
|
|
padding-left: $sp-3;
|
|
@include fs-3;
|
|
}
|
|
|
|
.search-button {
|
|
position: fixed;
|
|
right: $sp-4;
|
|
bottom: $sp-4;
|
|
display: flex;
|
|
width: $sp-9;
|
|
height: $sp-9;
|
|
background-color: $search-background-color;
|
|
border: 1px solid rgba($link-color, 0.3);
|
|
border-radius: #{$sp-9 / 2};
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.search-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
width: 0;
|
|
height: 0;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
opacity: 0;
|
|
transition: opacity ease $transition-duration, width 0s $transition-duration,
|
|
height 0s $transition-duration;
|
|
}
|
|
|
|
.search-active {
|
|
.search {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.search-input-wrap {
|
|
height: $sp-10;
|
|
border-radius: 0;
|
|
|
|
@include mq(md) {
|
|
width: $search-results-width;
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
|
|
}
|
|
}
|
|
|
|
.search-input {
|
|
background-color: $search-background-color;
|
|
|
|
@include mq(md) {
|
|
padding-left: 2.3rem;
|
|
}
|
|
}
|
|
|
|
.search-label {
|
|
@include mq(md) {
|
|
padding-left: 0.6rem;
|
|
}
|
|
}
|
|
|
|
.search-results {
|
|
display: block;
|
|
}
|
|
|
|
.search-overlay {
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 1;
|
|
transition: opacity ease $transition-duration, width 0s, height 0s;
|
|
}
|
|
|
|
@include mq(md) {
|
|
.main {
|
|
position: fixed;
|
|
right: 0;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
.main-header {
|
|
padding-top: $sp-10;
|
|
|
|
@include mq(md) {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
}
|