Skip to content

Commit 560cb7a

Browse files
committed
MAGETWO-33669: Contribution of Sprint 23 Work to Mainline
- applying patch from UI team
1 parent e720329 commit 560cb7a

File tree

6 files changed

+60
-44
lines changed

6 files changed

+60
-44
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ module.exports = function (grunt) {
3535
tmpSource: 'var/view_preprocessed/source/',
3636
tmp: 'var',
3737
css: {
38-
setup: 'setup/pub/magento/setup/css'
38+
setup: 'setup/pub/styles'
3939
},
4040
less: {
41-
setup: 'setup/module/Magento/Setup/styles'
41+
setup: 'setup/view/styles'
4242
},
4343
uglify: {
4444
legacy: 'lib/web/legacy-build.min.js'

setup/pub/styles/setup.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup/view/layout/layout.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta name="viewport" content="width=device-width, initial-scale=1">
1616
<title>Magento Setup Tool</title>
1717
<?php echo $this->headLink()
18-
->appendStylesheet($this->basePath() . '/pub/magento/setup/css/setup.css');
18+
->appendStylesheet($this->basePath() . '/pub/styles/setup.css');
1919
?>
2020
<?php echo $this->headScript()
2121
->appendFile('pub/angular/angular.min.js')

setup/view/magento/setup/customize-your-store.phtml

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

2121
<h2 class="page-title">{{$state.current.header}}</h2>
2222

23-
<form name="customizeStore" role="form">
23+
<form class="customize-your-store" name="customizeStore" role="form">
2424

2525
<div class="row form-row">
2626
<div class="col-m-3">

setup/view/styles/lib/_variables.less

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

66
// Paths
77

8-
@path-to-pub: '../../../../pub/';
8+
@path-to-pub: '../../pub/';
99

1010
//
1111
// Colors

setup/view/styles/pages/_customize-your-store.less

Lines changed: 50 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -3,47 +3,58 @@
33
// * See COPYING.txt for license details.
44
// */
55

6-
.multiSelect {
7-
.selected {
8-
width: 430px;
9-
background-color: #d9edf7;
10-
padding: 5px;
11-
}
12-
.notSelected{
13-
width: 430px;
14-
padding: 5px;
15-
}
16-
.form-label {
17-
font-size: 1.8rem;
18-
}
19-
}
6+
.customize-your-store {
207

21-
.form-legend-expand {
22-
margin: 1px;
23-
}
8+
.multiSelect {
9+
.selected {
10+
width: 430px;
11+
background-color: #d9edf7;
12+
padding: 5px;
13+
}
14+
.notSelected {
15+
width: 430px;
16+
padding: 5px;
17+
}
18+
.form-label {
19+
font-size: 1.8rem;
20+
}
21+
}
22+
width: 430px;
23+
padding: 5px;
24+
}
25+
.form-label {
26+
font-size: 1.8rem;
27+
}
28+
}
2429

25-
.alert-text {
26-
margin: 5px;
27-
display: block;
28-
}
30+
.form-legend-expand {
31+
margin: 1px;
32+
}
2933

30-
.alert-info {
31-
.form-legend-expand {
32-
margin: 5px;
33-
font-size: 1.4rem;
34-
display: inline;
35-
}
36-
}
34+
.alert-text {
35+
margin: 5px;
36+
display: block;
37+
}
38+
39+
.alert-info {
40+
.form-legend-expand {
41+
margin: 5px;
42+
font-size: 1.4rem;
43+
display: inline;
44+
}
45+
}
46+
47+
.icon-failed-round {
48+
margin: 2px;
49+
position: relative;
50+
}
51+
.multiSelect {
52+
padding-left: 10px;
53+
border-radius: 4px;
54+
border: 1px solid #ccc;
55+
overflow-y: scroll;
56+
width: 450px;
57+
height: 300px;
58+
}
3759

38-
.icon-failed-round{
39-
margin: 2px;
40-
position: relative;
41-
}
42-
.multiSelect {
43-
padding-left: 10px;
44-
border-radius: 4px;
45-
border: 1px solid #ccc;
46-
overflow-y: scroll;
47-
width: 450px;
48-
height: 300px;
4960
}

0 commit comments

Comments
 (0)