Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit38c96f9

Browse files
authored
Merge pull requestrobotframework#61 from jonipalosaari/new-visual-identity
architecture pictures & favicons
2 parentsc9ef8dd +425cab6 commit38c96f9

File tree

38 files changed

+522
-142
lines changed

38 files changed

+522
-142
lines changed

‎sources/config/index.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ module.exports = {
1818
autoOpenBrowser:false,
1919
errorOverlay:true,
2020
notifyOnErrors:true,
21-
poll:false,// https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
22-
21+
poll:1000,// https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
22+
aggregateTimeout:300,
2323
// Use Eslint Loader?
2424
// If true, your code will be linted during bundling and
2525
// linting errors and warnings will be shown in the console.

‎sources/index.html‎

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
<!doctype html>
22
<htmllang="en">
3+
34
<head>
4-
<title>Robot Framework</title>
5-
<metacharset="utf-8">
6-
<metaname="viewport"content="width=device-width, initial-scale=1, shrink-to-fit=no">
7-
<metaname="description"content="Generic test automation framework for acceptance testing and ATDD">
8-
<metaname="author"content="">
5+
<title>Robot Framework</title>
6+
<metacharset="utf-8">
7+
<metaname="viewport"content="width=device-width, initial-scale=1, shrink-to-fit=no">
8+
<metaname="description"content="Generic test automation framework for acceptance testing and ATDD">
9+
<metaname="author"content="">
10+
<linkrel="apple-touch-icon"sizes="76x76"href="/static/img/icons/apple-touch-icon.png">
11+
<linkrel="icon"type="image/png"sizes="32x32"href="/static/img/icons/favicon-32x32.png">
12+
<linkrel="icon"type="image/png"sizes="16x16"href="/static/img/icons/favicon-16x16.png">
13+
<linkrel="manifest"href="/static/img/icons/site.webmanifest">
14+
<linkrel="mask-icon"href="/static/img/icons/safari-pinned-tab.svg"color="#5bbad5">
15+
<metaname="msapplication-TileColor"content="#da532c">
16+
<metaname="theme-color"content="#ffffff">
917
</head>
10-
<body>
11-
<divid="app"></div>
18+
19+
<body>
20+
<divid="app"></div>
1221
</body>
22+
1323
</html>

‎sources/src/App.vue‎

Lines changed: 133 additions & 126 deletions
Large diffs are not rendered by default.
-25.8 KB
Binary file not shown.
10.4 KB
Loading
Lines changed: 276 additions & 0 deletions
Loading
52.1 KB
Loading

‎sources/src/components/FeatureBox.vue‎

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,40 @@
22
<section>
33
<divclass="row justify-content-between">
44
<divv-for="item in data":key="item.header"style="margin-bottom:10px;"class="col-md-4 col-sm-12">
5-
<b-card
6-
:header="item.header"
7-
class="text-center feature-box">
8-
<divclass="b-card-body"v-html="item.text"/>
5+
<b-card:header="item.header"class="text-center feature-box">
6+
<divv-if="item.text != ''"class="b-card-body"v-html="item.text"/>
7+
<divv-if="typeof item.img != 'undefined'"class="b-card-body">
8+
9+
<imgcenterv-b-modal="item.header":src="item.img"style="cursor:pointer;"class="img-fluid"/>
10+
<b-modal
11+
hide-footer
12+
hide-header
13+
:id="item.header"
14+
centered>
15+
<imgcenterfluidclass="img-fluid":src="item.img_big"/>
16+
<pstyle="text-align:center;"><a@click="openTab(item.img_big)":href="item.img_big">Open image in new tab</a></p>
17+
</b-modal>
18+
19+
</div>
920
</b-card>
21+
22+
1023
</div>
24+
1125
</div>
1226
</section>
1327
</template>
1428

1529
<script>
1630
exportdefault {
17-
props: ["data"]
31+
props: ["data"],
32+
methods: {
33+
openTab(href) {
34+
var image=newImage();
35+
image.src= href;
36+
constw=window.open("");
37+
w.document.write(image.outerHTML);
38+
}
39+
}
1840
};
1941
</script>

‎sources/src/components/TabBox.vue‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
<b-tabv-for="(tab,index) in data":key="index":title="tab.title"class="p-1">
55
<divid="{tab.title}-standard"class="card-body row">
66
<divv-for="(item,index) in tab.items":key="index"class="link col-md-4">
7+
<b-embedv-if="typeof item.src != 'undefined'"type="iframe"
8+
:src="item.src"
9+
allowfullscreen
10+
></b-embed>
711
<a:href="item.href"target="_blank">{{item.title}}</a>
812
<pv-html="item.text"/>
913
</div>

‎sources/static/.gitignore‎

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp