Skip to content
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

Default template icon #405

Merged
merged 8 commits into from
Jul 11, 2024
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

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions cyclops-ui/src/components/pages/EditModule/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.ant-col.ant-form-item-label {
padding: 0 !important;
}

label.ant-form-item-required:before {
bottom: 1em !important;
position: relative !important;
}

code {
color: #000080;
}

.ant-collapse-content-box {
padding-top: 12px;
border: 1px solid #d3d3d3;
border-top: none;
border-left: 3px solid #faca93;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
background-color: #ffffff;
}

.custom {
.ant-collapse-content-box {
padding: 0;
}
}
2 changes: 1 addition & 1 deletion cyclops-ui/src/components/pages/ModuleDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ import { gvkString } from "../../utils/k8s/gvk";
import { mapResponseError } from "../../utils/api/errors";
import Secret from "../k8s-resources/Secret";
import { CheckboxChangeEvent } from "antd/es/checkbox";

const languages = [
"javascript",
"java",
Expand Down Expand Up @@ -907,7 +908,6 @@ const ModuleDetails = () => {
</Checkbox>
<Divider style={{ marginTop: "12px", marginBottom: "12px" }} />
</div>

<ReactAce
style={{ width: "100%" }}
mode={"sass"}
Expand Down
Loading
Loading