-
-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
style: created custom tagify scss file and updated gulp file #10063
base: main
Are you sure you want to change the base?
Changes from 16 commits
73a497d
6a90691
aa23cad
9a0467f
78a1ff6
ddae13e
3fad730
8755404
336c50d
5d562cc
934d4f0
cbc1ae6
30e873f
752a5cf
d4cef45
ddbd4a9
2690f67
bc58995
cdb3458
4ecf12b
5628306
92741a9
afbee76
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change looks out of place |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
@import "variables"; | ||
@import "custom-tagify"; | ||
@import "variables"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
@import "settings"; | ||
@import "sveetoy/f5_settings"; | ||
@import "foundation"; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @IsaiahLevy your file has merging problems ! |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
@import "../node_modules/@yaireo/tagify/src/tagify.scss"; | ||
@import "variables"; | ||
|
||
|
||
:root { | ||
$tagify-dd-color-primary: #341100 !important; | ||
--tagify-dd-color-primary: #341100 !important; | ||
} | ||
|
||
|
||
.tagify__input::placeholder { | ||
color: $dark; | ||
} | ||
|
||
|
||
.tagify__tag:hover { | ||
background-color: #341100; | ||
} | ||
|
||
|
||
.tagify__tag .tagify__tag__removeBtn { | ||
background-color: $text-color-dark; | ||
} | ||
|
||
|
||
.tagify__tag .tagify__tag__removeBtn:hover { | ||
|
||
background-color: var(--chocolate); | ||
} | ||
|
||
.tagify__dropdown__item { | ||
background-color: white; | ||
color: black; | ||
} | ||
|
||
.tagify__dropdown__item:hover { | ||
background-color: #341100; | ||
color: white; | ||
} | ||
|
||
.tagify__dropdown__item--active { | ||
background-color: #341100; | ||
color: white; | ||
} |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -19,6 +19,7 @@ | |||
<link rel="stylesheet" href="[% static_subdomain %]/css/dist/app-[% edq(lang('text_direction')) %].css?v=[% css_timestamp %]" data-base-layout="true"> | ||||
<link rel="stylesheet" href="[% static_subdomain %]/css/dist/jqueryui/themes/base/jquery-ui.css" data-base-layout="true"> | ||||
<link rel="stylesheet" href="[% static_subdomain %]/css/dist/select2.min.css"> | ||||
<link rel="stylesheet" href="[% static_subdomain %]/css/dist/custom-tagify.css" data-base-layout="true"> | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We only really need Tagify in
cgi/product_multilingual.pl should be updated.
|
||||
<link rel="search" href="[% formatted_subdomain %]/cgi/opensearch.pl" type="application/opensearchdescription+xml" title="[% edq(lang('site_name')) %]"> | ||||
[% header %] | ||||
<style media="all"> | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.