Skip to content

Commit 814c49e

Browse files
authored
fix(well): missing semicolons in custom vars (#2163)
- Add missing semicolons to two custom properties added to custom-large-vars and custom-medium-vars - Cleans up formatting to remove/add some extra spaces on some other declarations with the custom CSS files.
1 parent d71c337 commit 814c49e

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

components/tokens/custom-express/custom-dark-vars.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ governing permissions and limitations under the License.
1313

1414
.spectrum--express.spectrum--dark {
1515
/* Drop Zone background color rgb */
16-
--spectrum-drop-zone-background-color-rgb: var( --spectrum-indigo-900-rgb); /* var(--spectrum-accent-color-900);*/
17-
--spectrum-well-border-color:rgba(var(--spectrum-white-rgb), 0.05);
16+
--spectrum-drop-zone-background-color-rgb: var(--spectrum-indigo-900-rgb); /* var(--spectrum-accent-color-900);*/
17+
--spectrum-well-border-color: rgba(var(--spectrum-white-rgb), 0.05);
1818
}

components/tokens/custom-express/custom-darkest-vars.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ governing permissions and limitations under the License.
1313

1414
.spectrum--express.spectrum--darkest {
1515
/* Drop Zone background color rgb */
16-
--spectrum-drop-zone-background-color-rgb: var( --spectrum-indigo-900-rgb); /* var(--spectrum-accent-color-900);*/
17-
--spectrum-well-border-color:rgba(var(--spectrum-white-rgb), 0.05);
16+
--spectrum-drop-zone-background-color-rgb: var(--spectrum-indigo-900-rgb); /* var(--spectrum-accent-color-900);*/
17+
--spectrum-well-border-color: rgba(var(--spectrum-white-rgb), 0.05);
1818
}

components/tokens/custom-express/custom-light-vars.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ governing permissions and limitations under the License.
1414
.spectrum--express.spectrum--light,
1515
.spectrum--express.spectrum--lightest {
1616
/* Drop Zone background color rgb */
17-
--spectrum-drop-zone-background-color-rgb: var( --spectrum-indigo-800-rgb); /* var(--spectrum-accent-color-800);*/
18-
--spectrum-well-border-color:rgba(var(--spectrum-black-rgb), 0.05);
17+
--spectrum-drop-zone-background-color-rgb: var(--spectrum-indigo-800-rgb); /* var(--spectrum-accent-color-800);*/
18+
--spectrum-well-border-color: rgba(var(--spectrum-black-rgb), 0.05);
1919
}

components/tokens/custom-spectrum/custom-dark-vars.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ governing permissions and limitations under the License.
3434
--spectrum-coach-indicator-ring-default-color: var(--spectrum-blue-700);
3535
--spectrum-coach-indicator-ring-dark-color: var(--spectrum-gray-900);
3636
--spectrum-coach-indicator-ring-light-color: var(--spectrum-gray-50);
37-
--spectrum-well-border-color:rgba(var(--spectrum-white-rgb), 0.05);
37+
--spectrum-well-border-color: rgba(var(--spectrum-white-rgb), 0.05);
3838
--spectrum-steplist-current-marker-color-key-focus: var(--spectrum-blue-700);
3939
}

components/tokens/custom-spectrum/custom-darkest-vars.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ governing permissions and limitations under the License.
3434
--spectrum-coach-indicator-ring-default-color: var(--spectrum-blue-700);
3535
--spectrum-coach-indicator-ring-dark-color: var(--spectrum-gray-900);
3636
--spectrum-coach-indicator-ring-light-color: var(--spectrum-gray-50);
37-
--spectrum-well-border-color:rgba(var(--spectrum-white-rgb), 0.05);
37+
--spectrum-well-border-color: rgba(var(--spectrum-white-rgb), 0.05);
3838
--spectrum-steplist-current-marker-color-key-focus: var(--spectrum-blue-700);
3939

4040
}

components/tokens/custom-spectrum/custom-large-vars.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ governing permissions and limitations under the License.
7474
--spectrum-coachmark-buttongroup-mobile-display: flex;
7575
--spectrum-coachmark-menu-display: none;
7676
--spectrum-coachmark-menu-mobile-display: inline-flex;
77+
7778
--spectrum-well-padding: 20px;
7879
--spectrum-well-margin-top: 5px;
7980
--spectrum-well-min-width: 300px;
80-
--spectrum-well-border-radius: 5px
81+
--spectrum-well-border-radius: 5px;
8182
}

components/tokens/custom-spectrum/custom-light-vars.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ governing permissions and limitations under the License.
1919
--spectrum-menu-item-background-color-key-focus: var(--spectrum-transparent-black-200);
2020

2121
/* Drop Zone background color rgb */
22-
--spectrum-drop-zone-background-color-rgb: var( --spectrum-blue-800-rgb); /* var(--spectrum-accent-color-800);*/
22+
--spectrum-drop-zone-background-color-rgb: var(--spectrum-blue-800-rgb); /* var(--spectrum-accent-color-800);*/
2323

2424
--spectrum-calendar-day-background-color-selected: rgba(var(--spectrum-blue-900-rgb), 0.1);
2525
--spectrum-calendar-day-background-color-hover: rgba(var(--spectrum-black-rgb), 0.06);
@@ -35,7 +35,6 @@ governing permissions and limitations under the License.
3535
--spectrum-coach-indicator-ring-default-color: var(--spectrum-blue-800);
3636
--spectrum-coach-indicator-ring-dark-color: var(--spectrum-gray-900);
3737
--spectrum-coach-indicator-ring-light-color: var(--spectrum-gray-50);
38-
--spectrum-well-border-color:var(--spectrum-black-rgb);
38+
--spectrum-well-border-color: var(--spectrum-black-rgb);
3939
--spectrum-steplist-current-marker-color-key-focus: var(--spectrum-blue-800);
40-
4140
}

components/tokens/custom-spectrum/custom-medium-vars.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ governing permissions and limitations under the License.
7777
--spectrum-well-padding: var(--spectrum-spacing-300);
7878
--spectrum-well-margin-top: var(--spectrum-spacing-75);
7979
--spectrum-well-min-width: 240px;
80-
--spectrum-well-border-radius: var(--spectrum-spacing-75)
80+
--spectrum-well-border-radius: var(--spectrum-spacing-75);
8181
}

0 commit comments

Comments
 (0)