Skip to content

Commit cb4eb77

Browse files
committed
Fix lint:css
1 parent fd3ab8b commit cb4eb77

14 files changed

+60
-65
lines changed

.stylelintrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.stylelintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22

33
module.exports = {
44
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
5+
rules: {
6+
'selector-class-pattern': null,
7+
},
58
};

app/styles/app.css

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
@import "components/addon-tabs.css";
2-
@import "components/brand-logos.css";
3-
@import "components/ecosystem-icons.css";
4-
@import "components/cta-emberconf.css";
5-
@import "components/faqs.css";
6-
@import "components/homepage-image-grid.css";
7-
@import "components/homepage-hero-callout.css";
8-
@import "components/lts-table.css";
9-
@import "components/release-timeline.css";
10-
@import "components/survey-section.css";
11-
@import "components/surveys.css";
12-
@import "components/team-list.css";
13-
@import "components/terminal-code.css";
14-
@import "components/callout-banner.css";
15-
@import "legacy/form.css";
1+
@import url("components/addon-tabs.css");
2+
@import url("components/brand-logos.css");
3+
@import url("components/ecosystem-icons.css");
4+
@import url("components/cta-emberconf.css");
5+
@import url("components/faqs.css");
6+
@import url("components/homepage-image-grid.css");
7+
@import url("components/homepage-hero-callout.css");
8+
@import url("components/lts-table.css");
9+
@import url("components/release-timeline.css");
10+
@import url("components/survey-section.css");
11+
@import url("components/surveys.css");
12+
@import url("components/team-list.css");
13+
@import url("components/terminal-code.css");
14+
@import url("components/callout-banner.css");
15+
@import url("legacy/form.css");
1616

1717
@media only percy {
1818
.hide-in-percy {

app/styles/components/addon-tabs.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
.addon-tabs {
2-
background: linear-gradient(0deg, rgba(52, 55, 62, 1) 0%, rgba(66, 69, 77, 1) 100%);
2+
background: linear-gradient(
3+
0deg,
4+
rgb(52 55 62 / 100%) 0%,
5+
rgb(66 69 77 / 100%) 100%
6+
);
37
border-radius: 15px;
4-
box-shadow: 0 5px 15px -10px rgba(0, 0, 0, 0.75);
8+
box-shadow: 0 5px 15px -10px rgb(0 0 0 / 75%);
59
min-height: 364px;
610
width: 100%;
711
}

app/styles/components/brand-logos.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
.brand-logos > li {
1515
border: 1px solid rgba($black, 0.3);
16-
background-image: url('/images/brand/brand-bg.png');
16+
background-image: url("/images/brand/brand-bg.png");
1717
border-radius: 4px;
1818
padding: 1rem 1.5rem;
1919
}
@@ -27,5 +27,5 @@
2727
}
2828

2929
.brand-logos > li:nth-child(3) {
30-
background-color: rgba(199, 52, 31, 0.9);
30+
background-color: rgb(199 52 31 / 90%);
3131
}

app/styles/components/callout-banner.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323

2424
.callout-banner a + a::before {
25-
content: '';
25+
content: "";
2626
width: 3px;
2727
height: 3px;
2828
background: white;

app/styles/components/cta-emberconf.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
margin-top: 1rem;
2828
}
2929

30-
@media screen and (min-width: 450px) {
30+
@media screen and (width >= 450px) {
3131
.emberconf-announcement {
3232
padding-top: 3rem;
3333
margin-top: -5rem;

app/styles/components/ecosystem-icons.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
margin: auto;
1818
}
1919

20-
@media (max-width: 1007px) {
20+
@media (width <= 1007px) {
2121
.ecosystem-icons {
2222
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
2323
width: inherit;

app/styles/components/homepage-hero-callout.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222

2323
.hero-callout-text > a:link {
24-
color: #74B0CE;
24+
color: #74b0ce;
2525
background: none;
2626
text-decoration: underline;
2727
}

app/styles/components/homepage-image-grid.css

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@
2727
}
2828

2929
.homepage-image-grid__img-tall-bottom {
30-
grid-row-start: 2;
31-
grid-row-end: 5;
30+
grid-row: 2 / 5;
3231
}
3332

3433
.homepage-image-grid__img-tall-top {
35-
grid-row-start: 1;
36-
grid-row-end: 4;
34+
grid-row: 1 / 4;
3735
}
3836

3937
.homepage-image-grid__img-short {
@@ -45,13 +43,13 @@
4543
width: max-content;
4644
}
4745

48-
[class*=well-] img {
49-
width: auto;
50-
}
51-
52-
/* IN ht estyleguides */
53-
5446
img {
5547
max-width: 100%;
5648
height: auto;
5749
}
50+
51+
[class*="well-"] img {
52+
width: auto;
53+
}
54+
55+
/* IN ht estyleguides */

0 commit comments

Comments
 (0)