Skip to content

Commit dfec3c6

Browse files
authored
Merge pull request #108 from common-workflow-language/logo-fix
Remove negative margins on logo to improve fitment
2 parents 0e0448f + 4218ee4 commit dfec3c6

File tree

9 files changed

+15
-12
lines changed

9 files changed

+15
-12
lines changed

src/main/resources/static/css/main-20170517.css renamed to src/main/resources/static/css/main-20170613.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,11 @@ body {
3737

3838
#logo {
3939
height: 61px;
40-
margin-top: -20px;
41-
margin-left: -20px
40+
padding: 5px;
41+
}
42+
43+
#explore {
44+
padding-top: 20px;
4245
}
4346

4447
#githubURL {

src/main/resources/templates/fragments/error.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<meta charset="UTF-8" />
2525
<meta name="viewport" content="width=device-width, initial-scale=1" />
2626
<title>Common Workflow Language Viewer</title>
27-
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170517.css}" href="../static/css/main-20170517.css" />
27+
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170613.css}" href="../static/css/main-20170613.css" />
2828
<link rel="stylesheet" th:href="@{/bower_components/bootstrap/dist/css/bootstrap.min.css}" href="../static/bower_components/bootstrap/dist/css/bootstrap.min.css" />
2929
</head>
3030
<body>

src/main/resources/templates/fragments/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<html xmlns:th="http://www.thymeleaf.org">
2222
<head>
23-
<link rel="stylesheet" type="text/css" href="../../static/css/main-20170517.css" />
23+
<link rel="stylesheet" type="text/css" href="../../static/css/main-20170613.css" />
2424
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
2525
</head>
2626
<body>

src/main/resources/templates/fragments/header.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@
2020

2121
<html xmlns:th="http://www.thymeleaf.org">
2222
<head>
23-
<link rel="stylesheet" type="text/css" href="../../static/css/main-20170517.css" />
23+
<link rel="stylesheet" type="text/css" href="../../static/css/main-20170613.css" />
2424
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
2525
</head>
2626
<body>
2727
<nav th:fragment="navbar" class="navbar navbar-default navbar-fixed-top">
2828
<div class="container">
2929
<div class="navbar-header">
30-
<a class="navbar-brand" href="/">
30+
<a href="/" class="navbar-left">
3131
<img id="logo" src="/img/CWL-Logo-nofonts.svg"></img>
3232
</a>
3333
<a href="/workflows" class="button navbar-toggle">Explore</a>
3434
</div>
3535
<div class="collapse navbar-collapse">
3636
<ul class="nav navbar-nav navbar-right">
37-
<li><a href="/workflows">Explore</a></li>
37+
<li><a id="explore" href="/workflows">Explore</a></li>
3838
</ul>
3939
</div>
4040
</div>

src/main/resources/templates/fragments/pagination.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<html lang="en" xmlns:th="http://www.thymeleaf.org">
2222
<head>
23-
<link rel="stylesheet" type="text/css" href="../../static/css/main-20170517.css" />
23+
<link rel="stylesheet" type="text/css" href="../../static/css/main-20170613.css" />
2424
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
2525
</head>
2626
<body>

src/main/resources/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<meta charset="UTF-8" />
2424
<meta name="viewport" content="width=device-width, initial-scale=1" />
2525
<title>Common Workflow Language Viewer</title>
26-
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170517.css}" href="../static/css/main-20170517.css" />
26+
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170613.css}" href="../static/css/main-20170613.css" />
2727
<link rel="stylesheet" th:href="@{/bower_components/bootstrap/dist/css/bootstrap.min.css}" href="../static/bower_components/bootstrap/dist/css/bootstrap.min.css" />
2828
</head>
2929
<body>

src/main/resources/templates/selectworkflow.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<meta charset="UTF-8" />
2424
<meta name="viewport" content="width=device-width, initial-scale=1" />
2525
<title>Common Workflow Language Viewer</title>
26-
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170517.css}" href="../static/css/main-20170517.css" />
26+
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170613.css}" href="../static/css/main-20170613.css" />
2727
<link rel="stylesheet" th:href="@{/bower_components/bootstrap/dist/css/bootstrap.min.css}" href="../static/bower_components/bootstrap/dist/css/bootstrap.min.css" />
2828
</head>
2929
<body>

src/main/resources/templates/workflow.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<meta name="twitter:image" th:content="${appURL + '/workflows/' + workflow.id + '/graph/png'}" />
3030
<title>Common Workflow Language Viewer</title>
3131
<link rel="stylesheet" th:href="@{/bower_components/bootstrap/dist/css/bootstrap.min.css}" href="../static/bower_components/bootstrap/dist/css/bootstrap.min.css" />
32-
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170517.css}" href="../static/css/main-20170517.css" />
32+
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170613.css}" href="../static/css/main-20170613.css" />
3333
</head>
3434
<body>
3535

src/main/resources/templates/workflows.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<meta charset="UTF-8" />
2424
<meta name="viewport" content="width=device-width, initial-scale=1" />
2525
<title>Common Workflow Language Viewer</title>
26-
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170517.css}" href="../static/css/main-20170517.css" />
26+
<link rel="stylesheet" type="text/css" th:href="@{/css/main-20170613.css}" href="../static/css/main-20170613.css" />
2727
<link rel="stylesheet" th:href="@{/bower_components/bootstrap/dist/css/bootstrap.min.css}" href="../static/bower_components/bootstrap/dist/css/bootstrap.min.css" />
2828
</head>
2929
<body>

0 commit comments

Comments
 (0)