Skip to content
Open
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
2 changes: 1 addition & 1 deletion _includes/models/modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ <h2 class="modal-h2">
<div class="btn-tooltip-grp">
{% if {{model.name}} %}
<a href="https://docs.meshery.io/project/contributing/contributing-models-quick-start">
<button class="import" style="width: 9rem;">Quick Start</button></a>
<button class="import-secondary" style="width: 9rem;">Quick Start</button></a>
{% endif %}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/single-page-model.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@

<div class="btn-tooltip-grp">
<a href="https://docs.meshery.io/project/contributing/contributing-models-quick-start">
<button class="import" style="width: 12rem;">Add New Model</button>
<button class="import-secondary" style="width: 12rem;">Add New Model</button>
</a>
</div>
</div>
Expand Down
14 changes: 11 additions & 3 deletions _sass/catalog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ p {
}

.import {
background-color: #00b39fff;
background-color: #EBC017; // PRIMARY: Saffron yellow
color: white;
border-radius: 4px;
border: none;
Expand All @@ -204,8 +204,16 @@ p {
padding: 10px;
}
.import-secondary {
background-color: inherit;
border:1px solid #00b39f;
background-color: #00b39f; // SECONDARY: Keppel green
color: white;
border-radius: 4px;
border: none;
cursor: pointer;
padding: 10px;
}
.import-tertiary {
background-color: transparent; // TERTIARY: Transparent background
border: 1px solid #00b39f;
color: var(--color-primary-qtext);
border-radius: 4px;
cursor: pointer;
Expand Down
Loading