Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/container/_container.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
[dir="rtl"] .cmp-adaptiveform-container__hamburger-menu-button--prev {
transform: rotate(180deg);
}

[dir="rtl"] .cmp-adaptiveform-container__hamburger-menu-button--next {
transform: rotate(180deg);
}
Expand Down
9 changes: 5 additions & 4 deletions src/components/datepicker/_datepicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
/* [dir="rtl"] ancestor-attribute selectors are not supported by the AEM Style System
(theme editor) — this is an RTL implementation detail shipped here directly. */
[dir="rtl"] .datepicker-calendar-icon {
left: 30px;
right: unset;
inset-inline-start: 30px;
inset-inline-end: unset;
}

[dir="rtl"] .cmp-adaptiveform-datepicker__calendar-icon {
left: 30px;
right: unset;
inset-inline-start: 30px;
inset-inline-end: unset;
}
2 changes: 1 addition & 1 deletion src/components/scribble/_scribble.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
#keyboard_Sign_Box::placeholder {
font: 1rem sans-serif, Georgia;
vertical-align: middle;
}
}
1 change: 0 additions & 1 deletion src/site/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,3 @@ html, body {
}
}
}

1 change: 0 additions & 1 deletion src/site/_fonts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,3 @@
@include fontface(titleFont, "SourceSerifPro/SourceSerifPro-Regular", normal);
@include fontface(titleFont, "SourceSerifPro/SourceSerifPro-SemiBold", bold);
@include fontface(titleFont, "SourceSerifPro/SourceSerifPro-SemiBoldItalic", bold, italic);

1 change: 0 additions & 1 deletion src/site/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,3 @@
display: none;
}
}

1 change: 0 additions & 1 deletion src/site/_mixin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@
border-radius: $border-radius;
flex-shrink: 0;
}

1 change: 0 additions & 1 deletion src/site/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,3 @@ $radio-checkbox-gap: 20px;
//== Grid

$max_col: 12;

16 changes: 8 additions & 8 deletions src/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@
*/

//== Variables
@import 'site/variables';
@import "site/variables";

//== fonts
// @import 'site/fonts';
// @import "site/fonts";

//== Mixins
@import 'site/mixin';
@import "site/mixin";

//== base
@import 'site/_grid.scss';
@import 'site/_base';
@import "site/grid";
@import "site/base";

//== Core component selectors that cannot be expressed via the theme editor's
//== AEM Style System (media queries, unprefixed/global selectors, ID selectors,
//== ancestor/descendant attribute selectors, anonymous-element hover) — everything
//== else is authored through the theme editor instead.
@import './components/container/_container.scss';
@import './components/datepicker/_datepicker.scss';
@import './components/scribble/_scribble.scss';
@import "./components/container/container";
@import "./components/datepicker/datepicker";
@import "./components/scribble/scribble";
Loading