commiter work (#7244)

* fix incorrect css and removed redundant css warnings

* add gulp step to check all files

* added files file

* revert build to hygiene job

* keep css changes only
This commit is contained in:
Aditya Bist
2019-09-17 14:10:38 -07:00
committed by GitHub
parent 28d453fced
commit c6c863cd84
7 changed files with 15 additions and 70 deletions

View File

@@ -220,7 +220,7 @@ export class ExplorerRenderer implements tree.IRenderer {
templateData.icon.className = 'icon scalarvaluedfunction';
break;
case MetadataType.SProc:
templateData.icon.className = 'icon stored-procedure';
templateData.icon.className = 'icon storedprocedure';
break;
case MetadataType.Table:
templateData.icon.className = 'icon table';

View File

@@ -160,15 +160,6 @@ input#accordion:checked ~ .accordion-content,
background-image: url("new_inverse.svg");
}
.vs .action-label.icon.opennotebook {
background-image: url("open_notebook.svg");
}
.vs-dark .action-label.icon.opennotebook,
.hc-black .action-label.icon.newStepIcon {
background-image: url("open_notebook_inverse.svg");
}
jobhistory-component .hc-black .icon.edit,
jobhistory-component .vs-dark .icon.edit,
notebookhistory-component .hc-black .icon.edit,

View File

@@ -36,12 +36,3 @@
.hc-black .monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title.dirty .title-actions .close-editor-action {
background: url('close-dirty-inverse.svg') center center no-repeat;
}
.vs .monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title.dirty .title-actions .close-editor-action:hover {
background: url('close.svg') center center no-repeat;
}
.vs-dark .monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title.dirty .title-actions .close-editor-action:hover,
.hc-black .monaco-workbench > .part.editor > .content > .one-editor-silo > .container > .title.dirty .title-actions .close-editor-action:hover {
background: url('close-inverse.svg') center center no-repeat;
}