Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT Fix lint css warnings #184

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
13 changes: 7 additions & 6 deletions css/gridfieldtest.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
table.ss-gridfield {
box-shadow: none;
box-shadow: none;
padding: 0;
margin: 20px 0 0 0;
border-collapse: separate;
margin: 20px 0 0;
border-collapse: separate;
border-bottom: 0 none;
border-left: 1px solid #929292;
border-right: 1px solid #929292;
}

.ss-gridfield thead th {
background: #424242;
padding: 5px;
Expand All @@ -29,19 +30,19 @@ table.ss-gridfield {

.ss-gridfield thead th.extra.last div{
display:inline-block;

}

.ss-gridfield thead th button {
color: #eee;
border: none;
border: 0;
background: none;
margin: 0 0 0 2px;
padding: 0;
width: auto;
text-shadow: none;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
font-family: "Arial", "Helvetica", sans-serif;
}

.ss-gridfield thead th.extra.last button {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"lock": "npm-shrinkwrap --dev",
"test": "NODE_PATH=\"./client/src\" jest",
"coverage": "NODE_PATH=\"./client/src\" jest --coverage",
"lint": "eslint client/src && stylelint css/*"
"lint": "eslint client/src && stylelint css"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
Expand Down Expand Up @@ -51,7 +51,7 @@
"url": "^0.11.0"
},
"devDependencies": {
"@silverstripe/eslint-config": "^1.2.1",
"@silverstripe/eslint-config": "^1.3.0",
"@silverstripe/webpack-config": "^2.1.0",
"babel-jest": "^20.0.3",
"jest-cli": "^19.0.2",
Expand Down
Loading