-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add new input cookie_domain, fix styles for Custom component #15
Changes from 10 commits
23be74b
c90237c
d8964cf
62cbfa9
7aa1aed
a38b046
44a337b
79ec085
8ad121f
8fb296b
b5ae33a
6e6b792
4100ab2
fde6be9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ | |
|
||
//CredentialCustomDataContainer | ||
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. @Aringoaway Btw. I believe that SCSS styling for CustomDataContainer should be in separate customdata.scss file, since credentials.scss should consist only styles for credentials components, whereas CustomDataContainer is a container, which can be used also outside of credentials. I know that it is some residual from the past, which was forgotten here, but I still think we should do it right. I hope you dont mind to refactor also this bit within this PR :) Thank you |
||
.card-body-scroll-sm { | ||
max-height: 15vh; | ||
min-height: 15vh !important; | ||
max-height: 200px; | ||
min-height: 200px !important; | ||
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. @Aringoaway Cant be |
||
overflow-y: auto; | ||
} | ||
|
||
|
@@ -73,7 +73,7 @@ | |
grid-template-areas: | ||
"top" | ||
"bottom"; | ||
grid-template-columns: "1fr"; | ||
grid-template-rows: 2fr 1fr; | ||
} | ||
|
||
.info-detail-area { | ||
|
@@ -83,7 +83,7 @@ | |
grid-template-areas: | ||
"i" | ||
"q"; | ||
grid-template-columns: "1fr"; | ||
grid-template-rows: 1fr 1fr; | ||
} | ||
} | ||
|
||
|
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.
@Aringoaway Out of curiosity, why do you need
isDirty
here?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.
I need it, that to see if there have been any changes in the inputs. If no changes have been made, the Save button will be disabled