Skip to content

Commit

Permalink
Replaces sasslint to stylelint to conform to changes in core dashboards
Browse files Browse the repository at this point in the history
Signed-off-by: Darshit Chanpura <[email protected]>
  • Loading branch information
DarshitChanpura committed Apr 6, 2022
1 parent b037242 commit bfe2321
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 29 deletions.
File renamed without changes.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@
"build": "yarn plugin-helpers build && node build_tools/rename_zip.js",
"start": "node ../../scripts/opensearch-dashboards --dev",
"lint:es": "node ../../scripts/eslint",
"lint:sass": "node ../../scripts/sasslint",
"lint": "yarn run lint:es && yarn run lint:sass",
"lint:style": "node ../../scripts/stylelint",
"lint": "yarn run lint:es && yarn run lint:style",
"test:jest_server": "node ./test/run_jest_tests.js --config ./test/jest.config.server.js",
"test:jest_ui": "node ./test/run_jest_tests.js --config ./test/jest.config.ui.js"
},
"devDependencies": {
"@elastic/eslint-import-resolver-kibana": "link:../../packages/osd-eslint-import-resolver-opensearch-dashboards",
"@elastic/eslint-import-resolver-kibana": "link:../../packages/osd-eslint-import-resolver-opensearch-dashboards",
"typescript": "4.0.2",
"gulp-rename": "2.0.0",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/react-hooks": "^7.0.2",
"@types/hapi__wreck": "^15.0.1"
},
"dependencies": {
"@hapi/wreck": "^15.0.2",
"@hapi/wreck": "^17.1.0",
"@hapi/cryptiles": "5.0.0",
"html-entities": "1.3.1"
}
Expand Down
16 changes: 8 additions & 8 deletions public/apps/configuration/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,31 @@
* permissions and limitations under the License.
*/

.panel-header-count {
color: #687078;
font-weight: normal;
.panel-header-count {
color: #687078;
font-weight: normal;
}

.panel-header-subtext {
width: 75%;
width: 75%;
}

.text-center {
text-align: 'center'
text-align: "center";
}

.panel-restrict-width {
max-width: 75%;
max-width: 75%;
}

.external-link-inline-block {
display: inline-block;
}

.table-items {
font-size: inherit;
font-size: inherit;
}

.limit-width-input {
max-width: 400px;
max-width: 400px;
}
6 changes: 3 additions & 3 deletions public/apps/configuration/panels/audit-logging/_index.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
.described-form-group {
max-width: 1500px
max-width: 1500px;
}

.form-row {
max-width: 800px
max-width: 800px;
}

pre code {
color: #666666;
color: #666;
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

.permission-tree-container {
max-height: 200px;
overflow-Y: scroll;
overflow-y: scroll;
width: 100%;
}

Expand Down
8 changes: 4 additions & 4 deletions public/apps/customerror/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*/

.custom-error-wrapper {
margin: 10% auto;
width: 350px;
padding: 1rem;
position: relative;
margin: 10% auto;
width: 350px;
padding: 1rem;
position: relative;
}
10 changes: 5 additions & 5 deletions public/apps/login/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
*/

.login-wrapper {
margin: 10% auto;
width: 350px;
padding: 1rem;
position: relative;
margin: 10% auto;
width: 350px;
padding: 1rem;
position: relative;
}

.btn-login {
width: 100%;
width: 100%;
}
Empty file removed public/index.scss
Empty file.
3 changes: 0 additions & 3 deletions public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/

import './index.scss';

import { SecurityPlugin } from './plugin';
import { PluginInitializerContext } from '../../../src/core/public';

Expand Down

0 comments on commit bfe2321

Please sign in to comment.