Skip to content

Commit 7a52b86

Browse files
authored
Feat(CI): add stylelint (#1071)
1 parent 3d08f03 commit 7a52b86

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.stylelintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
extends: [
3+
'../../.stylelintrc.js'
4+
],
5+
ignoreFiles: [
6+
'node_modules/**/*',
7+
'vendor/**/*'
8+
],
9+
};

public/css/fields.scss

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,29 @@
2626
* -------------------------------------------------------------------------
2727
*/
2828

29-
//config
29+
// config
3030
ul.fields_config li {
3131
cursor:pointer;
3232
float:left;
3333
width:20%;
34-
-moz-border-radius: 5px;
35-
-webkit-border-radius:5px;
3634
border-radius: 5px;
37-
margin:0 1% 10px 1%;
35+
margin:0 1% 10px;
3836
padding:5px 1px;
3937
}
38+
4039
ul.fields_config li:hover {
4140
background-color:#E8E8E8;
4241
}
42+
4343
ul.fields_config li p {
4444
padding-top: 8px;
4545
}
46+
4647
ul.fields_config li img {
4748
float: left;
4849
margin-right: 2px;
4950
}
51+
5052
div.fields_clear {
5153
clear: both;
5254
width:100%;

0 commit comments

Comments
 (0)