mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
Add tooltip for table column headers and align header and cell (#3909)
* Adding tooltip and lining up header and cell * moving padding to separate css class
This commit is contained in:
@@ -57,7 +57,8 @@ export default class TableComponent extends ComponentBase implements IComponent,
|
||||
id: col.value,
|
||||
field: col.value,
|
||||
width: col.width,
|
||||
cssClass: col.cssClass
|
||||
cssClass: col.cssClass,
|
||||
toolTip: col.toolTip
|
||||
};
|
||||
} else {
|
||||
return <Slick.Column<any>>{
|
||||
|
||||
@@ -6,4 +6,9 @@
|
||||
.center-align
|
||||
{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.align-with-header
|
||||
{
|
||||
padding-left:3px !important;
|
||||
}
|
||||
1
src/sql/sqlops.proposed.d.ts
vendored
1
src/sql/sqlops.proposed.d.ts
vendored
@@ -499,6 +499,7 @@ declare module 'sqlops' {
|
||||
value: string;
|
||||
width?: number;
|
||||
cssClass?: string;
|
||||
toolTip?: string;
|
||||
}
|
||||
|
||||
export interface TableComponentProperties extends ComponentProperties {
|
||||
|
||||
Reference in New Issue
Block a user