Browse Source

去tooltip去标色

es6
windy 7 years ago
parent
commit
8fd7006604
  1. 10
      bi/base.css
  2. 40
      bi/base.js
  3. 10
      dist/base.css
  4. 40
      dist/base.js
  5. 10
      dist/bundle.css
  6. 40
      dist/bundle.js
  7. 40
      src/base/sql/codemirrior/sql-hint.js
  8. 10
      src/css/base/sql/sql.css
  9. 11
      src/less/base/sql/sql.less

10
bi/base.css

@ -1034,24 +1034,20 @@ body .bi-button.button-ignore.disabled.clear:active,
border: 1px solid #f4cbcb;
}
.bi-sql-editor .cm-s-default span[class*="#"] {
color: #faaa39;
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-keyword {
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-fr-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-keyword {
color: #3685f2;
}
.CodeMirror-hints .CodeMirror-hint-active {
background: #3f8ce8;
color: #ffffff;
}
.bi-collection-table-cell {
-webkit-box-sizing: border-box;
/*Safari3.2+*/

40
bi/base.js

@ -20737,25 +20737,27 @@ BI.Trigger = BI.inherit(BI.Single, {
addMatches(result, search, tables, function(w) {return w});
addMatches(result, search, defaultTable, function(w) {return w});
if (!disableKeywords)
addMatches(result, search, keywords, function(w, i) {
var isKeyword = i < keywordsCount;
return {
isKeyword: isKeyword,
text: w,
description: desc[w] || "SQL关键字",
className: isKeyword ? "sql-keyword" : "sql-fr-function",
render: function (Element, self, data) {
var label = BI.createWidget({
type: "bi.label",
element: Element,
text: data.displayText || getText(data)
});
label.setTitle(data.description, {
container: "body"
});
}
};
});
addMatches(result, search, keywords, function(w) {return w;});
// 这边是加tooltip的,现在貌似不要了
// addMatches(result, search, keywords, function(w, i) {
// var isKeyword = i < keywordsCount;
// return {
// isKeyword: isKeyword,
// text: w,
// description: desc[w] || "SQL关键字",
// className: isKeyword ? "sql-keyword" : "sql-fr-function",
// render: function (Element, self, data) {
// var label = BI.createWidget({
// type: "bi.label",
// element: Element,
// text: data.displayText || getText(data)
// });
// label.setTitle(data.description, {
// container: "body"
// });
// }
// };
// });
}
return {list: result, from: Pos(cur.line, start), to: Pos(cur.line, end)};

10
dist/base.css vendored

@ -1034,24 +1034,20 @@ body .bi-button.button-ignore.disabled.clear:active,
border: 1px solid #f4cbcb;
}
.bi-sql-editor .cm-s-default span[class*="#"] {
color: #faaa39;
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-keyword {
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-fr-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-keyword {
color: #3685f2;
}
.CodeMirror-hints .CodeMirror-hint-active {
background: #3f8ce8;
color: #ffffff;
}
.bi-collection-table-cell {
-webkit-box-sizing: border-box;
/*Safari3.2+*/

40
dist/base.js vendored

@ -20737,25 +20737,27 @@ BI.Trigger = BI.inherit(BI.Single, {
addMatches(result, search, tables, function(w) {return w});
addMatches(result, search, defaultTable, function(w) {return w});
if (!disableKeywords)
addMatches(result, search, keywords, function(w, i) {
var isKeyword = i < keywordsCount;
return {
isKeyword: isKeyword,
text: w,
description: desc[w] || "SQL关键字",
className: isKeyword ? "sql-keyword" : "sql-fr-function",
render: function (Element, self, data) {
var label = BI.createWidget({
type: "bi.label",
element: Element,
text: data.displayText || getText(data)
});
label.setTitle(data.description, {
container: "body"
});
}
};
});
addMatches(result, search, keywords, function(w) {return w;});
// 这边是加tooltip的,现在貌似不要了
// addMatches(result, search, keywords, function(w, i) {
// var isKeyword = i < keywordsCount;
// return {
// isKeyword: isKeyword,
// text: w,
// description: desc[w] || "SQL关键字",
// className: isKeyword ? "sql-keyword" : "sql-fr-function",
// render: function (Element, self, data) {
// var label = BI.createWidget({
// type: "bi.label",
// element: Element,
// text: data.displayText || getText(data)
// });
// label.setTitle(data.description, {
// container: "body"
// });
// }
// };
// });
}
return {list: result, from: Pos(cur.line, start), to: Pos(cur.line, end)};

10
dist/bundle.css vendored

@ -2629,24 +2629,20 @@ body .bi-button.button-ignore.disabled.clear:active,
border: 1px solid #f4cbcb;
}
.bi-sql-editor .cm-s-default span[class*="#"] {
color: #faaa39;
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-keyword {
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-fr-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-keyword {
color: #3685f2;
}
.CodeMirror-hints .CodeMirror-hint-active {
background: #3f8ce8;
color: #ffffff;
}
.bi-collection-table-cell {
-webkit-box-sizing: border-box;
/*Safari3.2+*/

40
dist/bundle.js vendored

@ -46549,25 +46549,27 @@ BI.Trigger = BI.inherit(BI.Single, {
addMatches(result, search, tables, function(w) {return w});
addMatches(result, search, defaultTable, function(w) {return w});
if (!disableKeywords)
addMatches(result, search, keywords, function(w, i) {
var isKeyword = i < keywordsCount;
return {
isKeyword: isKeyword,
text: w,
description: desc[w] || "SQL关键字",
className: isKeyword ? "sql-keyword" : "sql-fr-function",
render: function (Element, self, data) {
var label = BI.createWidget({
type: "bi.label",
element: Element,
text: data.displayText || getText(data)
});
label.setTitle(data.description, {
container: "body"
});
}
};
});
addMatches(result, search, keywords, function(w) {return w;});
// 这边是加tooltip的,现在貌似不要了
// addMatches(result, search, keywords, function(w, i) {
// var isKeyword = i < keywordsCount;
// return {
// isKeyword: isKeyword,
// text: w,
// description: desc[w] || "SQL关键字",
// className: isKeyword ? "sql-keyword" : "sql-fr-function",
// render: function (Element, self, data) {
// var label = BI.createWidget({
// type: "bi.label",
// element: Element,
// text: data.displayText || getText(data)
// });
// label.setTitle(data.description, {
// container: "body"
// });
// }
// };
// });
}
return {list: result, from: Pos(cur.line, start), to: Pos(cur.line, end)};

40
src/base/sql/codemirrior/sql-hint.js

@ -285,25 +285,27 @@
addMatches(result, search, tables, function(w) {return w});
addMatches(result, search, defaultTable, function(w) {return w});
if (!disableKeywords)
addMatches(result, search, keywords, function(w, i) {
var isKeyword = i < keywordsCount;
return {
isKeyword: isKeyword,
text: w,
description: desc[w] || "SQL关键字",
className: isKeyword ? "sql-keyword" : "sql-fr-function",
render: function (Element, self, data) {
var label = BI.createWidget({
type: "bi.label",
element: Element,
text: data.displayText || getText(data)
});
label.setTitle(data.description, {
container: "body"
});
}
};
});
addMatches(result, search, keywords, function(w) {return w;});
// 这边是加tooltip的,现在貌似不要了
// addMatches(result, search, keywords, function(w, i) {
// var isKeyword = i < keywordsCount;
// return {
// isKeyword: isKeyword,
// text: w,
// description: desc[w] || "SQL关键字",
// className: isKeyword ? "sql-keyword" : "sql-fr-function",
// render: function (Element, self, data) {
// var label = BI.createWidget({
// type: "bi.label",
// element: Element,
// text: data.displayText || getText(data)
// });
// label.setTitle(data.description, {
// container: "body"
// });
// }
// };
// });
}
return {list: result, from: Pos(cur.line, start), to: Pos(cur.line, end)};

10
src/css/base/sql/sql.css

@ -1,19 +1,15 @@
.bi-sql-editor .cm-s-default span[class*="#"] {
color: #faaa39;
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-keyword {
color: #3685f2;
}
.bi-sql-editor .cm-s-default .cm-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-fr-function {
color: #faaa39;
color: #3685f2;
}
.CodeMirror-hints .sql-keyword {
color: #3685f2;
}
.CodeMirror-hints .CodeMirror-hint-active {
background: #3f8ce8;
color: #ffffff;
}

11
src/less/base/sql/sql.less

@ -3,7 +3,7 @@
.bi-sql-editor{
& .cm-s-default span[class*="#"] {
color: @color-bi-text-warning;
color: @color-bi-text-highlight;
}
& .cm-s-default .cm-keyword {
@ -11,22 +11,17 @@
}
& .cm-s-default .cm-function {
color: @color-bi-text-warning;
color: @color-bi-text-highlight;
}
}
.CodeMirror-hints {
& .sql-fr-function{
color: @color-bi-text-warning;
color: @color-bi-text-highlight;
}
& .sql-keyword{
color: @color-bi-text-highlight;
}
.CodeMirror-hint-active {
background: @color-bi-background-highlight;
color: @color-bi-text;
}
}
Loading…
Cancel
Save