Skip to content

Commit 5778408

Browse files
frenautvhantleblanc
authored andcommitted
feat(cloud-styles): init module
1 parent 93c9d48 commit 5778408

File tree

203 files changed

+8117
-3122
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+8117
-3122
lines changed

packages/manager/apps/vrack/README.md

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

packages/manager/apps/vrack/index.html

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

packages/manager/apps/vrack/index.js

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

packages/manager/apps/vrack/package.json

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

packages/manager/apps/vrack/webpack.config.js

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

packages/manager/modules/vrack/LICENSE renamed to packages/manager/modules/cloud-styles/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2013-2018, OVH SAS
3+
Copyright (c) 2013-present, OVH SAS
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "@ovh-ux/manager-cloud-styles",
3+
"version": "0.0.0",
4+
"license": "BSD-3-Clause",
5+
"main": "./dist/cjs/index.js",
6+
"module": "./dist/esm/index.js",
7+
"browser": "./dist/umd/cloud-styles.js",
8+
"scripts": {
9+
"build": "rollup -c --environment BUILD:production",
10+
"dev": "rollup -c --environment BUILD:development",
11+
"dev:watch": "yarn run dev --watch",
12+
"prepare": "yarn run build",
13+
"start": "lerna exec --stream --scope='@ovh-ux/manager-cloud-styles' --include-filtered-dependencies -- yarn run build",
14+
"start:dev": "lerna exec --stream --scope='@ovh-ux/manager-cloud-styles' --include-filtered-dependencies -- yarn run dev",
15+
"start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/manager-cloud-styles' --include-filtered-dependencies -- yarn run dev:watch"
16+
},
17+
"devDependencies": {
18+
"@ovh-ux/component-rollup-config": "^5.0.0-beta.9",
19+
"bootstrap": "~3.3.7",
20+
"font-awesome": "^4.0.0",
21+
"ovh-common-style": "^3.2.2",
22+
"ovh-ui-kit": "~2.24.0"
23+
}
24+
}
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import rollupConfig from '@ovh-ux/component-rollup-config';
21
import path from 'path';
2+
import rollupConfig from '@ovh-ux/component-rollup-config';
33

44
const config = rollupConfig({
55
input: 'src/index.js',
@@ -16,15 +16,7 @@ const outputs = [config.es()];
1616

1717
if (process.env.BUILD === 'production') {
1818
outputs.push(config.cjs());
19-
outputs.push(
20-
config.umd({
21-
output: {
22-
globals: {
23-
angular: 'angular',
24-
},
25-
},
26-
}),
27-
);
19+
outputs.push(config.umd());
2820
}
2921

3022
export default outputs;
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
.cda-modal {
2+
header {
3+
.cancel-button {
4+
position: absolute;
5+
top: 20px;
6+
right: 20px;
7+
}
8+
}
9+
10+
.cda-form {
11+
.cda-input-label {
12+
font-weight: bold;
13+
}
14+
}
15+
}
16+
17+
.cda-table {
18+
.cda-table-col-action {
19+
width: 1%;
20+
}
21+
}
22+
23+
.cda-dl {
24+
dd {
25+
margin-bottom: 10px;
26+
}
27+
}
28+
29+
.cda-status-ok {
30+
color: #64afa0;
31+
}
32+
33+
@media (max-width: @screen-xs-max) {
34+
.cda-table .dropdown-menu-right {
35+
left: 0;
36+
}
37+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.cda-detail-component {
2+
.cda-monitor {
3+
width: 125px;
4+
}
5+
}

0 commit comments

Comments
 (0)