Skip to content

Commit 70a81ea

Browse files
committed
stylelint auto fixes
1 parent 843e572 commit 70a81ea

10 files changed

Lines changed: 17 additions & 15 deletions

File tree

src/cmem/markdown/markdown.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
a[href=""]:not(#{$eccgui-selector-text-spot-highlight}) {
5656
font-size: $eccgui-size-typo-caption;
5757
line-height: $eccgui-size-typo-caption-lineheight;
58-
text-decoration: none;
5958
vertical-align: super;
59+
text-decoration: none;
6060

6161
&::before {
6262
content: "[";

src/components/Breadcrumb/breadcrumb.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ $eccgui-color-breadcrumb-link: $eccgui-color-accent !default;
1919
width: $eccgui-size-block-whitespace;
2020
height: auto;
2121
margin: 0;
22-
text-align: center;
2322
vertical-align: middle;
23+
text-align: center;
2424
content: ">";
2525
background: none;
2626
}
@@ -61,8 +61,8 @@ $eccgui-color-breadcrumb-link: $eccgui-color-accent !default;
6161
.#{$eccgui}-breadcrumb__item {
6262
display: inline-block;
6363
overflow: hidden;
64-
font-size: inherit;
6564
text-overflow: ellipsis;
65+
font-size: inherit;
6666

6767
a {
6868
@extend .#{$eccgui}-breadcrumb__item;

src/components/Form/form.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ form {
7171

7272
.#{$eccgui}-fieldset {
7373
legend {
74-
display: block;
7574
float: left;
75+
display: block;
7676
width: 100%;
7777
color: $eccgui-color-applicationheader-text;
7878
}
@@ -133,9 +133,9 @@ form {
133133
.#{$eccgui}-fieldset__fielditems {
134134
&:not(:first-child) {
135135
&::before {
136+
clear: both;
136137
display: block;
137138
height: $eccgui-size-block-whitespace;
138-
clear: both;
139139
content: " ";
140140
}
141141
}

src/components/Pagination/pagination.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ $eccgui-size-pagination-height-large: $pt-button-height-large !default;
1515

1616
.#{$prefix}--form-item,
1717
.#{$prefix}--select-input {
18-
font-size: 100%;
1918
text-overflow: clip;
19+
font-size: 100%;
2020
}
2121
}
2222

src/components/Tabs/tabs.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ $tab-indicator-width: 3px !default;
3939
max-width: 15rem;
4040
margin-bottom: $tab-indicator-width;
4141
color: inherit;
42-
border-radius: 0;
4342
outline: none;
43+
border-radius: 0;
4444

4545
.#{$ns}-button-text {
4646
overflow-x: hidden;
4747
text-overflow: ellipsis;
4848
white-space: nowrap;
4949

50-
//min-width: 6em;
50+
// min-width: 6em;
5151
}
5252

5353
&::before,

src/components/Toolbar/toolbar.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
.#{$eccgui}-toolbar {
22
display: flex;
33
flex-flow: row wrap;
4-
align-content: center;
4+
place-content: center flex-start;
55
align-items: center;
6-
justify-content: flex-start;
76
}
87

98
.#{$eccgui}-toolbar--vertical {

src/components/Typography/_reset.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ button {
2828

2929
svg {
3030
padding: 0;
31+
3132
// forgotten in reset import but necessary to fix problems when used together with MDL resets
3233
margin: 0;
3334
font: inherit;

src/extensions/react-flow/_react-flow_v12.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
*/
77

88
.react-flow {
9-
direction: ltr;
109
z-index: 0;
10+
direction: ltr;
1111
}
1212

1313
.react-flow__pane {

src/extensions/react-flow/handles/_handles.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ div.react-flow__handle {
6262
inset: 0;
6363
display: none;
6464
cursor: pointer;
65-
content: " ";
66-
border-radius: 100%;
6765
outline: dotted $eccgui-size-flow-handle-border currentcolor;
6866
outline-offset: $eccgui-size-flow-handle * 0.75 + $eccgui-size-flow-handle-border * 0.5;
67+
content: " ";
68+
border-radius: 100%;
6969

7070
.react-flow__node:hover & {
7171
display: block;
@@ -207,9 +207,9 @@ div.react-flow__handle-bottom {
207207
.#{$eccgui}-graphviz__node--hidehandles {
208208
& ~ .react-flow__handle:not(.connectable) {
209209
z-index: -1;
210+
visibility: hidden;
210211
width: 1px;
211212
height: 1px;
212-
visibility: hidden;
213213
border: none;
214214

215215
&.react-flow__handle-top {

src/includes/carbon-components/_requisits.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88
$use-flexbox-grid: $use-flexbox-grid
99
);
1010
@use "~@carbon/react/scss/utilities/_visually-hidden";
11-
// we replicate the function here because the distinct import is not ossible via @carbon/react
11+
12+
// we replicate the function here because the distinct import is not possible via @carbon/react
1213
// @import "~@carbon/styles/scss/components/ui-shell/functions";
1314
@function mini-units($count) {
1415
@return 0.5rem * $count;
1516
}
17+
1618
@import "~@carbon/react/scss/feature-flags";
1719
@import "~@carbon/react/scss/colors";
1820
@import "~@carbon/react/scss/theme";

0 commit comments

Comments
 (0)