Skip to content

Commit 81e1942

Browse files
Remove unnecesary css rules
1 parent 40b23ca commit 81e1942

File tree

9 files changed

+0
-45
lines changed

9 files changed

+0
-45
lines changed

resources/todomvc/vanilla-examples/javascript-web-components-complex/dist/components/todo-bottombar/todo-bottombar.component.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ import bottombarStyles from "../../styles/bottombar.constructable.js";
55

66
const customStyles = new CSSStyleSheet();
77
customStyles.replaceSync(`
8-
.bottombar {
9-
display: block;
10-
}
11-
128
:host([total-items="0"]) > .bottombar {
139
display: none;
1410
}

resources/todomvc/vanilla-examples/javascript-web-components-complex/dist/components/todo-list/todo-list.component.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ import listStyles from "../../styles/todo-list.constructable.js";
66

77
const customListStyles = new CSSStyleSheet();
88
customListStyles.replaceSync(`
9-
.todo-list > todo-item {
10-
display: block;
11-
}
12-
139
.todo-list[route="completed"] > [itemcompleted="false"] {
1410
display: none;
1511
}
@@ -18,10 +14,6 @@ customListStyles.replaceSync(`
1814
display: none;
1915
}
2016
21-
.todo-list {
22-
display: block;
23-
}
24-
2517
:host([total-items="0"]) > .todo-list {
2618
display: none;
2719
}

resources/todomvc/vanilla-examples/javascript-web-components-complex/dist/components/todo-topbar/todo-topbar.component.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ import topbarStyles from "../../styles/topbar.constructable.js";
77

88
const customListStyles = new CSSStyleSheet();
99
customListStyles.replaceSync(`
10-
.toggle-all-container {
11-
display: block;
12-
}
1310
:host([total-items="0"]) .toggle-all-container {
1411
display: none;
1512
}

resources/todomvc/vanilla-examples/javascript-web-components/dist/src/components/todo-bottombar/todo-bottombar.component.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ import bottombarStyles from "../../../styles/bottombar.constructable.js";
55

66
const customStyles = new CSSStyleSheet();
77
customStyles.replaceSync(`
8-
.bottombar {
9-
display: block;
10-
}
11-
128
:host([total-items="0"]) > .bottombar {
139
display: none;
1410
}

resources/todomvc/vanilla-examples/javascript-web-components/dist/src/components/todo-list/todo-list.component.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ import listStyles from "../../../styles/todo-list.constructable.js";
66

77
const customListStyles = new CSSStyleSheet();
88
customListStyles.replaceSync(`
9-
.todo-list > todo-item {
10-
display: block;
11-
}
12-
139
.todo-list[route="completed"] > [itemcompleted="false"] {
1410
display: none;
1511
}
@@ -18,10 +14,6 @@ customListStyles.replaceSync(`
1814
display: none;
1915
}
2016
21-
.todo-list {
22-
display: block;
23-
}
24-
2517
:host([total-items="0"]) > .todo-list {
2618
display: none;
2719
}

resources/todomvc/vanilla-examples/javascript-web-components/dist/src/components/todo-topbar/todo-topbar.component.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ import topbarStyles from "../../../styles/topbar.constructable.js";
77

88
const customListStyles = new CSSStyleSheet();
99
customListStyles.replaceSync(`
10-
.toggle-all-container {
11-
display: block;
12-
}
1310
:host([total-items="0"]) .toggle-all-container {
1411
display: none;
1512
}

resources/todomvc/vanilla-examples/javascript-web-components/src/components/todo-bottombar/todo-bottombar.component.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ import bottombarStyles from "../../../node_modules/todomvc-css/dist/bottombar.co
55

66
const customStyles = new CSSStyleSheet();
77
customStyles.replaceSync(`
8-
.bottombar {
9-
display: block;
10-
}
11-
128
:host([total-items="0"]) > .bottombar {
139
display: none;
1410
}

resources/todomvc/vanilla-examples/javascript-web-components/src/components/todo-list/todo-list.component.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ import listStyles from "../../../node_modules/todomvc-css/dist/todo-list.constru
66

77
const customListStyles = new CSSStyleSheet();
88
customListStyles.replaceSync(`
9-
.todo-list > todo-item {
10-
display: block;
11-
}
12-
139
.todo-list[route="completed"] > [itemcompleted="false"] {
1410
display: none;
1511
}
@@ -18,10 +14,6 @@ customListStyles.replaceSync(`
1814
display: none;
1915
}
2016
21-
.todo-list {
22-
display: block;
23-
}
24-
2517
:host([total-items="0"]) > .todo-list {
2618
display: none;
2719
}

resources/todomvc/vanilla-examples/javascript-web-components/src/components/todo-topbar/todo-topbar.component.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ import topbarStyles from "../../../node_modules/todomvc-css/dist/topbar.construc
77

88
const customListStyles = new CSSStyleSheet();
99
customListStyles.replaceSync(`
10-
.toggle-all-container {
11-
display: block;
12-
}
1310
:host([total-items="0"]) .toggle-all-container {
1411
display: none;
1512
}

0 commit comments

Comments
 (0)