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

re: 4926 Update workflow button styling #4933

Merged
merged 1 commit into from
Jun 20, 2019
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
28 changes: 24 additions & 4 deletions arches/app/media/css/arches.css
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,14 @@ div.workflow-panel {
margin-top: 15px;
}

.workflow-select-card-container-title {
font-size: 1.5em;
font-weight: 500;
padding-left: 30px;
margin-top: 5px;
margin-bottom: -15px;
}

.workflow-select-card-container {
display: flex;
flex-grow: inherit;
Expand All @@ -707,14 +715,20 @@ div.workflow-panel {
}

.workflow-select-card {
width: 180px;
height: 180px;
width: 200px;
height: 200px;
padding: 10px;
color: white;
text-align: center;
border: 1px solid black;
border: 1px solid #777;
border-radius: 1px;
margin: 10px;
opacity: 0.85;
}

.workflow-select-card:hover {
opacity: 1.0;
border: 1px solid black;
}

.workflow-select-wf-circle {
Expand All @@ -731,8 +745,14 @@ div.workflow-panel {
font-size: 40px;
}

.workflow-select-title {
font-size: 1.4em;
font-weight: 500;
}

.workflow-select-desc {
font-size: 11px;
font-size: 12px;
padding-top: 10px;
}
/* general styling for all tabs */
.tab-subheader-sm p {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
</div>
<div class="workflow-select-plugin">
<div>
<h2>Create New...</h2>
<h2 class="workflow-select-card-container-title">Create New...</h2>
</div>
<div class="workflow-select-card-container">
<!-- ko foreach: {data: workflows, as: 'workflow'} -->
<a data-bind="attr: {href: '#', title: workflow.name, target: '_blank'}" href="#"><div data-bind="style: {'background-color': workflow.bgColor}" class="workflow-select-card">
<h4 data-bind="text: workflow.name"></h4>
<h4 class="workflow-select-title" data-bind="text: workflow.name"></h4>
<div data-bind="style: {'background-color': workflow.circleColor}" class="workflow-select-wf-circle">
<span><i data-bind="attr:{class: ('fa '+workflow.icon +' workflow-select-wf-icon')}"></i></span>
</div>
Expand Down