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

architecture pictures & favicons#61

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
aikarjal merged 5 commits intorobotframework:new-visual-identityfromjonipalosaari:new-visual-identity
Mar 19, 2018
Merged
Show file tree
Hide file tree
Changes fromall 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
4 changes: 2 additions & 2 deletionssources/config/index.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -18,8 +18,8 @@ module.exports = {
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
poll:false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-

poll:1000, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
aggregateTimeout: 300,
// Use Eslint Loader?
// If true, your code will be linted during bundling and
// linting errors and warnings will be shown in the console.
Expand Down
24 changes: 17 additions & 7 deletionssources/index.html
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
<!doctype html>
<html lang="en">

<head>
<title>Robot Framework</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Generic test automation framework for acceptance testing and ATDD">
<meta name="author" content="">
<title>Robot Framework</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Generic test automation framework for acceptance testing and ATDD">
<meta name="author" content="">
<link rel="apple-touch-icon" sizes="76x76" href="/static/img/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/img/icons/favicon-16x16.png">
<link rel="manifest" href="/static/img/icons/site.webmanifest">
<link rel="mask-icon" href="/static/img/icons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="app"></div>

<body>
<div id="app"></div>
</body>

</html>
259 changes: 133 additions & 126 deletionssources/src/App.vue
View file
Open in desktop

Large diffs are not rendered by default.

Binary file removedsources/src/assets/img/architecture-big.png
View file
Open in desktop
Binary file not shown.
Binary file modifiedsources/src/assets/img/architecture.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
276 changes: 276 additions & 0 deletionssources/src/assets/img/architecture.svg
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/src/assets/img/architecture_big.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 27 additions & 5 deletionssources/src/components/FeatureBox.vue
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,18 +2,40 @@
<section>
<div class="row justify-content-between">
<div v-for="item in data" :key="item.header" style="margin-bottom:10px;" class="col-md-4 col-sm-12">
<b-card
:header="item.header"
class="text-center feature-box">
<div class="b-card-body" v-html="item.text"/>
<b-card :header="item.header" class="text-center feature-box">
<div v-if="item.text != ''" class="b-card-body" v-html="item.text"/>
<div v-if="typeof item.img != 'undefined'" class="b-card-body">

<img center v-b-modal="item.header" :src="item.img" style="cursor:pointer;" class="img-fluid"/>
<b-modal
hide-footer
hide-header
:id="item.header"
centered>
<img center fluid class="img-fluid" :src="item.img_big"/>
<p style="text-align:center;"><a @click="openTab(item.img_big)" :href="item.img_big">Open image in new tab</a></p>
</b-modal>

</div>
</b-card>


</div>

</div>
</section>
</template>

<script>
export default {
props: ["data"]
props: ["data"],
methods: {
openTab(href) {
var image = new Image();
image.src = href;
const w = window.open("");
w.document.write(image.outerHTML);
}
}
};
</script>
4 changes: 4 additions & 0 deletionssources/src/components/TabBox.vue
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,6 +4,10 @@
<b-tab v-for="(tab,index) in data" :key="index" :title="tab.title" class="p-1">
<div id="{tab.title}-standard" class="card-body row">
<div v-for="(item,index) in tab.items" :key="index" class="link col-md-4">
<b-embed v-if="typeof item.src != 'undefined'" type="iframe"
:src="item.src"
allowfullscreen
></b-embed>
<a :href="item.href" target="_blank">{{item.title}}</a>
<p v-html="item.text"/>
</div>
Expand Down
2 changes: 0 additions & 2 deletionssources/static/.gitignore
View file
Open in desktop

This file was deleted.

View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/static/img/icons/apple-icon-57x57.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/static/img/icons/apple-icon-60x60.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/static/img/icons/apple-icon-72x72.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/static/img/icons/apple-icon-76x76.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/static/img/icons/apple-icon.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletionssources/static/img/icons/browserconfig.xml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig><msapplication><tile><square70x70logosrc="/ms-icon-70x70.png"/><square150x150logosrc="/ms-icon-150x150.png"/><square310x310logosrc="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
Binary file addedsources/static/img/icons/favicon-16x16.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/static/img/icons/favicon-32x32.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedsources/static/img/icons/favicon-96x96.png
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

[8]ページ先頭

©2009-2025 Movatter.jp